Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Request # 3
- // VP ROOM the use of pvp_y_room
- // PVP ROOM # 1 - Guild Vs Guild "The room should have a chat room saying that." Use Prontera for this
- // PVP ROOM # 2 - Last Man Standing"The room should have a chat room saying that." Use guild_vs2 for this
- // PVP ROOM # 3 - Baby PVP - Make this ONLY Baby can enter."The room should have a chat room saying that." Use Izlude for this
- // Please use the flags as the NPC for each one
- // GVG Room
- pvp_y_room,40,42,4 script PVP Room#1 722,{
- if( getcharid(2) ){
- if( select("Enter GVG","Cancel") == 1 )
- warp "pvp_y_1-1",0,0;
- }else{
- mes "You dont have a guild.";
- }
- close;
- OnInit:
- waitingroom "Guild vs Guild",0;
- end;
- }
- pvp_y_1-1 mapflag GVG
- pvp_y_room,44,42,4 script PVP Room#2 722,{
- if( select("Enter Last Man Standing","Cancel") == 1 ){
- warp "guild_vs2",0,0;
- }
- close;
- OnInit:
- waitingroom "Last Man Standing",0;
- end;
- }
- guild_vs2 mapflag PVP
- pvp_y_room,49,42,4 script PVP Room#3 722,{
- if( eaclass() & EAJL_BABY ){
- if( select("Enter Baby PVP","Cancel") == 1 )
- warp "pvp_y_1-2",0,0;
- }else{
- mes "You are not baby class";
- }
- close;
- OnInit:
- waitingroom "Last Man Standing",0;
- end;
- }
- pvp_y_1-2 mapflag PVP
Advertisement
Add Comment
Please, Sign In to add comment