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

    Solved OffHand Detect

    Help request format once asked: Have you tried searching docs and forums? https://forums.skunity.com/threads/offhand.3786/ https://docs.skunity.com/syntax/search/offhand https://www.spigotmc.org/threads/removed.248652/
  2. Nikd0

    when you click a paper it gives you a pex permission

    You want a skript? Looks like a request: https://forums.skunity.com/forums/requests/ if not, use: on right click with paper: player's held item = paper named "yourname" with lore "yourlore" #give player permission
  3. Nikd0

    Mob Spawners

    https://forums.skunity.com/threads/custom-mob-spawner.3817/
  4. Nikd0

    Help with placeholders

    Skript already told you - you can't just have a single command, there must be a trigger = event / command / ... You may use "on load" event: on load: set variable to your placeholder oops! almost forgot... you can't set a variable starting with _ in there.- i would suggest to put it right...
  5. Nikd0

    Help with PVP skript

    on death: attacker is a player victim is a player if victim is in region "myregion1": execute console command "say %attacker% killed %victim%" .... else if ...: Use attacker/victim, wait, execute console command
  6. Nikd0

    Variable issue

    Shouldn't it be this? set {_block} to block at [location] %location% If not: Can you give us an example of usage? I'm not sure if I fully understand what do you want to get here.
  7. Nikd0

    Car - Skript

    Looks like a request: Requests | skUnity Forums
  8. Nikd0

    Action bar doesn't work

    How are you creating them? Do you have all the required addons etc.?
  9. Nikd0

    how do i target specific player

    You're missing trigger!! Use SkriptLearner's reply instead.
  10. Nikd0

    Solved How do I check for the item's durability?

    {_durability} is a variable you would have to set. Found this in an old thread: on item damage. if durability of event-item < 10: send "Your tool has less than 10 of durability!" Also, I think there is nothing like %tool%, but I'm not sure. Note: TuSKe needed
  11. Nikd0

    When player have 3 warns, mute player for 5 mins

    1. Yes, "delete {variable}" exists :emoji_wink: as well as "clear {variable}" 2. No, not this way. This would turn on every time you (don't) send a message. That means he would get 3 warns and nothing would happen. Then, he would chat and it will start, wait for 5 minutes and set the number of...
  12. Nikd0

    FFA plugin fix

    Any errors? Aren't you missing the slash (/) before the command? (line 91) If it's right then I'm sorry, I have never done it like so.
  13. Nikd0

    Solved Need Help For Simple Shooting Script

    Please, don't use true/false, use true/not set instead. Means that if it's not true, you clear the variable. It's good for your server's performance.
  14. Nikd0

    [HELP] Non OPS cant do anything.

    You sure they got permission "awpcc.default"?
  15. Nikd0

    Get the variable with the highest value?

    The problem is: if you loop players all the players must be online; if you loop variables there is no such problem. I would just recommend to skip to using arrays.
  16. Nikd0

    add arg-3 to {coins::bal::%arg-2%} is not working for me ;( help

    arg-3 isn't an offline player
  17. Nikd0

    Compare with dropped item

    You see? That's the problem why you can't compare it with "Emerald" etc... I would try name of loop-entity or sth like that.
  18. Nikd0

    Ambiental music

    1. chance of 100% is absolutely unnecessary. 2. I would do something like this: on join: if player is in "yourworld": set {playmusic::%player%} to true #play your first song wait X minutes if {playmusic::%player%} != true: stop #play your...
  19. Nikd0

    Spawner drops when mined with spawn egg of the mob inside it

    That's interesting, you're only telling the skript to drop spawner and it doesn't drop an egg... :emoji_thinking: You should get the spawner type (probably with a condition) and then drop the according egg.
  20. Nikd0

    Solved Night Time

    Yeey! Now, please, mark the thread as Solved (and you can also set my answer as the best one) :emoji_ok_hand: