Jump to content
  • 0

Any decent PvP Warper?


magicman

Question


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.01
  • Content Count:  51
  • Reputation:   0
  • Joined:  04/12/13
  • Last Seen:  

I noticed there is no PvP warper included in the standard rA configuration.

Which PvP warper is the most widely used one?

Is there one specific kind everybody uses?

 

Cheers,

 

magicman

Link to comment
Share on other sites

6 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  69
  • Reputation:   3
  • Joined:  09/04/14
  • Last Seen:  

rAthena doesn't have any pvp warper by default but at the board you can download a lot of pvp warper or else you can create it by yourself. Its very easy if you dont need some special things.

map,x,y,4	script	PvP Warper    411,{

set .@mes$,"[^777777PvP Warper^000000]";

mes .@mes$;
switch(select("Room 1","Room 2","Room 3","Cancel")){
	case 1:
		close2;
		warp "pvp_y_1-1",119,84;
		end;

	case 2:
		close2;
		warp "pvp_y_1-2",119,84;
		end;

	case 3:
		close2;
		warp "pvp_y_1-3",119,84;
		end;

	case 4:
		close;
}
}

I hope it can help you a lot.

 

Best regards,

Garkor

Edited by Garkor
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.01
  • Content Count:  51
  • Reputation:   0
  • Joined:  04/12/13
  • Last Seen:  

Wrong synthax and doesn't show up...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  50
  • Reputation:   4
  • Joined:  12/12/13
  • Last Seen:  


  • Group:  Members
  • Topic Count:  21
  • Topics Per Day:  0.01
  • Content Count:  51
  • Reputation:   0
  • Joined:  04/12/13
  • Last Seen:  

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  283
  • Reputation:   31
  • Joined:  07/08/14
  • Last Seen:  

prontera,155,155,4	script	PvP Warper	411,{

set .@mes$,"[^777777PvP Warper^000000]";

mes .@mes$;
switch(select("Room 1","Room 2","Room 3","Cancel")){
	case 1:
		close2;
		warp "pvp_y_1-1",119,84;
		end;

	case 2:
		close2;
		warp "pvp_y_1-2",119,84;
		end;

	case 3:
		close2;
		warp "pvp_y_1-3",119,84;
		end;

	case 4:
		close;
}
}

It's just a tab error.

 

But this is really basic, not very funny..

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  50
  • Reputation:   4
  • Joined:  12/12/13
  • Last Seen:  


prontera,165,197,3 script PvP Warper 97,{

mes "[PvP Warper]";

mes "Hello, Would you like to PvP?.";

menu "Bring it on!",L_Yes,"No Thanks.",L_No;

L_Yes:

mes "[PvP Warper]";

mes "Which PvP Arena do you want to enter?";

menu "PvP Arena 1 [" + getmapusers("guild_vs3") + " / 50]",L1,

"PvP Arena 2 [" + getmapusers("guild_vs5") + " / 50]",L2,

"PvP Free For All [" + getmapusers("pvp_y_1-2") + " / 50]",L3;

L1:

if (getmapusers("guild_vs3") > 49) goto Lsorry;

warp "guild_vs3",0,0;

close;

L2:

if (getmapusers("guild_vs5") > 49) goto Lsorry;

warp "guild_vs5",0,0;

close;

L3:

if (getmapusers("pvp_y_1-2") > 49) goto Lsorry;

warp "pvp_y_1-2",0,0;

close;

Lsorry:

mes "[PvP Warper]";

mes "Sorry but this PvP Arena is full, maybe you could try another one.";

close;

L_No:

close2;

OnInit:

delwaitingroom;

waitingroom "PvP Warper",0;

}

//mapflags

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