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

    Solved every 5 seconds

    Make sure the worlds are correct and capitalized (add a broadcast to be sure that it triggers). If that's not the case, check to make sure the player's job variable is not set. Other than that, I'm not sure.
  2. White

    Solved every 5 seconds

    Something like this, #event loop all players: if {Job.%loop-player%} is not set: add 50 to loop-player's balance send "stuff" to loop-player
  3. White

    Solved every 5 seconds

    Before the if condition, add "loop all players:"
  4. White

    Solved every 5 seconds

    You need to include loop all players: Also make sure player turns into loop-player.
  5. White

    GUI execute command %loop-value% bug

    So what exactly is the bug? Is it the slot not executing the proper command? If that is so, that's a SkQuery bug and you will need to use TuSKe to fix this problem. Anyways, you should be using TuSKe for the best GUI performance and code.
  6. White

    Someone who can help me?

    Bud, do you ever learn from others on the forum? In the other thread, there were %attacker% and %victim% inside the variables. Use them.
  7. White

    Solved Can someone who knows and wants to help me solve the errors?

    Read through the 1st error. You are missing a % at the end of the variable. 2nd error, remove % % surrounding the brackets. Those are only used in strings and inside variables.
  8. White

    Warzone "Mining"

    I gave you a short overview of how list variables work. I am not going to spoon feed you so you'll have to figure it out or let someone else spoon feed you. Learning to solve problems yourself will help you improve.
  9. White

    Warzone "Mining"

    You cannot set a value to a list with ::*. ::* in the variable is used for looping and getting out indexes/values. You can only set a value to a variable such as {var::example}, not {var::*}. If you're only wanting to get one value out of a random element, don't add ::*, use a variable such as...
  10. White

    Warzone "Mining"

    Local variables, like {_var}, disappears when the event that it's in completely passes. On the other hand, global variables, like {var}, is stored into the variable file and can be used in every event. The rules apply to list variables too.
  11. White

    Reasons for "on chat" not working

    Are you using a custom chat? If so, from a plugin or from one of your scripts?
  12. White

    RIP Sounds

    What's your Skript Version? You sure you are using 2.2 dev28 or above?
  13. White

    Solved Hitting my self with the "shoot arrow" skript

    Try just using shoot arrow from player at speed 2
  14. White

    How to make custom tags to projectiles?

    While that's an ok method. Using metadatas is a way better because they can be deleted immediately after server restart without having to add a delete method. Metadatas is highly recommended when applying "tags" on blocks, players, and entities. An example is something like this, # Setting a...
  15. White

    Faster Right click?

    Well? It depends on how you structured the gun code.
  16. White

    Greather than %arg-2% balance

    add arg-2 to arg-1's balance remove arg-2 from player's balance Literally told you this earlier. % % are only used in variables and strings. Also, you forgot to add 's to arg-1 and player.
  17. White

    Greather than %arg-2% balance

    Remove the % %. Those are only used inside of variables and strings.
  18. White

    ERROR PLS HELP

    [14:12:29 ERROR]: #!#! javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1] Message: Vorzeitiges Dateiende. This is probably the issue?
  19. White

    Specator On Join

    You're probably getting that error because 2.1.2 is outdated. Try using Bensku's dev25. https://github.com/bensku/Skript/releases?after=dev26b Dev25 is the latest and last supportable 1.8 version on Bensku Sk which fixes many problems from 2.1.2.
  20. White

    Solved [SOLVED]GUI Help

    Something like this. open virtual chest inventory with size 3 named "&6Blocks" to player create gui slot 0 of player with barrier named "&aBarrier" to close then run console command "give %executor% barrier 1"