anginputih Posted July 3, 2012 Posted July 3, 2012 (edited) //----------Prontera vending------------------- // created by Akbar'e // [url="http://akbar.rocrew.com"]http://akbar.rocrew.com[/url] // not steal and alway show my credits //-------------------------------------------- pvp_y_8-2 mapflag pvp pvp_y_8-2 mapflag pvp_noguild pvp_y_8-2 mapflag nocommand 1 pvp_y_8-2 mapflag nomemo pvp_y_8-2 mapflag nosave SavePoint pvp_y_8-2 mapflag noteleport pvp_y_8-2 mapflag nowarp pvp_y_8-2 mapflag nowarpto pvp_y_8-2 mapflag nomvploot pvp_y_8-2 mapflag nobranch //============================================================ amatsu,210,105,4 script PvP room 65,{ set .@mapcount_1,getmapusers("pvp_n_1-3"); set .@mapcount_2,getmapusers("pvp_y_8-2"); set .@mapcount_3,getmapusers("pvp_n_2-3"); while(1) { switch(select("PvP 1 [ "+.@mapcount_1+" / 128 ]:Izlude [ "+.@mapcount_2+" / 128 ]:PvP 3 [ "+.@mapcount_3+" / 128 ]:Cancel")) { case 1: callsub S_CheckPVPRoom,@mapcount_1,"pvp_n_1-3"; break; case 2: callsub S_CheckPVPRoom,@mapcount_2,"pvp_y_8-2"; break; case 3: callsub S_CheckPVPRoom,@mapcount_2,"pvp_n_2-3"; break; case 4: close; } } S_CheckPVPRoom: if (getarg(0) >= 128) { mes "[PvP Arena]"; mes "Map penuh boss"; next; return; } else { warp getarg(1),0,0; end; } } //============================================================ amatsu,213,105,4 script GvG room 105,{ set .@mapcount_1,getmapusers("guild_vs1"); set .@mapcount_2,getmapusers("guild_vs2"); while(1) { switch(select("Room 1 [ "+.@mapcount_1+" / 128 ]:Room 2 [ "+.@mapcount_2+" / 128 ]:Cancel")) { case 1: callsub S_CheckPVPRoom,@mapcount_1,"guild_vs1"; break; case 2: callsub S_CheckPVPRoom,@mapcount_2,"guild_vs2"; break; break; case 3: close; } } S_CheckPVPRoom: if (getarg(0) >= 128) { mes "[GvG Arena]"; mes "Map penuh boss"; next; return; } else { warp getarg(1),0,0; end; } } help me how to make player not to drop items when player pvp Edited July 3, 2012 by Euphy Codeboxed Quote
Question
anginputih
help me
how to make player not to drop items
when player pvp
Edited by EuphyCodeboxed
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.