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

    Solved every {var} ticks

    Yeah I copied the wrong variable, anyways a way you could do this, is: every tick: loop all players: if {autoclick::%loop-player's uuid%} is true: if {ticks.%loop-player's uuid%} = {autoclickperticks::%loop-player's uuid%}: set {ticks.%loop-player's...
  2. xdh

    Solved every {var} ticks

    I think he wanted to create an auto clicker, so the variable "{autoclick::%player's uuid%}" is set to a number of ticks via a command, but yeah this won't work
  3. xdh

    I want to make a command to give a player a modded item.

    It shouldn't skip Console automatically adds a "/" so no need to add one, unless it's a double slash command, generally you can't actually change it’s name unless the item has a unique name which I'm guess it does here: command /chigama <player>: permission:upperweaponds.permissions...
  4. xdh

    Skript cant check spawner break event

    OH LMAO, my bad but it worked for me when I tried it :emoji_disappointed_relieved: Edit: Yeah prob wild stacker is causing it although idk
  5. xdh

    Skript cant check spawner break event

    This should work on break of spawner: send "ok"
  6. xdh

    Solved attempting to create items with custom abilities

    How to add a code block: Anyways you don't have to use commands for abilities, you can use functions unless you want it to be a command. you don't have to use "if {_waited} > 16 seconds:" literally pointless all you have to do is add a "stop" after the cooldown message so, and then set...
  7. xdh

    Solved Issue with creating cooldown of sorts?

    There are many tutorial's on cooldowns here: on right click holding a stick: make player execute command "/pogo" command /pogo: trigger: set {_waited.%player's uuid%} to difference between {pogo.lastused.%player's uuid%} and now if {_waited.%player's uuid%} is less...
  8. xdh

    Issues with a Pickaxe Upgrade Skipt

    Also a little thing i forgot on inventory click: if event-inventory = (metadata tag "Gui" of player): cancel event if index of event-slot is 0: #slot number add a 'cancel event' like where i did, so players can't steal the item
  9. xdh

    Issues with a Pickaxe Upgrade Skipt

    I looked in the docs of skrayfall, can't find the format in docs, so I'm just going to suggest using another addon, or you could use vanilla skript, although i don't know if it would work with your version here is what I use: function openGui(p: player): set metadata tag "Gui" of {_p} to...
  10. xdh

    Issues with a Pickaxe Upgrade Skipt

    I don't usually work with tuske https://docs.skunity.com/syntax/search/id:3411 I don't see a "run:" do you get any errors?
  11. xdh

    Issues with a Pickaxe Upgrade Skipt

    Which addon are you using for the gui?
  12. xdh

    Solved Help with skript

    You could use "on damage" like this: on damage: if name of attacker's held item is "Jasper's Blade": apply poison 1 to the victim for 3 seconds
  13. xdh

    Solved Teleport to other dimension wont work

    does the world "the_nether" exist?
  14. xdh

    Solved loop players in radius excluding the player that initiated the script?

    command /test: trigger: loop all players in radius 5 around player: if loop-player's name isn't "%player%": spawn zombie at loop-player's location set displayname of the last spawned zombie to "&cTesting" there might be better ways of doing...
  15. xdh

    Sumo skript not working

    No problem.
  16. xdh

    Sumo skript not working

    Try this
  17. xdh

    Sumo skript not working

    Yeah he could just use random element, but looping all players wont work unless he out the queued players in a variable, Anyways both ways should work
  18. xdh

    Sumo skript not working

    I'd agree with you but he is trying to teleport someone who joined a queue hints "{sumo::*}"
  19. xdh

    Sumo skript not working

    Try this (didn't test it) command /event join [<text>]: trigger: if arg-1 is "sumo": if {sumo.start} is true: teleport player to {sumospec} send "&a&lJoined the Sumo event!" set {sumo::%player%} to true add...
  20. xdh

    Solved Show Player's Level In Chat

    Elaborate? How do you get levels etc? is it from a plugin?