Jump to content
  • 0

Making Custom Instance Re-enterable


SevySevy

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  24
  • Reputation:   0
  • Joined:  03/30/20
  • Last Seen:  

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.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  61
  • Topics Per Day:  0.02
  • Content Count:  911
  • Reputation:   166
  • Joined:  11/27/14
  • Last Seen:  

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 by Poring King
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...