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

    Solved Items Join

    El foro está centrado en el idioma inglés. Para próximos posts que vayas a hacer, redacta tu problema en el lenguaje correspondiente.
  2. couger44

    Solved İf Victim Player Group

    You cant use the expression 'player' in on death event. To check the victim's group try using this: if group of victim is "RedTeam":
  3. couger44

    Ranks on server

    What do you mean when you say to make a 'nice shop'? And I doubt that your stores dont work because you downloaded TuSKe.
  4. couger44

    trophies

    I think this is what you are looking for. It is out of date, so I don't know if it will help you: https://forums.skunity.com/wiki/roles/
  5. couger44

    Ranks on server

    I recommended TuSKe or vanilla inventories because SkQuery inventories have bugs. But well, i didnt try this: command /shop: trigger: open chest with 6 rows named "&6&lNice shop" to player set {_vip.vouncher} to name tag named "&6&lVIP Vouncher" set line 1 of lore of...
  6. couger44

    trophies

    When you say trophies you mean medals, right? I sent you the link in the post above. The requirements to obtain the medals appear there on the page. Medals: https://forums.skunity.com/help/medals I dont know if there will be secondary requirements such as being a member from a specific date...
  7. couger44

    Report Help

    You must put the tabs where they belong. Try this: command /report [<player>] [<string>]: trigger: if arg 1 is "%player%": send "&cYou cannot report yourself!" else if arg 1 is set: if arg 2 is set: send "You reported &7%arg 1%&f with...
  8. couger44

    trophies

    Here: https://forums.skunity.com/help/medals
  9. couger44

    Solved A Little Two Question

    First answer, i don't understand what you mean by that question of whether it's included or not, but, they both do the same thing. The only difference is that they are written differently. If you have a doubt about skript syntax, see here: SkriptHub or SkriptLang Second answer, well... i never...
  10. couger44

    %player's uuid% problem

    As @Viktor Tim Aggerholm said, is preferable that you set the initial variable differently instead of using the variable option. When I skripped for my server or someone else's, I usually did it this way: on join: if {variable.%uuid of player%} isn't set: set {variable.%uuid of...
  11. couger44

    Solved i need help on this skript

    With the SkUniversal addon you can use the expression 'player's luckperms prefix'. You require version 1.14 or 1.15. Source: SkUniversal.
  12. couger44

    %player's uuid% problem

    At some point, I saw that some people had an error writing "player's uuid". And I think the solution was to replace it with "uuid of player". So change %player's uuid% with %uuid of player% It should works
  13. couger44

    Ranks on server

    I modified your skript a bit depending on what you wanted. And i recommend you use the vanilla or TuSKe inventories. Like this: command /niceshop: trigger: open virtual chest inventory with size 6 named "&6&lNice Shop" to player set {_vip.vouncher} to name tag named "&6&lVIP...
  14. couger44

    Solved Command İnner Player Name Has Permission

    Do: command /report [<player>] [<text>]: trigger: if arg 1 is does not have permission "dont.repport": Although, I don't understand what you want to do. With that permission, do you block the access to report to the player of argument 1? Or do you want to set a permission to run the...
  15. couger44

    Pearlthrough skript error

    I didnt try, but try the way @ShaneBee wrote. You need skript-mirror to do this. on projectile hit: projectile is an ender pearl: shooter is a player: if event.getHitBlock() is a fence gate: shoot event-projectile 1 meter in front event.getHitBlock()...
  16. couger44

    who can help me

    This section of the forum is for requesting a skript, not for asking for help on a skript. For the other you need help, post on Skript. Regarding your doubt, try something like this: command /wts [<offline player>] [<string>]: trigger: arg 1 and arg 2 are set: add arg 2...
  17. couger44

    Solved Help me!

    With this: command /test: trigger: if player is op: send "&aYou can use this command as a op." to player else if {permissions::%player%::*} contains "test.use": send "&aYou can use this command with permission." to player else: send...
  18. couger44

    Variable outside skript

    What do you mean?
  19. couger44

    Solved Very easy but ı could not :)

    You're welcome. Mark the post as solved.
  20. couger44

    Pearlthrough skript error

    Look at these post, they may help you. https://forums.skunity.com/threads/necessary-expressions-for-addons.7905/#post-34183 https://forums.skunity.com/threads/anyway-to-detect-the-hitten-block-of-a-projectile-hit-event.7901/#post-34209