Solved Function

  • 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.

Digszin

Member
Jan 26, 2017
28
0
1
32
code_language.skript:
on break of any ore:
    if player has permission "vein.miner":
        if player is sneaking:
            if player's tool is pickaxe:
                veinminer(event-location , player)
code_language.skript:
function veinminer(loc: location, p: player):

error
gdf6d7
 
put it before your break event. when skripts are reloaded with /sk reload namehere, it goes through the code top to bottom. So your function needs to be first.
Also your function currently doesnt do anything, you need more lines to instruct it on what to do with the info.
Theres a great tutorial on functions in the Tutorials section
 
Status
Not open for further replies.