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

    Need help asap! Thank!

    Yep, unless you have code that you're having an issue with, this goes in the requests section. You already know exactly what you want it to do, though, so looking up each effect you want to happen in the docs would enable you to put this together pretty easily~
  2. Wynnevir

    Addon for WorldGuard

    Not to my knowledge. Normal Skript has Worldguard region support and skstuff has worldedit, but skstuff is no longer supported. so use at your own risk
  3. Wynnevir

    Solved Unbreakable tool

    Is your problem you don't know how to combine those two options to get both? http://mapmaking.fr/give/ <---Give command generator for 1.12.2
  4. Wynnevir

    drop item not working

    Which Dev version are you on? You may need to use an older version of skript that woks with your minecraft version. Why are you still on 1.7.10? :0 it's very old.
  5. Wynnevir

    drop item not working

    This is exactly what I have: options: prefix: test on death of a player: set {_약탈} to level of looting of attacker's tool set {_약탈} to {_약탈}+1 set {_s} to 240*{_약탈} set {_m} to round down ( {_s} / 60 ) set {_s} to {_s} - ( {_m} * 60 ) set {_h} to round down ( {_m}...
  6. Wynnevir

    drop item not working

    Oh! How silly. Take out the number to drop.^-^ drop {_돈} at victim That loads properly for me.
  7. Wynnevir

    drop item not working

    The picture is not showing. Can you explain more? Post the exact code you are using? :)
  8. Wynnevir

    Solved Problem with giving player enchanted items

    Glad to hear! Go ahead and mark this post as solved if you will~
  9. Wynnevir

    Solved Problem with giving player enchanted items

    Thorns with an "s". Reloaded just fine for me:) Also you don't need to add the stop at the end of a command like that, there's nothing else for it to execute
  10. Wynnevir

    drop item not working

    Hmm, hopefully this makes sense: drop 1 <item> at victim. Example: Drop 1 diamond at victim Or drop 1 <item> at attacker. Example: Drop 1 diamond at attacker
  11. Wynnevir

    drop item not working

    You need to specify an item to drop(unless you just forgot to put it in your example here). Another option could be dropping the item at the attacker if for some reason dropping it at the victim is not working.
  12. Wynnevir

    Save inventory and load

    Its worked just fine for me in all the time I've been here. You may just need to choose better keywords in your search. In this case, searching "save player inventory" gives multiple correct answers on the first page.
  13. Wynnevir

    Solved Loop Issues

    Try using loop-value instead of loop-player
  14. Wynnevir

    Save inventory and load

    There's a lot of threads about this here on SKuntiy! Use the search feature and do some research, the answer is already here^-^
  15. Wynnevir

    Solved offline players in a group

    If I understand what you want correctly, you want to remove the lastused cooldown variable, yes? If so, loop the offline people with perm list you created, and delete the variable with the loop value: loop {crab.withperm::*}: delete {crab.%loop-value%.lastused}
  16. Wynnevir

    Solved offline players in a group

    That will delete that list, yes. On quit, not on leave btw, I derped. lol
  17. Wynnevir

    Solved offline players in a group

    on quit: if player has permission "banana": add "%player%" to {bananagroup.withperm::*} **edit: oops thats "on quit"
  18. Wynnevir

    Solved custom banner in gui

    try to use custom nbt use skstuff thanks for see my answer #try this perhaps. But Tuske is better for gui's less buggy set {_nbt} to "{BlockEntityTag:{Patterns:[{Color:*colorId*,Pattern:"*patternId*"},{Color:*colorId*,Pattern:"*patternId*"}, etc. ]}}" format gui slot 0 of the player with banner...
  19. Wynnevir

    Solved offline players in a group

    maybe you could run the check for their permission on the leave event, and add them to a list of people with the perm. Then check that list to remove the cooldown? Don't believe you can check an offline player's perms. May be inncorect as I've never tried to.
  20. Wynnevir

    Solved Help with "if arg 1 is not set:"

    you need to indent the lines after the if statement if arg 1 is not set: do thing here do thing here