Add additional Warp Area. (PVP Room)

karazu

New member
Messages
1,115
Points
0
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?

Code:
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;} 
 
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".

 
Last edited by a moderator:
Back
Top