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

    Gun

    Periodical events and no list variables? And using variables in general instead of metadata :emoji_grimacing:
  2. Minecoll_YT

    Solved Variables in lists?

    command /multi <player> <integer> <integer>: trigger: set {multi::%arg-1's uuid%::amount} to arg-2 set {multi::%arg-1's uuid%::left} to arg-3 on left click on yellow wool: if {multi::%player's uuid%::amount} is set: if {multi::%player's uuid%::left} is more than...
  3. Minecoll_YT

    teleport player to last location on world

    this should work but, use list variables ;)
  4. Minecoll_YT

    [HELP] Changing price for item

    Change a price of an item?
  5. Minecoll_YT

    Link Massage

    send "&7Click <link:https://discord.gg/yJFMz7Tv>&chere<reset> &7to join our discord server!" to player
  6. Minecoll_YT

    Solved [PROBLEM] Skript & ViaVersion ERROR

    Cool that you don't provide any other information... like logs or plugin versions
  7. Minecoll_YT

    Gens stops working on leave

    What the... is this code? - "loop all players" - mixed variables - not using list variables - starting a variable with an expression C'mon...?
  8. Minecoll_YT

    Give code idea = i will make them

    wrong topic
  9. Minecoll_YT

    For people who wants to crash other's game

    Wrong topic and why would you use the make console execute effect instead of spawning particles directly?
  10. Minecoll_YT

    how to run an argument

    I don't think there is an effect for this, but you can use the build in skript feature (can be found in the config) enable effect commands: false effect command token: ! # If 'enable effect commands' is set to true, chat messages starting with the 'effect command token' will be interpreted as...
  11. Minecoll_YT

    Monsters can "break" blocks if from spawners.

    This event shoots when a spawner spawns mobs
  12. Minecoll_YT

    list variables

    Multiple questions first: 1. Why are you using <green> instead of &2/§2 (and for other color codes) 2. You know boolean exist... you do not have to use 0/1 for true or false Issues: 1. You are missing a ":" on line 5 2. There is a whitespace issue on line 6 3. You didn't add the faction to the...
  13. Minecoll_YT

    Bow cooldown

    DO NOT USE COOLDOWNS LIKE THIS. And this is horribly wrong, here are the reasons: 1. The variable is not a list variable 2. The variable is not player specific 3. And in general the system is just horrible, if the server crashes it's ruined
  14. Minecoll_YT

    Solved Give player default item

    Ich denke mal das du Deutsch bist: Das liegt an dem Addon was du für das GUI nutzt. Es gibt viele Fehler in solchen Addons, um dir mehr Ärgert zu ersparen, nutze am besten die Vanilla Methode von Skript um GUIs zu erstellen.
  15. Minecoll_YT

    No land claim faction plugin

    So should this be set to anything a player wants or should someone be able to create groups and stuff?
  16. Minecoll_YT

    Monsters can "break" blocks if from spawners.

    on spawner spawn:
  17. Minecoll_YT

    Solved greater then error

    There are many things wrong with this: 1. Why the delay after the command trigger 2. SkQuery GUIs? Hell nah → TuSKe, skript-gui or vanilla (vanilla is the best) 3. Why put the player's balance in a variable? 4. And I would not recommend to use "is more than" because if the player has exactly 200...
  18. Minecoll_YT

    Rank Colour (Like Hypixel)

    You could use Vault to get the player's rank
  19. Minecoll_YT

    kit cooldown

    HELL NO! DO NOT DO THIS!
  20. Minecoll_YT

    kit cooldown

    if arg-1 is "vip": if player has permission "vip": if difference between now and {kit::%player's uuid%::cooldown::vip} is more than 10 seconds: set {kit::%player's uuid%::cooldown::vip} to now give diamond sword of sharpness 2 and unbreaking 3 to player...