Solved skellet bug on 1.14.1 force respawn

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

    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.

Mich7272

Member
Apr 12, 2019
49
0
0
I have spigot 1.14.1
skript: 2.4 beta 2
skellet 1.9.6b
code
Code:
on death of a player:
    force respawn the player
the problem is the player auto respawn but the respawn screen is displayed anyways
 
Last edited:
1) You can use the force respawn built into Skript, no need to use Skellett's syntax
code_language.skript:
force player to respawn

2) You need to add a delay, this is a bug with Spigot they never bothered to fix
ex:
code_language.skript:
on death of a player:
    wait 1 tick
    force player to respawn
 
Status
Not open for further replies.