Search results

  • 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 community!

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

  1. HiqqhFive

    Function won't work

    Thats correct. Please mark the topic as solved if it works.
  2. HiqqhFive

    Function won't work

    Like i said.
  3. HiqqhFive

    Function won't work

    Then you have to try it without functions.
  4. HiqqhFive

    how can i detect item and if player has that detected item cancel evet

    I think you mean this: on pickup: event-item is stone block: cancel event I hope this helps you.
  5. HiqqhFive

    Function won't work

    I didn't added your command at the code. You have to add it yourself. I added it here: function achie(p: player): open chest with 1 row named "&dAchievements" to {_p} wait a tick loop 54 times: add 1 to {_slot} set slot ({_slot}-1) of {_p}'s current inventory to black stained...
  6. HiqqhFive

    cancel event wont work

    right click on player: name of entity = "deneme" "%name of player's tool%" is "&f1": remove event-item from player's inventory cancel event set {_chance} to a random integer between 1 and 100 if {_chance} is between 1 and 50: give player skull of "MHF_ArrowDown" parsed...
  7. HiqqhFive

    cancel event wont work

    you did it already ;)
  8. HiqqhFive

    cancel event wont work

    Remove it in the code
  9. HiqqhFive

    cancel event wont work

    any errors?
  10. HiqqhFive

    Script [Deleted] Report System

    HiqqhFive updated Report System with a new update entry: Update #2 Read the rest of this update entry...
  11. HiqqhFive

    cancel event wont work

    Hey, try this code: right click on player: player's tool is not air: name of entity = "deneme" set {_tool} to player's tool {_tool} is skull: cancel event message "&cYou can't use that weapon" to player chance of 1%: message "1" to player chance of...
  12. HiqqhFive

    Function won't work

    Hey, the functions have to stay in your code at the top, otherwise they will not be recognized by the script. If this explains your issue, please mark the topic as solved. function achie(p: player): open chest with 1 row named "&dAchievements" to {_p} wait a tick loop 54 times: add...
  13. HiqqhFive

    Teleporting to other world

    On my Server it works without errors.
  14. HiqqhFive

    Teleporting to other world

    Hey, try this: command /parkourteleport <player> <text> <integer>: permission: rank.admin permission message: &8[&f&lServer&8] &7No Permissions! trigger: if arg-3 is 1: send "&8[&f&lServer&8] Complete the previous ones first!" to arg-1 if arg-3 is 2...
  15. HiqqhFive

    Solved Can't read if variable is set?

    Sorry, my mistake. I have forgotten to remove the underscore.
  16. HiqqhFive

    Solved Checking block below player

    As an an example: command /@101 <player>: trigger: set block north above the player to glass set block east above the player to glass set block south above the player to glass set block west above the player to glass set block 2 meters above the...
  17. HiqqhFive

    Solved Checking block below player

    This code: command /test: trigger: block under player is air: set block under the player to glass else: set block under the player to air
  18. HiqqhFive

    Solved Balance Booster Help

    You're welcome.
  19. HiqqhFive

    Solved Checking block below player

    Look at this: I replaced "below" with "UNDER"
  20. HiqqhFive

    Solved Checking block below player

    Yes of course. command /@101 <player>: trigger: set block north above the player to glass set block east above the player to glass set block south above the player to glass set block west above the player to glass set block 2 meters above the player...