Recent content by ParFumat_

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

    mobs keep spawning

    can you help me with this too? at score 20, the player is teleported out of the region, but if the player kills a zombie before being teleported, the zombie spawns and stays there, I don't want it to be like that, I want it to stop respawning if there is no player in the region on load: loop...
  2. P

    mobs keep spawning

    on load: loop all players: set {dungeonscore::%loop-player's uuid%} to 0 on death of player: kill all zombies where [region at victim is "dungeon1"] on death of zombie: if victim is in region "dungeon1": if attacker's gamemode is not creative: add 1 to...
  3. P

    mobs keep spawning

    I want to make it so that if the player (leaves, dies or uses a command to teleport him from there) the zombies die and stop spawning, only if a player enters the region the zombies spawn
  4. P

    mobs keep spawning

    why do zombies spawn after exiting/dying in region dungeon1? this was not supposed to happen on load: loop all players: set {dungeonscore::%loop-player's uuid%} to 0 on death of player: kill all zombies where [region at victim is "dungeon1"] on death of zombie: if victim is in...