SevySevy Posted September 27, 2020 Posted September 27, 2020 Hello, I wanna know how to make my custom instance re-enterable? like when I die inside the instance and respawn back to my savepoint I can re enter the instance and continue. Quote
0 Poring King Posted October 5, 2020 Posted October 5, 2020 (edited) There is a lot of way to do that First you can make a global set when they enter then create a npc if they are ongoing in instance set #Instance,1; if (#instance = 1) goto L_ReEnter; mes "Sorry you are not allowed to go inside"; close; L_ReEnter: warp "location",x,y; end; I hope you get the idea Or you can do this on main Instance NPC if (#instance = 1) goto L_ReEnter; L_ReEnter: warp "location",x,y; end; Edited October 5, 2020 by Poring King Quote
Question
SevySevy
Hello, I wanna know how to make my custom instance re-enterable? like when I die inside the instance and respawn back to my savepoint I can re enter the instance and continue.
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.