Jump to content
  • 0
Sign in to follow this  
jpnazar

Can i have PVP Warper that disable in WOE

Question

11 answers to this question

Recommended Posts

  • 0
map,x,y,z	script	PvP Warper	100,{	if (!(agitcheck() || agitcheck2()))		warp "pvp map",0,0;			end;}
map,x,y,z	script	PvP Warper	100,{	warp "pvp map",0,0;	end;OnInit:	if (!(agitcheck() || agitcheck2())) end;OnAgitStart:OnAgitStart2:	disablenpc strnpcinfo(0);	end;OnAgitEnd:OnAgitEnd2:	enablenpc strnpcinfo(0);	end;}

 

Share this post


Link to post
Share on other sites
  • 0

 

map,x,y,z	script	PvP Warper	100,{	if (!(agitcheck() || agitcheck2()))		warp "pvp map",0,0;			end;}

how to add broadcast when player go in pvp? like "Player" Entered PVP Room

Share this post


Link to post
Share on other sites
  • 0
map,x,y,z	script	PvP Warper	100,{	if (!(agitcheck() || agitcheck2())) {		warp "pvp map",0,0;		announce strcharinfo(0) + " has entered the pvp room.",0;	}			end;}

Share this post


Link to post
Share on other sites
  • 0

 

map,x,y,z	script	PvP Warper	100,{	if (!(agitcheck() || agitcheck2())) {		warp "pvp map",0,0;		announce strcharinfo(0) + " has entered the pvp room.",0;	}			end;}

can you please add menu? Do you want to go?  Yes and No

Share this post


Link to post
Share on other sites
  • 0

nice Support boss 

Joseph

 

 

map,x,y,z	script	PvP Warper	100,{	if (!(agitcheck() || agitcheck2()))		warp "pvp map",0,0;			end;}
map,x,y,z	script	PvP Warper	100,{	warp "pvp map",0,0;	end;OnInit:	if (!(agitcheck() || agitcheck2())) end;OnAgitStart:OnAgitStart2:	disablenpc strnpcinfo(0);	end;OnAgitEnd:OnAgitEnd2:	enablenpc strnpcinfo(0);	end;}

 

 

map,x,y,z	script	PvP Warper	100,{	if (!(agitcheck() || agitcheck2())) {		warp "pvp map",0,0;		announce strcharinfo(0) + " has entered the pvp room.",0;	}			end;}

10+ for this support!

Share this post


Link to post
Share on other sites
  • 0

is this correct?

prontera,165,177,3	script	PVP Warper	106,{if (!(agitcheck() || agitcheck2())){	if (select("Yes!","No thanks.") == 2) close;		warp "pvp_y_1-2",0,0;		announce strcharinfo(0) + " has entered the PVP Room.",0;		}	end;}

Share this post


Link to post
Share on other sites
  • 0

 

is this correct?

prontera,165,177,3	script	PVP Warper	106,{if (!(agitcheck() || agitcheck2())){	if (select("Yes!","No thanks.") == 2) close;		warp "pvp_y_1-2",0,0;		announce strcharinfo(0) + " has entered the PVP Room.",0;		}	end;}

add this for disable on woe

[cbox]OnInit:

if (!(agitcheck() || agitcheck2())) end;

OnAgitStart:

OnAgitStart2:

disablenpc strnpcinfo(0);

end;

OnAgitEnd:

OnAgitEnd2:

enablenpc strnpcinfo(0);

end;[/cbox]

Share this post


Link to post
Share on other sites
  • 0

 

is this correct?

prontera,165,177,3	script	PVP Warper	106,{if (!(agitcheck() || agitcheck2())){	if (select("Yes!","No thanks.") == 2) close;		warp "pvp_y_1-2",0,0;		announce strcharinfo(0) + " has entered the PVP Room.",0;		}	end;}

 

Yes. :D

Share this post


Link to post
Share on other sites
  • 0
jpnazar

 

I would do differently, because this way the person can go to @warp command.
prontera,165,177,3	script	PvP Warper	106,{	if ( !agitcheck() || !agitcheck2() )		 if (select("Sim!:Não")) == 2 close;		 warp "pvp_y_1-2",0,0;		announce strcharinfo(0)+"has entered the PvP Room!",0;	end;}
 
I would make an invisible script, would use OnPcLoadMapEvent + Strcharinfo(3) because checking if the player is on the map, then the check can do, there also block the command @warp.
-	script	Checking	-1,{	OnPcLoadMapEvent:		if (strcharinfo(3) == "pvp_y_1-2") {			if (!agitcheck() || !agitcheck2()) end;			warp "prontera",150,150;			dispbottom "War of Emperium Startss!";		}	end;}

 

Share this post


Link to post
Share on other sites
  • 0

 

I would do differently, because this way the person can go to @warp command.

 

You can achieve that by using mapflag.

Share this post


Link to post
Share on other sites
  • 0

 

 

I would do differently, because this way the person can go to @warp command.

 

You can achieve that by using mapflag.

 
Indeed, it has that too. ^^

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

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