Recent content by Gecky

  • 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. G

    Mythicmobs spawning

    Not sure if this belongs here but I really need some help figuring this out, I'm using randomspawners from mythicmobs to randomly spawn mobs and Im using skript to manage the spawn rates. I would like only 10 mobs within a 100 radius of when a mob spawns. This is what I used to attempt that, but...
  2. G

    Solved Loop entities in radius with name

    Thank you so much sir!
  3. G

    Solved Loop entities in radius with name

    on mine of oak log: loop entities in radius 20 around block: if loop-entity is armorstand named "lumberarea": broadcast "armorstand" Is there a way to loop entities in radius and check for armorstand with a name? Ive pre-spawned the armor stand invisible with a name...
  4. G

    Solved Remove 1 item from item stack in players hand

    I had a weird version before, it works now that I updated. Thank you! Solved.
  5. G

    Solved Remove 1 item from item stack in players hand

    For some reason it works when I am holding a single head in my hand, but not if there's any more than 1...? Any ideas?
  6. G

    Spawn xombie

    Is "zombie" the world name? If so, try player is in world "zombie"
  7. G

    On rightclick holding a head

    Not sure what your error is, but try for line 2:if event-item's name is "&e► &cŽAIDIMAI &e◄":
  8. G

    Solved Remove 1 item from item stack in players hand

    They are except for the removing of only 1 item. bump
  9. G

    Solved Remove 1 item from item stack in players hand

    How would I make it so when the player clicks on the head it will only remove 1 in a stack of heads? on rightclick holding a head: if event-item's name is "test": remove 1 of tool from player's held item <-- doesnt work
  10. G

    Solved Checking location for armorstand

    Thanks! Solved.
  11. G

    Solved Checking location for armorstand

    Thank you! Also just a side question, do you know how to make a leather helmet be dyed red inside of a GUI?
  12. G

    Solved Checking location for armorstand

    So the goal of the skript is to have the armorstand spawn if there isn't already one. I have it so it spawns when the command is triggered but how would I check the location of the coordinates for an armorstand before spawning it. And if there is an armorstand already there, it will not spawn...
  13. G

    Solved Remove armorstand on click?

    Thank you! Solved.
  14. G

    Solved Remove armorstand on click?

    The removing of the armorstand worked but when I have it run a command to open a gui, the gui is empty. The gui when done through manual commands does work. (Also doesn't work when I add something like 'send "test"' on rightclick on entity: if "%event-entity%" is "armor stand"...
  15. G

    Solved Remove armorstand on click?

    Hey so I am trying to make it so when you click on an armorstand (it is invisible) the skript will remove the armorstand and do something, will use send for example. This is what ive got but I have no clue how to make it actually work...? on rightclick on armor stand: loop entities in...