Solved Skript breaks on death

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

SteakBites

Member
Jul 18, 2022
14
1
1
16
The skript works fine until you die, then the teleporting no longer works. Can someone help make it not break upon death?

Code:
on join:
    wait 1 tick
    while player is alive:
        if blocks in radius 2 of player contains lime glazed terracotta:
            teleport player to location(556.5, 99, -73.5, world)
     wait 1 second
 
That's because the while loop stops when the player dies. Try using
Code:
while player is online
 
Status
Not open for further replies.