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

    Solved Can't compare 'line 1 of sign' with a text

    What versions of Skript/Spigot are you running? I tested your exact code on Spigot 1.16.2 and Skript 2.5 and it worked perfectly.
  2. GRRRilla_Ninja

    Citizen follow the nearest player

    https://forums.skunity.com/wiki/help-request-layout/
  3. GRRRilla_Ninja

    Overlapping Regions, Priorities, and Skript

    Yeah I have no idea and I don't see any relevant search results from Google
  4. GRRRilla_Ninja

    Solved Coin System

    on right click with sunflower: if name of event-item is "&e&lName": cancel event remove sunflower from player's held item add 1 to balance of player message "You cashed in your &e&lCoin &rand received &a$1&r!" to player
  5. GRRRilla_Ninja

    Overlapping Regions, Priorities, and Skript

    How are you determining which region should have the highest priority? Is it something you want to specify yourself, or?
  6. GRRRilla_Ninja

    Question about adjusting time accurately

    I'm trying to create a skript that will fast forward time to the next new day. No console errors or reload errors. The code works as expected except for one small detail. The skript should adjust world time in 1 minute increments, but for some reason the actual world time always stops a few...
  7. GRRRilla_Ninja

    Progession GUIs

    This may or may not be the best solution. Set a required permission for each unlockable attack type, then loop through all possible attack types and see which permissions the player has?
  8. GRRRilla_Ninja

    Help me clean-up minigame code?

    Hey guys thanks for reading my post. I'm wondering if someone would help me test a minigame I made and give some feedback on how I can improve the game or the code? I would like to clean up the code and release it for others to download I think people will like it. I'll send a download link to...
  9. GRRRilla_Ninja

    Bubble Sorting?

    I don't understand. What is it you're trying to do?
  10. GRRRilla_Ninja

    Solved Not sure why my script doesn't work

    Works fine for me without the delay on 1.16.2 client and server, and Skript 2.5-beta4.
  11. GRRRilla_Ninja

    More challenging wither

    https://forums.skunity.com/threads/setting-a-mobs-max-health-and-damage.5918/
  12. GRRRilla_Ninja

    There is a way to use loop-index as location ?

    Not tested but try using "set {tst::%location of loop-block%} to location of loop-block"
  13. GRRRilla_Ninja

    Seeing other team's chat

    What team plugin are you using?
  14. GRRRilla_Ninja

    Sun Reset

    at 17:00: execute console command "/gamerule doDaylightCycle false" wait 4 ticks set time to 16:30 wait 4 ticks set time to 16:00 wait 4 ticks set time to 15:30 wait 4 ticks set time to 15:00 wait 4 ticks set time to 14:30 wait 4 ticks set time...
  15. GRRRilla_Ninja

    Solved Problem with Multiple quotes

    command /boostergive: trigger: give player 1 of feather named "Boost lvl 1"
  16. GRRRilla_Ninja

    /buy command

    If the item you want to buy costs 100... command /buy [<text>] [<text>]: set {_buyitem} to arg 1 set {_amount} to arg 2 set {_bal::%player%} to balance of player if {_bal::%player%} is larger than 99: give player {_amount} of {_buyitem} to player message "You...
  17. GRRRilla_Ninja

    Solved Help with a Skript

    Make sure you are using the latest version of Skript and change the command part: *amount message for testing purposes only. change or remove* command /tnt give [<integer>]: trigger: if arg 1 is integer: set {_amount} to arg 1 give player arg 1 of tnt named...
  18. GRRRilla_Ninja

    Solved variable skript

    command /setevent [<text>] [<text>] [<text>]: trigger: set arg 1 to {event::name} set arg 2 to {event::date} set arg 3 to {event::status}