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

    Skript GUI Pages

    I think I can help
  2. Mich

    Solved Change GUI slot

    Something like this? command /gui: trigger: gui(player) on inventory click: if name of event-inventory is "Gui Test": if index of event-slot = 0: cancel event if {gui_dye::%player%} is "gray": set {gui_dye::%player%} to "lime"...
  3. Mich

    Solved Change GUI slot

    # Requires Skript 2.3+ function gui(p: player): set {_gui} to a new chest inventory with 1 row with name "Gui Test" if {gui_dye::%{_p}%} is not set: set slot 0 of {_gui} to gray dye set {gui_dye::%{_p}%} to false else if {gui_dye::%{_p}%} is true: set slot 0...
  4. Mich

    Skript GUI Pages

    Message me on discord and I help you Mich7272#4464
  5. Mich

    chat problems cant delete them from the chat

    Send the code to be able to help
  6. Mich

    Skript Time Doesn't Work

    Every 60 seconds is an event thats why function spawnmob(p: player):#this is the function, there is a function tutorial on skunity set {_x} to a random integer between 1 and 4 if {_x} is equal to 1: spawn a zombie at {_p} else if {_x} is equal to 2: spawn a spider...
  7. Mich

    %arg-1% not working in command

    If you want I can help you by discord to try the command on your server. My discord: Mich7272#4464
  8. Mich

    Tab Help

    But k= never quit just send some part of the code and if you are using an addon and what does it do to see if I can help you
  9. Mich

    Tab Help

    You should use the help format because right now I don't know how to help you, I don't know which add-on you are using for the tab
  10. Mich

    Variables cannot be used here. Function problem

    Skript version 2.5 beta 3 autor Shane Bee server: Spigot 1.16.2 function spawnpet(p: player, pet: string): kill {pet::%{_p}%} wait a tick spawn a ("%{_pet}%" parsed as entity type) at the {_p} Error: Variables cannot be used here. spawn a ("%{_pet}%" parsed as entity type) at the {_p}
  11. Mich

    Solved PerWorldHunger Skript

    Ok I hope you can make it work. It is a very good idea.
  12. Mich

    Solved PerWorldHunger Skript

    on hunger meter change: if player is in "world": set {hunger_world::%player%} to the player's food level #I dont know if this is going to work else if player is in "world2" set {hunger_world2::%player%} to the player's food level #I dont know if this is going to on player...
  13. Mich

    Damage Modification

    Try something like this. I havent test this so let me know on damage of a player: victim is wearing an stone block set damage to damage - 1 #you can make your ecuation #another example on damage of a player: if victim is wearing an stone block: set damage to damage - 1 #you...
  14. Mich

    tnt cooldown help

    on rightclick holding dispenser: if difference between {Waiting::%player%} and now is not more than 5 seconds: cancel event send "&6You're on Cooldown, Please wait!" stop else: player has 1 tnt spawn a primed tnt 1 meter above the player push...
  15. Mich

    Solved [HELP] Skript | Cancel Command

    on command "/ban jarno": cancel event
  16. Mich

    Solved SkQuery and skript compatibility problem

    Skript version 2.5 beta 3 autor: Shane Bee skQuery version 4.1.3 spigot 1.16.2 Description: There is a problem with the set slot 0 of inventory of {_p} to any item if I use skquery that effect wont work and there is no code errors I remove skqery from plugins and the error is gone, that how I...
  17. Mich

    on rightclick dont work for members

    #try this on rightclick: broadcast "test" to player
  18. Mich

    Teleporting Player Using Worlds

    I try that now and is working just fine command /test: trigger: teleport player to location at 0, 30, 0 in "world" but you have to type in "world name" is not like this in world "world name" if that does not work then try checking the world name may be the capital letters or something.
  19. Mich

    Teleporting Player Using Worlds

    Did you try this ? command /spawn: trigger: set {kit.BeingUsed.%player%} to false teleport player to location at 0, 30, 0 in "ul_spawn" I think this might solve the problem let me know
  20. Mich

    Creeper game

    Category: Fun Suggested name: Creeper game Spigot/Skript Version: any What I want: A skript when a player spawns a creeper with a creeper spawn egg makes the creeper friendly for that player but the creeper is able to path find other players nearby and kill the enemy players, if the creeper...