jpnazar 0 Posted May 29, 2013 Can i have PVP Warper that disable in WOE Quote Share this post Link to post Share on other sites
0 Joseph 6 Posted May 29, 2013 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;} Quote Share this post Link to post Share on other sites
0 jpnazar 0 Posted May 29, 2013 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 Quote Share this post Link to post Share on other sites
0 Joseph 6 Posted May 29, 2013 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;} Quote Share this post Link to post Share on other sites
0 jpnazar 0 Posted May 29, 2013 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 Quote Share this post Link to post Share on other sites
0 Phoenix 0 Posted May 29, 2013 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! Quote Share this post Link to post Share on other sites
0 jpnazar 0 Posted May 29, 2013 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;} Quote Share this post Link to post Share on other sites
0 Phoenix 0 Posted May 29, 2013 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] Quote Share this post Link to post Share on other sites
0 Joseph 6 Posted May 29, 2013 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. Quote Share this post Link to post Share on other sites
0 Senos 54 Posted June 17, 2013 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;} Quote Share this post Link to post Share on other sites
0 Joseph 6 Posted June 17, 2013 I would do differently, because this way the person can go to @warp command. You can achieve that by using mapflag. Quote Share this post Link to post Share on other sites
0 Senos 54 Posted June 19, 2013 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. ^^ Quote Share this post Link to post Share on other sites
Can i have PVP Warper that disable in WOE
Share this post
Link to post
Share on other sites