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 comminuty!

    Now, what are you waiting for? Join the community now!

  1. A

    Solved Variable changing its value without input?

    Hello, I am having problems with a variable changing its value, but I do not change it in the code: Here is my code: command /derp: trigger: set {helmet.%player%} to player's helmet message "%{helmet.%player%}%" enchant player's helmet with sharpness 1...
  2. A

    How can I save a entity for another code?

    Hello all, I am trying to let the player execute a command after he interacted with an entity before something will happen to that entity. How can I do this? Here is an simple example on right click on pig: set {askquestion.%player%} to 1 send "want to change the name?" to player...
  3. A

    Problems with code for spawning mobs from list.

    on disconnect: loop all creatures in radius 15 of player: add loop-creature to {%player%::Test::*} send "%{%player%::Test::*}%" to console on Join: spawn all elements of {%player%::Test::*} at player's location Hi all, I am trying to add all mobs in a radius of 15 of a...