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 comminuty!

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

  1. V

    Functions are not working...

    Error: "test(P: player) is not a text" code: function depositAll(P: player): set {bank::%{_P}%} to {bank::%{_P}%} + {_P}'s balance set {_P}'s balance to 0 function depositHalf(P: player): set {_b} to {_P}'s balance / 2 set {bank::%{_P}%} to {bank::%{_P}%} + {_b} set {_P}'s...
  2. V

    armor update

    Hey, I doing a rpg server so I did a stats for the armor that updates every tick but if I drop the armor from my armor slots it takes like 10 seconds to upadate... anything that I missing? every 1 tick: loop all players: #defence if loop-player's helmet is not air...
  3. V

    How to set block to end portal frame with eye

    Hey so I trying to make skript that on click on end portal frame its set to end portal frame with eye and the only option that woked is with set block but this is working just when I make the player execute... when I make the console execute its not working code: make console execute "make...
  4. V

    Solved Parse numbers to message string

    like this? set {_test} to 1 set {_test2} to "%{_test}%"
  5. V

    armor unequip bug

    Ok so when I dropping the item from my armor the armor unequip is not called so all the stats on the player are getting doubled here is the code of armor equip/unequip on armor equip: #set {_dl} to line 1 of lore of event-item set {lore::*} to event-item's lore split at "||" set...
  6. V

    Solved Need help with adding eye to end portal frame

    Hey, I trying to make a skript that when you right click with a item on a end portal frame its putting the eye inside of it... here is my code: if event-block is ender portal frame: if name of event-player's tool is "&5Summoning Eye": set block at location of event-block to...