Jump to content
  • 0
Sign in to follow this  
karazu

Add additional Warp Area. (PVP Room)

Question

I have my script below, but I am planning to add 1 additional map. How should i add 1? Can u guys edit it please?

prontera,152,192,5	script	PVP Warper	450,{if (!agitcheck() || !agitcheck2()) {	if (select("Yes!","No thanks.") == 2) close;		warp "guild_vs3",0,0;		announce strcharinfo(0) + " : Come and get me here in the PVP area Punks.",0;		announce "There are ["+getmapusers("guild_vs3")+"/30] players inside.",0;		end;	}	end;} 

 

Share this post


Link to post
Share on other sites

2 answers to this question

Recommended Posts

  • 0

There you go: http://upaste.me/672e9a

I chose to name the options "Map 1" and "Map 2" so you can rename it, and the second map I just chose to take guild_vs4, so just change it according to what you desire.

 

On another note I presume you'd prefer for it to not be accessible during WoE at all, meaning you'd need to change.

 

 

//triggers if any one of the two WoE's are offif (!agitcheck() || !agitcheck2()) {

to

 

//triggers only both WoE are offif (!agitcheck() && !agitcheck2()) {

 

And on yet another note, the 

 

getmapusers("guild_vs4")+"/30

part won't do more than announce, it isn't any check. Meaning that if you have 31 players in the room it will say "31/30".

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.