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

    Solved Is it possible?

    Is it possible to get (in-game) the list of all the scripts? command /test: trigger: send "Send me the number of scripts loaded" to executor send "Here send me the list of all the scripts loaded" to executor stop
  2. FinalPlayer024

    Solved GUI help.

    Here, you're the "idiot".. :emoji_grinning: I understood you love TuSKe, but let people do what they want, if they want to use format slot or tuske, god
  3. FinalPlayer024

    Solved Could someone tell me where the errors are?

    Colon after "xkmbg.admin"
  4. FinalPlayer024

    Solved Making a right click event cancel if the player is looking at a block.

    on rightclick: if targeted block is set: if targeted block is grass: cancel event send "You can't rightclick on this block" to player stop else if targeted block is not set: stop I don't know if this can help you
  5. FinalPlayer024

    Has enough space

    Probably because of 'for arg 1 of stone', try with 'if player has enough space for "%arg 1%" of stone'
  6. FinalPlayer024

    Help with a command.

    Uhh, yeah, I got confused a bit, add [<player>] after "command /reward-purchase:"
  7. FinalPlayer024

    Has enough space

    Here :emoji_grinning:
  8. FinalPlayer024

    Help with a command.

    "::*" are Variable Lists, I don't think you need this. command /reward-purchase: trigger: if {is.active.%arg 1%} is true: send "&7It worked!" wait a tick set {is.active.%arg 1%} to false stop if {is.active.%arg 1%} is false...
  9. FinalPlayer024

    Solved Is it possible to get the amount of players online in a multiverse world in scoreboard?

    Something like: Loop all players in world "world", then pick loop-value in scoreboard. on join: wipe player's sidebar set name of sidebar of player to "Name" set score "Factions" in sidebar of player to -1 loop all players in world "factions": add loop-value to {_factions} set...
  10. FinalPlayer024

    Loop on offline players

    Local variables are "{_test}", variables with an underscore at the start. So, use a variable like {time.%player%.logout} on player quit, and call it back on player join with "set {_time.hasbeen.offline}" to difference between {time.%player%.logout} and now, then add {_time.hasbeen.offline} to...
  11. FinalPlayer024

    Solved Tuske GUI don't working

    I didn't understand if he wanted to continue using TuSKe or try using another addon because he didn't add many informations, so I just wrote a basic simple one for him, I know TuSKe is more better than format method. I'm not comparing format method and TuSKe.. You should stop considering...
  12. FinalPlayer024

    Solved Tuske GUI don't working

    1. These aren't your problems, if he wants he'll look at the code, else if he doesn't.. he won't look, you are not their teacher.. 2. So, since you are not a spoonfeeder (lol), you'll help him without saying how to fix his code? You'll start TuSKe class for a teacher careeer? Magic.. 3. You...
  13. FinalPlayer024

    Solved Tuske GUI don't working

    NO. PLEASE. Calm down. Really Simply add your code and help @PantherBoy.. rage frenchs...
  14. FinalPlayer024

    Solved Variable inside a variable?

    An example: command /all [<text>]: trigger: loop all players: make console execute command "/%arg 1% %loop-player%" stop So, if the command after /all is "/kick", console will execute "/kick PlayerOnline1" "/kick PlayerOnline2" "/kick PlayerOnline3". did you mean that?
  15. FinalPlayer024

    Working way to delete drops in a world

    loop all dropped items: delete loop-value ?
  16. FinalPlayer024

    Solved Tuske GUI don't working

    Try using: command /somecommand: trigger: open chest with 1 rows named "Name" to executor format slot 0 of executor with stone named "Name" with lore "Lore if you want" to be unstealable stop