Can i have PVP Warper that disable in WOE

Code:
map,x,y,z	script	PvP Warper	100,{	if (!(agitcheck() || agitcheck2()))		warp "pvp map",0,0;			end;}
Code:
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;}
 
Last edited by a moderator:
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

 
Last edited by a moderator:
Code:
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;}
 
Last edited by a moderator:
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

 
nice Support boss 

Joseph
map,x,y,z script PvP Warper 100,{ if (!(agitcheck() || agitcheck2())) warp "pvp map",0,0; end;}
Code:
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;}
Code:
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!

 
is this correct?

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

 
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.
default_biggrin.png


 
jpnazar
I would do differently, because this way the person can go to @warp command.
Code:
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.
Code:
-	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;}
 
Back
Top