Jump to content
  • 0

Making Custom Instance Re-enterable


Question

1 answer to this question

Recommended Posts

  • 0
Posted (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 by Poring King

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...