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

    Im stuck with making a leaderboard with kills and deaths

    You need variables such as {kills::%player%}, {deaths::%player%} or something else on join: if {kills::%player%} and {deaths::%player%} are not set: set {kills::%player%} to 0 set {deaths::%player%} to 0 on death of a player: set death message to "" if attacker is a...
  2. Dave

    Skript Showing Unknown Command

    Please, put ur code into </> code format to make it more easy to read https://gyazo.com/29623e27bc8f4342f311f2b2215eeb45
  3. Dave

    Player can take thinks out a gui

    grind reset? send your code
  4. Dave

    top %integer% elements of %objects% (mirrorutils)

    Hi, I'm trying to get the top 5 values of objects but doesnt works Skript version: 2.2 fixesv8 (Im running 1.8.8) and using MirrorUtils.sk Addons: skript-mirror 2.0.0 Here's my code command /top [<text>]: usage: /top <kills|deaths> trigger: if arg-1 is set: if arg-1...
  5. Dave

    Player can take thinks out a gui

    is there any errror on load? it works perfectly for me https://gyazo.com/7a36f9733f37e7e7a2a3e904bfb2df3c command grind: trigger: wait 1 tick open chest with 1 row named "&cGrind Informatie" to player set slot 3 of player's current inventory to exp_bottle named...
  6. Dave

    Player can take thinks out a gui

    thats skquery format slot, it doesnt works correctly try this: set slot 3 of player's current inventory to exp_bottle named "&7&lGrind Xp" with lore "%{Gxp.%player%}%"
  7. Dave

    Victim's no damage ticks

    ''There's a way to change the damage ticks?'' its a question I know how this forum works
  8. Dave

    GET URL CONTENTS

    I'm trying to get contents from url but doesnt works Addon: skUtilities v0.9.2
  9. Dave

    Place block

    You want to generate emerald block above the stone or at same location? 1st way: Replacing stone with emerald block https://gyazo.com/5705ff07d84f377ca5db50f992f8e3fd on place: event-block is stone: set block at event-location to emerald block stop 2nd way: Generating...
  10. Dave

    Licensing Skripts

    I think is impossible, skript is a text file, so you can't implement an activation key for skripts
  11. Dave

    variables in strings

    you're welcome!! please, mark this as best answer
  12. Dave

    Solved How do you create a function that gives all players the input parameter?

    function all(obj: item): loop all players: give {_obj} to loop-player
  13. Dave

    Any Idea how to make multiplayer skyblock worlds?

    No, you didn't, you've set into quotes, you need to insert into the ''</> code'' format that I show u before
  14. Dave

    variables in strings

    ... set score " &5Prestige: %{press.%loop-player%}%" in sidebar of loop-player to 3
  15. Dave

    Solved Teleport player to random saved location

    yea, th You're welcome! : )
  16. Dave

    First Join

    in config.sk file, search ''date format:'' option at line 88 https://gyazo.com/6fc2021d3e2f1d65d7e9efaf951eb723 https://gyazo.com/3a902ea5844dec43d7e3fa4349e7ab1d change it from ''default'' to "dd/MM/yyyy hh:mm a"
  17. Dave

    Any Idea how to make multiplayer skyblock worlds?

    You code is actually unreadable or its hard to do, please use the code format and paste your code in https://gyazo.com/2c5a1c77cc66151cd55d60935ec490d6
  18. Dave

    Solved Teleport player to random saved location

    It works. on load: loop 5 times: if {spawn.dungeon%loop-number%} is set: add {spawn.dungeon%loop-number%} to {dungeonlist::*} on unload: delete {dungeonlist::*} on rightclick on black concrete: set {_dungeontp} to a random element out of {dungeonlist::*}...
  19. Dave

    First Join

    It works for me command /firstjoin [<offlineplayer>] [<text>]: permission message: &cYou have no permissions to perform this command. usage: /firstjsoin <player> permission: admin.* trigger: if arg-1 is set: if arg-2 is not set: if...
  20. Dave

    Solved everyone except player

    https://gyazo.com/82a9fc1eb1f0fd0c9d0220b2a9911593 uhm