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

    Make mobs sun proof (ONLY sun, not all ignite sources)

    on combust: if event-entity is a zombie: cancel the event
  2. V

    Functions are not working...

    Error: "test(P: player) is not a text" code: function depositAll(P: player): set {bank::%{_P}%} to {bank::%{_P}%} + {_P}'s balance set {_P}'s balance to 0 function depositHalf(P: player): set {_b} to {_P}'s balance / 2 set {bank::%{_P}%} to {bank::%{_P}%} + {_b} set {_P}'s...
  3. V

    Solved Weird endeavor of the "on portal" event. Pls help.

    lol its need to work whats your skript info?
  4. V

    Solved Regeneration Detection

    mark this as solved please
  5. V

    Solved Need help with adding eye to end portal frame

    Spigot 1.8.8 Solved: set event-block's data to 4
  6. V

    armor update

    Hey, I doing a rpg server so I did a stats for the armor that updates every tick but if I drop the armor from my armor slots it takes like 10 seconds to upadate... anything that I missing? every 1 tick: loop all players: #defence if loop-player's helmet is not air...
  7. V

    Solved Teleport error

    maybe? teleport player to location -24.5, -5, -18.5 in world "yacht"
  8. V

    How to set block to end portal frame with eye

    Hey so I trying to make skript that on click on end portal frame its set to end portal frame with eye and the only option that woked is with set block but this is working just when I make the player execute... when I make the console execute its not working code: make console execute "make...
  9. V

    Solved Make a script be able to read a variable from any script

    if its solved mark this as solved
  10. V

    Solved Make a script be able to read a variable from any script

    why its health.<name>? try to send "%health.<name>%"?
  11. V

    Solved Weird endeavor of the "on portal" event. Pls help.

    this? if display name of event-player is "":
  12. V

    Solved Make a script be able to read a variable from any script

    can you do /skript info and send the output please? also check the skript plugin file and check if the variable saved in variables.csv
  13. V

    Solved Regeneration Detection

    yep on heal
  14. V

    Solved Make a script be able to read a variable from any script

    no... I see that you set the variable on death right? so do you first do the command or first run the event and after you trying to read the variable
  15. V

    Solved Make a script be able to read a variable from any script

    did you set the variable before you triend to read it?
  16. V

    Solved Make a script be able to read a variable from any script

    Where is the code that you set the variable?
  17. V

    Looping items in a block at a certain location

    Try to ask in the discord server
  18. V

    Looping items in a block at a certain location

    Maybe this? If its still not working try to store the location od the block in variable too and replace "at location {var}" to "at {var}" loop all items in inventory of {(the block variable here)} at location of {(the block variable here)}:
  19. V

    Trouble making a fireball deal 0 damage to player but 15 damage to other mobs

    don't use damage the victim by 15 hearts if you doing a game that give the player kills etc... because this damage is not a player damage but you can use both set damage to 15 and make player damage victim by 15 hearts
  20. V

    Trouble making a fireball deal 0 damage to player but 15 damage to other mobs

    maybe? on damage: if projectile is set: if projectile is a fireball: if name of attacker's tool is "&6&lFireball Spellbook": if victim is a player: cancel event else: set damage to 15 for me its...