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

    How to make a simple flying boat skript?

    I might be able to make this for you, but I'm quite busy at the moment. I'll return to you asap :)
  2. Jakkeren

    Loop sideways

    Jesus christ dude, you really need to stop leaving useless messages on peoples posts, this is not helping at all! ------ I'm having a hard time understanding your question, but I'm guessing you're referring to some type of block loop. I can only recommend this page...
  3. Jakkeren

    TPA system

    Well it's actually really easy to understand if you know what json messages are. A link useful for everyone new to skript: https://forums.skunity.com/threads/json-text-guide-for-newbies.8079/ This is probably what you're looking for: send "Someone wants to teleport to you...
  4. Jakkeren

    Reset first join

    There's not any code involved ... he's simply trying to figure out how to reset the first join-playerdata...
  5. Jakkeren

    Lobby Parkour

    Lobby Parkour This skript will enable you to make an extremely simple, but effective parkour for your lobby, saving the player's highscore in a yaml file and blacklisting certain blocks that the player shouldn't be able to walk on while the parkour is active. When stepping on a stone pressure...
  6. Jakkeren

    Script Lobby Parkour 2021-02-12

    Lobby Parkour This skript will enable you to make an extremely simple, but effective parkour for your lobby, saving the player's highscore in a yaml file and blacklisting certain blocks that the player shouldn't be able to walk on while the parkour is active. When stepping on a stone pressure...
  7. Jakkeren

    Action bar doesn't work

    Well I can assure you that I'm using the 'send action bar' successfully without the use of Tuske. I can only recommend that you try and remove it, unless you're using it for other stuff :)
  8. Jakkeren

    Solved Clans Skript

    Well if you had asked that, there'd been a better chance of people actually helping you. In your post however, you made like 4 different requests. The thing is, that for us, it's really hard to help you if you don't narrow your requirements down, and if you want someone to actually make your...
  9. Jakkeren

    Cooldown for loops

    Well you could always do it like this: loop 5 times: //do something wait x seconds
  10. Jakkeren

    Resetting variables?

    every 1 second: loop all players: if loop-player's y coordinate is below 1: set loop-player's health to -1 Nonononoonno .... nononononoono... ^this line is why everyone remotely skilled in java things skript is garbage. This will kill your servers TPS in no time. I...
  11. Jakkeren

    Reset first join

    I'm pretty sure the first join values are stored in the essentials userdata. This has at least worked for me. Otherwise I'd just make a variable in the users yaml file and check if it has been set.
  12. Jakkeren

    Solved Clans Skript

    Edit your post, and mark it as solved. For your needs, I'd recommend using google. This seems like a greater project, and using the skUnity forums for this alone would in my opinion be moronic. There's been made literally hundreds of these skripts already, and simply looking up 'factions...
  13. Jakkeren

    Action bar doesn't work

    What do you need TuSKe for? I'm pretty sure it's been outdated for a while. Just removed it myself due to it spamming my console with errors.
  14. Jakkeren

    Action bar doesn't work

    What I meant by spacing error, is that you might wanna try: send action bar "%{_a}%" to player Rather than this: send actionbar "%{_a}%" to player When you write 'send actionbar' you skript would like the 'actionbar' to be a text (hence the is not a text error), like when you use 'send "hi"'...
  15. Jakkeren

    GUI Skript - Internal Error

    I managed to do it in a simple and effective way: on inventory close: {var::%player%} is set: clear {var::%player%}
  16. Jakkeren

    GUI Skript - Internal Error

    Definitely. However it's much more clean and efficient to set a variable to your current inventory and checking for it, rather than actually checking for the name. Used get-inventory-name a lot in the past as well, but I guess you learn something new every day :P Internal errors often have...
  17. Jakkeren

    GUI Skript - Internal Error

    name of event-inventory is "&6Mega&fCraft Punishment" This will spam your console after minecraft 1.13. In 1.13+ you cannot get the title name of an inventory outside of an InventoryClickEvent. Only if this inventory has an InventoryHolder may it be used in this state. Check out this thread...
  18. Jakkeren

    Help with PVP skript

    on death: attacker is a player victim is a player if "%region at victim%" is "region": broadcast "%attacker% killed %victim%" //let's not spam the console with kill/death messages, but rather use the vanilla function for broadcasting messages else: //do...
  19. Jakkeren

    trying to set custom drops with percent chance

    Please elaborate your issue, and what you're trying to accomplish - we can't read your mind. There's clearly a lot of issues and un-optimal things in your skript, but we won't be able to help you unless you actually tell us what you're trying to do.
  20. Jakkeren

    help me run this skript as op

    Any errors?