Skript plugin

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Rinaldi00

Member
Feb 16, 2017
11
0
0
23
Hi, who give me code for:
On break stone give cobblestone to inventory and clear cobblestone dropped with break block and remove 1 durability to player's tool in hand
 
Really, you just typed the code, just as a sentence.

I'm not trying to sound rude but, this is some really simple stuff, just 5 lines.

If you really are looking into using Skript, try learning it first, Skript is about scripting, not asking everyone to do the code for you.
 
Give me code pls, i need it
[doublepost=1487268443,1487266696][/doublepost]But I know half code, this is:
on break of snow:
cancel event
delete event-block
player's tool is stone shovel or iron shovel or diamond shovel
give player 4 snowball

it all works, but I need a code for: on break of snow remove an usures pickaxe.
 
EDIT: Those are tabs. Not spaces.

Code:
on break:
    if event-block is stone:
        cancel event
        set block to air
        give 1 cobblestone to player
        stop

Code:
on break:
    if event-block is stone:
        cancel event
        set block to air
        drop 1 cobblestone at event-block
        stop
 
Status
Not open for further replies.