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

    Set Mining Speed

    Sp I have been looking all over the web to do this and I have not really found a good way. I have tried setting Mining fatigue and haste but that does not work too well. Because haste 2 is a lot faster also you can either see your pickaxe mine really slow or really fast. I also need to say for...
  2. B

    Why is this function now working

    So it says that levelUp(p: player) is not a text but I have this isn't it right function levelUp(p: player): if {xp::_p} >= {xpRequired::_p}: set {xp::_p} to 0 add 1 to {level::_p} add 1 to {_p}'s level set {xpRequired::_p} to ({xpRequired::_p} * 1.15)
  3. B

    Custom Race Skript

    Ok so I have been having so problems making this I have tried so hard. What I need is a skript when a player first joins is a gui that pops up with 3 items a sword for &9Warrior a shovel &eDwarf and a hoe for &5Mage. There would be a admin command like /race change %player% %class% so I could...
  4. B

    Skript Help

    For some reason if your one class you gain every ability so if you shift you go invis and you are resistant to poison I check in pex and it says I only have dwarf perm any ideas? on join: if {race.%player%} is true: stop else: set {race.%player%} to false wait 1...
  5. B

    Guard Plugin Problem

    So I am using Citizens and SkRayFall Plugin to help me make a custom guard plugin. But I don't know how to make it so once a player makes a guard it's ID is put into a category called guard and I can check if a player is near a guard when he/she attacks here is my code. command /guard...
  6. B

    Variables not working

    So I have this skript and when you mine a coal block you should get 1 custom xp that I created. But when I do /xp which tells me how much custom xp I have it says 0 any help? variables: {xp} = 0 {level} = 0 on login: if {xp::%player%} is not set: set {xp::%player%} to 0...