Jump to content
  • 0

pvp gvg problem


anginputih

Question


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  81
  • Reputation:   1
  • Joined:  01/06/12
  • Last Seen:  

//----------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 by Euphy
Codeboxed
Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  72
  • Topics Per Day:  0.02
  • Content Count:  2997
  • Reputation:   1130
  • Joined:  05/27/12
  • Last Seen:  

map_name <tab> mapflag <tab> nodrop

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...