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

    Solved Tokens YML

    With SkUtilities you can use this, but using skript-yaml is better: Set tokens: options: # the line where the amount of tokens are set token-line: 4 # Setting tokens remove line 4 from file "plugins\YourFolder\%player%.yml" write "tokens: <amount>" at line {@token-line} to file...
  2. Efnilite

    Variables

    D0XY did a pretty good explanation, but I'm just gonna say when you need to use them. Temporary variables will be deleted after a command/trigger. You use these if you only need the variable in that trigger. Example how to and how not to use local vars: Good: every second: set {_slot} to...
  3. Efnilite

    Solved file help....

    What dke What doesnt work? Install SkUtilities before this works here: https://forums.skunity.com/resources/skutilities.26/ Can you post your errors?
  4. Efnilite

    Solved file help....

    You used 'uuud of player' and you use the most inefficient way of storing vars. Use vars for a player like {wins::%player%} {coins::%player%} And to use SkUtils yaml, use: set {file::%player}} to "plugins\Sug\player\%uuid of player%(%player%).yml" create file "%{file::%player%}%" write "##...
  5. Efnilite

    Directional Spirals

    Can you post them? And btw, what is your minecraft version
  6. Efnilite

    Directional Spirals

    How do functions not work for you? You call functions by using myFunction(player) not: function myFunction(player)
  7. Efnilite

    I need help with my sound script!

    on tool change: play "RANDOM.CLICK" at player with volume 10 and pitch 10 here are all the sounds if that doesn't work https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html
  8. Efnilite

    How do I disable jump for players of my selection

    Try apllying jump boost 255 or 256, that stops jumping.
  9. Efnilite

    Script Problem

    Try using command /gamemode [<string>] [<text>]: trigger: if arg-2 is set: set {_arg-1} to arg-1 parsed as offlineplayer # gamemode commands where player sets arg-2, but you need to replace all 'arg-1' with '{_arg-1}' else: # gamemode...
  10. Efnilite

    Drop ingot instead of ore, I don't know how to do it

    Try maybe adding a delay? Like on mine: if player is in world("world"): cancel event wait 1 tick Btw, what doesnt work? The drops?
  11. Efnilite

    Drop ingot instead of ore, I don't know how to do it

    Idk if it works but try something like 'clear drops' orso
  12. Efnilite

    My play sound effect don't work and don't show log errors

    Ah, didn't know that :emoji_grimacing: sorry Well, you learn something new every day lol
  13. Efnilite

    Solved Skript help - If list variable contains...

    Yeah, sometimes this happends to me too, that 'contains' doesn't work, because it should be fixed in dev36. But try using if "%{cw::ips::%player%::*}%" doesn't contain "%player's ip%": oh wait, try using list variables to store it like this: {cw::ips::%player%::*} because that stores more than...
  14. Efnilite

    Problem with list variables and “contains”

    maybe try this if the others didnt work if "%{listvariable::*}%" contains "%arg-2%":
  15. Efnilite

    per player tablist?

    Didn't work, i tried it but it didn't recognize the type, and when I enabled TablistAPI in the skellett config and downloaded TablistAPI, I got a massive error (probably because it's for 1.7 - 1.9)
  16. Efnilite

    Solved enchant menu not working and no errors?

    what doesnt work
  17. Efnilite

    Solved Gravity and visible of armostand

    SharpSK:add nbt "{Invisible:1}" to {_target2} add nbt "{NoGravity:1}" to {_target3}
  18. Efnilite

    per player tablist?

    hey there so, i wan't to do something like this: basically, i want to make it so that team red sees the players from team red as bold, and the other team as not bold, and the other way around for blue. what i have so far: loop {team::blue::*}: set...
  19. Efnilite

    Discord move player to other channel

    Unfortunatly, the developer of Vixio has this on the 'To-Do' list, so I think it will be added soon, but it's not there yet.
  20. Efnilite

    My play sound effect don't work and don't show log errors

    play ENTITY_GENERIC_EAT at player with volume 1 and pitch 1 Needs SkRayfall here are all the sounds if that doesn't work https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Sound.html