Jump to content
  • 0

Question

Posted

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

6 answers to this question

Recommended Posts

Posted (edited)

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

Posted


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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...