Jump to content
  • 0

Does somebody can make an mvp room like this?


eboni001

Question


  • Group:  Members
  • Topic Count:  79
  • Topics Per Day:  0.02
  • Content Count:  327
  • Reputation:   4
  • Joined:  06/22/13
  • Last Seen:  

Hello guys, if somebody can help me with this script please, what i want is a mvp room mid rates style, i wish to use the same maps as regular mvp room, ( pvp_n_ ) but what i want is people have to talk with the npc to summon the mvp, and will not be free, i want to add the same mvp's too, (eddga,mistress,maya,turtle general,baphomet,etc.) i want the npc have this options:

 

- Summon MvP

- Heal me please

- Leave mvp room

 

- Summon Mvp (Which mvp would you like i summon for you?) i want each npc on each room can summon diferents mvp,

 

Example for all npc by rooms:

 

all npc in each floor of Alpha room can summon this mvp's:

Alpha Room: Eddga, Misstress, Moonlight Flower, Maya.

 

all npc in each floor of Beta room can summon this mvp's:

Beta Room: Phreeoni, Turtle General, Orc Hero, Orc Lord.

 

all npc in each floor of Theta room can summon this mvp's:

Theta Room: Drake, Osiris, Doppleganger, Lord of Death.

 

all npc in each floor of Epsilon room can summon this mvp's:

Epsilon Room: Incantation Samurai, Pharaoh, Baphomet, Dark Lord.

 

List of mvp's and price example for Betha Room:

npc talk: Ok, this are the mvp i can summon and their respectives prices.

Phreeoni - $3,000,000

Orc lord - $5,000,000

Orc Hero - $7,000,000

Turtle General - $10,000,000

I'll be back later, thank you.

 

(If possible please i wish, each room is private but free of charges to enter, you have to set a password to enter, if somebody input the same password it can enter too).

 

- Heal price = ($1m zeny)

 

- Leave (warp to prontera 156, 179)

 

Please somebody help me with this script ^_^ it will be very helpfull.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  318
  • Reputation:   54
  • Joined:  12/23/12
  • Last Seen:  

If you can give me the map warps for each location you want the duplicate npc's then I would be happy to make this for you.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  79
  • Topics Per Day:  0.02
  • Content Count:  327
  • Reputation:   4
  • Joined:  06/22/13
  • Last Seen:  

If you can give me the map warps for each location you want the duplicate npc's then I would be happy to make this for you.

 

ok this npc's will be located on each room like this: (these are the warpers to each room by floor and the npc helper in each room, here i want to add you have to set a password to enter, if somebody is in the room, you can enter only if you have the password, but, if room detect no one is inside the password will be reset)

// ---- MVP ARENA!!!!!! By Darkchild with 16 diff MVP's inside
// -- Optimised The MVP arena!!!! By massdriller
// - NPC in prontera

// --- Optimising Functions

function	script	Ramvp_1	{

	mes "[ ^0065DFAlpha MVP^000000 ]";
		mes "Here you go!";
			return;
}

function	script	Ramvp_2	{

	mes "[ ^0065DFBeta MVP^000000 ]";
		mes "Here you go!";
			return;
}

function	script	Ramvp_3	{

	mes "[ ^0065DFTheta MVP^000000 ]";
		mes "Here you go!";
			return;

}


function	script	Ramvp_4	{

	mes "[ ^0065DFEpsilon MVP^000000 ]";
		mes "Here you go!";
			return;

}

function	script	Ramvp_M	{

	mes "How do you need help?.";
	menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;

	L_Next:
		return;

	L_Heal:
		percentheal 100,100;
		close;

	L_Leave:
		warp "prontera",156,179;
		close;

}

function	script	Ramvp_M2	{

	mes "How do you need help?.";
	menu "Heal Please",L_Heal,"Leave",L_Leave;

	L_Heal:
		percentheal 100,100;
		close;

	L_Leave:
		warp "prontera",156,179;
		close;

}

each room have 8 floors:  Alpha: pvp_n_1-2 to 8-2, Beta: pvp_n_1-3 to 8-3, Theta: pvp_n_1-4 to 8-4, Epsilon: pvp_n_1-5 to 8-5 , each npc is located on 100, 100 of each room (example: pvp_n_1-2 ,100, 100)

 

if you need, this is the script of the warper in towns, to enter the room where the each room warpers are.

// ---- MVP ARENA!!!!!! By Darkchild with 16 diff MVP's inside
// -- Optimised The MVP arena!!!! By massdriller
// - NPC in prontera
// - Removed Duplicates [Silent]

prontera,158,188,3	script	MVP Warper#1::mvp	768,{

	mes "[ ^0065DFMVP Warper^000000 ]";
	mes "Would you like to go to the MVP Arena ?...";

	if (select("Yes!","No thanks.") == 2)
		close;

	close2;
	warp "quiz_00",50,24;
	end;
}


// --- Inside the Arena
// --- NPC's That explains thigns
quiz_00,49,31,4	script	MVP Arena Guide	778,{

	switch(select("Intro","I want to go back","Heal me please","Cancel"))
	{
	case 1:
		mes "[ ^0065DFMVP Arena Guide^000000 ]";
		mes "Welcome and behold this sacred place, Here you will find out if you truly have what it takes to call yourself a warrior, and a Team mate.";
		next;
		mes "Here in [ ^0065DFSvRO^000000 ] we like to be a family, and as a family you learn you must help and assist one-another, so if you want to survive you should learn to Co-operate.";
		next;
		mes "There are Plenty of rooms with MVP's in them so don't all fight over the one room just cause you think it's the only one, just move to the next one.";
		next;
		mes "If you can't get along, and there is too much complaining about people stealing MVP kills and items... then this place will be removed.";
		next;
		mes "Now the npc's are in groups of monsters, there are 4 different mvps per each npc, i won't tell you which it's a surprise hehe.";
		next;
		mes "Good luck, Live long and Prosper!.";
		close;
	break;
	case 2:
		close2;
		warp "prontera",156,179;
		end;
	break;
	case 3:
		percentheal 100,100;
		close;
	break;
	case 4:
		close;
	break;
	}
	close;
}

// --- The first Alpha-MVP warper
quiz_00,56,31,4	script	Alpha MVP	770,{
	mes "[ ^0065DFAlpha MVP^000000 ]";
	mes "I am the first Keeper, are you ready?.";
	if (select("Yes!","Urrr No.") == 2)
		close;

	mes "[ ^0065DFAlpha MVP^000000 ]";
	mes "Which Arena you want to go to??";
	menu
	"Arena 1 [" + getmapusers("pvp_n_1-2") + " / 50]",Larena1,
	"Arena 2 [" + getmapusers("pvp_n_2-2") + " / 50]",Larena2,
	"Arena 3 [" + getmapusers("pvp_n_3-2") + " / 15]",Larena3,
	"Arena 4 [" + getmapusers("pvp_n_4-2") + " / 15]",Larena4,
	"Arena 5 [" + getmapusers("pvp_n_5-2") + " / 15]",Larena5,
	"Arena 6 [" + getmapusers("pvp_n_6-2") + " / 15]",Larena6,
	"Arena 7 [" + getmapusers("pvp_n_7-2") + " / 15]",Larena7,
	"Arena 8 [" + getmapusers("pvp_n_8-2") + " / 15]",Larena8,
	"Quit",Lcancel;

Lcancel:
	close;

Larena1:
	if (getmapusers("pvp_n_1-2") > 49) goto Lsorry;
	callfunc "Ramvp_1";
	warp "pvp_n_1-2",102,102;
	close;

Larena2:
	if (getmapusers("pvp_n_2-2") > 49) goto Lsorry;
	callfunc "Ramvp_1";
	warp "pvp_n_2-2",102,102;
	close;

Larena3:
	if (getmapusers("pvp_n_3-2") > 14) goto Lsorry;
	callfunc "Ramvp_1";
	warp "pvp_n_3-2",102,102;
	close;

Larena4:
	if (getmapusers("pvp_n_4-2") > 14) goto Lsorry;
	callfunc "Ramvp_1";
	warp "pvp_n_4-2",102,102;
	close; 

Larena5:
	if (getmapusers("pvp_n_5-2") > 14) goto Lsorry;
	callfunc "Ramvp_1";
	warp "pvp_n_5-2",102,102;
	close;

Larena6:
	if (getmapusers("pvp_n_6-2") > 14) goto Lsorry;
	callfunc "Ramvp_1";
	warp "pvp_n_6-2",102,102;
	close;

Larena7:
	if (getmapusers("pvp_n_7-2") > 14) goto Lsorry;
	callfunc "Ramvp_1";
	warp "pvp_n_7-2",102,102;
	close;

Larena8:
	if (getmapusers("pvp_n_8-2") > 14) goto Lsorry;
	callfunc "Ramvp_1";
	warp "pvp_n_8-2",102,102;
	close;

Lsorry:
	mes "[ ^0065DFAlpha MVP^000000 ]";
	mes "Sorry but this Arena is already full, maybe you can try another one!";
	close;
}


// --- The first Beta-MVP warper
quiz_00,58,31,4	script	Beta MVP	773,{
	mes "[ ^0065DFAlpha MVP^000000 ]";
	mes "I am the first Keeper, are you ready?.";
	menu "Yes!",L_Yes,"Urrr No.",Lcancel;

L_Yes:
	mes "[ ^0065DFBeta MVP^000000 ]";
	mes "Which Arena you want to go to??";
	menu
	"Arena 1 [" + getmapusers("pvp_n_1-3") + " / 50]",Larena1,
	"Arena 2 [" + getmapusers("pvp_n_2-3") + " / 15]",Larena2,
	"Arena 3 [" + getmapusers("pvp_n_3-3") + " / 15]",Larena3,
	"Arena 4 [" + getmapusers("pvp_n_4-3") + " / 15]",Larena4,
	"Arena 5 [" + getmapusers("pvp_n_5-3") + " / 15]",Larena5,
	"Arena 6 [" + getmapusers("pvp_n_6-3") + " / 15]",Larena6,
	"Arena 7 [" + getmapusers("pvp_n_7-3") + " / 15]",Larena7,
	"Arena 8 [" + getmapusers("pvp_n_8-3") + " / 15]",Larena8,
	"Quit",Lcancel;

Lcancel:
	close;

Larena1:
	if (getmapusers("pvp_n_1-3") > 49) goto Lsorry;
	callfunc "Ramvp_2";
	warp "pvp_n_1-3",102,102;
	close;

Larena2:
	if (getmapusers("pvp_n_2-3") > 14) goto Lsorry;
	callfunc "Ramvp_2";
	warp "pvp_n_2-3",102,102;
	close;

Larena3:
	if (getmapusers("pvp_n_3-3") > 14) goto Lsorry;
	callfunc "Ramvp_2";
	warp "pvp_n_3-3",102,102;
	close;

Larena4:
	if (getmapusers("pvp_n_4-3") > 14) goto Lsorry;
	callfunc "Ramvp_2";
	warp "pvp_n_4-3",102,102;
	close;

Larena5:
	if (getmapusers("pvp_n_5-3") > 14) goto Lsorry;
	callfunc "Ramvp_2";
	warp "pvp_n_5-3",102,102;
	close;

Larena6:
	if (getmapusers("pvp_n_6-3") > 14) goto Lsorry;
	callfunc "Ramvp_2";
	warp "pvp_n_6-3",102,102;
	close;

Larena7:
	if (getmapusers("pvp_n_7-3") > 14) goto Lsorry;
	callfunc "Ramvp_2";
	warp "pvp_n_7-3",102,102;
	close;

Larena8:
	if (getmapusers("pvp_n_8-3") > 14) goto Lsorry;
	callfunc "Ramvp_2";
	warp "pvp_n_8-3",102,102;
	close;

Lsorry:
	mes "[ ^0065DFBeta MVP^000000 ]";
	mes "Sorry but this Arena is already full, maybe you can try another one!";
	close;
}


// --- The first Theta-MVP warper
quiz_00,60,31,4	script	Theta MVP	774,{
	mes "[ ^0065DFTheta MVP^000000 ]";
	mes "I am the first Keeper, are you ready?.";
	menu "Yes!",L_Yes,"Urrr No.",Lcancel;

L_Yes:
	mes "[ ^0065DFTheta MVP^000000 ]";
	mes "Which Arena you want to go to??";
	menu
	"Arena 1 [" + getmapusers("pvp_n_1-4") + " / 50]",Larena1,
	"Arena 2 [" + getmapusers("pvp_n_2-4") + " / 15]",Larena2,
	"Arena 3 [" + getmapusers("pvp_n_3-4") + " / 15]",Larena3,
	"Arena 4 [" + getmapusers("pvp_n_4-4") + " / 15]",Larena4,
	"Arena 5 [" + getmapusers("pvp_n_5-4") + " / 15]",Larena5,
	"Arena 6 [" + getmapusers("pvp_n_6-4") + " / 15]",Larena6,
	"Arena 7 [" + getmapusers("pvp_n_7-4") + " / 15]",Larena7,
	"Arena 8 [" + getmapusers("pvp_n_8-4") + " / 15]",Larena8,
	"Quit",Lcancel;

Lcancel:
	close;

Larena1:
	if (getmapusers("pvp_n_1-4") > 49) goto Lsorry;
	callfunc "Ramvp_3";
	warp "pvp_n_1-4",102,102;
	close;

Larena2:
	if (getmapusers("pvp_n_2-4") > 14) goto Lsorry;
	callfunc "Ramvp_3";
	warp "pvp_n_2-4",102,102;
	close;

Larena3:
	if (getmapusers("pvp_n_3-4") > 14) goto Lsorry;
	callfunc "Ramvp_3";
	warp "pvp_n_3-4",102,102;
	close;

Larena4:
	if (getmapusers("pvp_n_4-4") > 14) goto Lsorry;
	mes "[ ^0065DFTheta MVP^000000 ]";
	mes "Here you go!";
	warp "pvp_n_4-4",102,102;
	close;

Larena5:
	if (getmapusers("pvp_n_5-4") > 14) goto Lsorry;
	callfunc "Ramvp_3";
	warp "pvp_n_5-4",102,102;
	close;

Larena6:
	if (getmapusers("pvp_n_6-4") > 14) goto Lsorry;
	callfunc "Ramvp_3";
	warp "pvp_n_6-4",102,102;
	close;

Larena7:
	if (getmapusers("pvp_n_7-4") > 14) goto Lsorry;
	callfunc "Ramvp_3";
	warp "pvp_n_7-4",102,102;
	close;

Larena8:
	if (getmapusers("pvp_n_8-4") > 14) goto Lsorry;
	callfunc "Ramvp_3";
	warp "pvp_n_8-4",102,102;
	close;

Lsorry:
	mes "[ ^0065DFTheta MVP^000000 ]";
	mes "Sorry but this Arena is already full, maybe you can try another one!";
	close;
}


// --- The first Epsilon-MVP warper
quiz_00,62,31,4	script	Epsilon MVP	776,{
	mes "[ ^0065DFEpsilon MVP^000000 ]";
	mes "I am the first Keeper, are you ready?.";
	menu "Yes!",L_Yes,"Urrr No.",Lcancel;

L_Yes:
	mes "[ ^0065DFEpsilon MVP^000000 ]";
	mes "Which Arena you want to go to??";
	menu
	"Arena 1 [" + getmapusers("pvp_n_1-5") + " / 50]",Larena1,
	"Arena 2 [" + getmapusers("pvp_n_2-5") + " / 15]",Larena2,
	"Arena 3 [" + getmapusers("pvp_n_3-5") + " / 15]",Larena3,
	"Arena 4 [" + getmapusers("pvp_n_4-5") + " / 15]",Larena4,
	"Arena 5 [" + getmapusers("pvp_n_5-5") + " / 15]",Larena5,
	"Arena 6 [" + getmapusers("pvp_n_6-5") + " / 15]",Larena6,
	"Arena 7 [" + getmapusers("pvp_n_7-5") + " / 15]",Larena7,
	"Arena 8 [" + getmapusers("pvp_n_8-5") + " / 15]",Larena8,
	"Quit",Lcancel;

Lcancel:
	close;

Larena1:
	if (getmapusers("pvp_n_1-5") > 49) goto Lsorry;
	callfunc "Ramvp_4";
	warp "pvp_n_1-5",102,102;
	close;

Larena2:
	if (getmapusers("pvp_n_2-5") > 14) goto Lsorry;
	callfunc "Ramvp_4";
	warp "pvp_n_2-5",102,102;
	close;

Larena3:
	if (getmapusers("pvp_n_3-5") > 14) goto Lsorry;
	callfunc "Ramvp_4";
	warp "pvp_n_3-5",102,102;
	close;

Larena4:
	if (getmapusers("pvp_n_4-5") > 14) goto Lsorry;
	callfunc "Ramvp_4";
	warp "pvp_n_4-5",102,102;
	close;

Larena5:
	if (getmapusers("pvp_n_5-5") > 14) goto Lsorry;
	callfunc "Ramvp_4";
	warp "pvp_n_5-5",102,102;
	close;

Larena6:
	if (getmapusers("pvp_n_6-5") > 14) goto Lsorry;
	callfunc "Ramvp_4";
	warp "pvp_n_6-5",102,102;
	close;

Larena7:
	if (getmapusers("pvp_n_7-5") > 14) goto Lsorry;
	callfunc "Ramvp_4";
	warp "pvp_n_7-5",102,102;
	close;

Larena8:
	if (getmapusers("pvp_n_8-5") > 14) goto Lsorry;
	callfunc "Ramvp_4";
	warp "pvp_n_8-5",102,102;
	close;

Lsorry:
	mes "[ ^0065DFEpsilon MVP^000000 ]";
	mes "Sorry but this Arena is already full, maybe you can try another one!";
	close;
}


// ---- Inside MVP-Arena NPC's
// --- Alpha-MVP #1
pvp_n_1-2,100,100,4	script	MVP-Protector#01	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_2-2",102,102;
	close;

}
// --- Alpha-MVP #2
pvp_n_2-2,100,100,4	script	MVP-Protector#02	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_3-2",102,102;
	close;

}
// --- Alpha-MVP #3
pvp_n_3-2,100,100,4	script	MVP-Protector#03	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_4-2",102,102;
	close;

}
// --- Alpha-MVP #4
pvp_n_4-2,100,100,4	script	MVP-Protector#04	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_5-2",102,102;
	close;

}
// --- Alpha-MVP #5
pvp_n_5-2,100,100,4	script	MVP-Protector#05	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_6-2",102,102;
	close;

}
// --- Alpha-MVP #6
pvp_n_6-2,100,100,4	script	MVP-Protector#06	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_7-2",102,102;
	close;

}
// --- Alpha-MVP #7
pvp_n_7-2,100,100,4	script	MVP-Protector#07	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_8-2",102,102;
	close;
}
// --- Alpha-MVP #8
pvp_n_8-2,100,100,4	script	MVP-Protector#08	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M2";
}

// --- Beta-MVP #1
pvp_n_1-3,100,100,4	script	MVP-Protector#09	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_2-3",102,102;
	close;
}
// --- Beta-MVP #2
pvp_n_2-3,100,100,4	script	MVP-Protector#10	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_3-3",102,102;
	close;
}
// --- Beta-MVP #3
pvp_n_3-3,100,100,4	script	MVP-Protector#11	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_4-3",102,102;
	close;
}
// --- Beta-MVP #4
pvp_n_4-3,100,100,4	script	MVP-Protector#12	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_5-3",102,102;
	close;
}
// --- Beta-MVP #5
pvp_n_5-3,100,100,4	script	MVP-Protector#13	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_6-3",102,102;
	close;
}
// --- Beta-MVP #6
pvp_n_6-3,100,100,4	script	MVP-Protector#14	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_7-3",102,102;
	close;
}
// --- Beta-MVP #7
pvp_n_7-3,100,100,4	script	MVP-Protector#15	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_8-3",102,102;
	close;
}
// --- Beta-MVP #8
pvp_n_8-3,100,100,4	script	MVP-Protector#16	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M2";
}

// --- Theta-MVP #1
pvp_n_1-4,100,100,4	script	MVP-Protector#17	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_2-4",102,102;
	close;
}

// --- Theta-MVP #2
pvp_n_2-4,100,100,4	script	MVP-Protector#18	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_3-4",102,102;
	close;
}
// --- Theta-MVP #3
pvp_n_3-4,100,100,4	script	MVP-Protector#19	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_4-4",102,102;
	close;
}
// --- Theta-MVP #4
pvp_n_4-4,100,100,4	script	MVP-Protector#20	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_5-4",102,102;
	close;
}
// --- Theta-MVP #5
pvp_n_5-4,100,100,4	script	MVP-Protector#21	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_6-4",102,102;
	close;
}
// --- Theta-MVP #6
pvp_n_6-4,100,100,4	script	MVP-Protector#22	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_7-4",102,102;
	close;
}
// --- Theta-MVP #7
pvp_n_7-4,100,100,4	script	MVP-Protector#23	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_8-4",102,102;
	close;
}
// --- Theta-MVP #8
pvp_n_8-4,100,100,4	script	MVP-Protector#24	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M2";
}

// --- Epsilon-MVP #1
pvp_n_1-5,100,100,4	script	MVP-Protector#25	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_2-5",102,102;
	close;
}

// --- Epsilon-MVP #2
pvp_n_2-5,100,100,4	script	MVP-Protector#26	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_3-5",102,102;
	close;
}
// --- Epsilon-MVP #3
pvp_n_3-5,100,100,4	script	MVP-Protector#27	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_4-5",102,102;
	close;
}
// --- Epsilon-MVP #4
pvp_n_4-5,100,100,4	script	MVP-Protector#28	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_5-5",102,102;
	close;
}
// --- Epsilon-MVP #5
pvp_n_5-5,100,100,4	script	MVP-Protector#29	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_6-5",102,102;
	close;
}
// --- Epsilon-MVP #6
pvp_n_6-5,100,100,4	script	MVP-Protector#30	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_7-5",102,102;
	close;
}
// --- Epsilon-MVP #7
pvp_n_7-5,100,100,4	script	MVP-Protector#31	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M";

L_Next:
	warp "pvp_n_8-5",102,102;
	close;
}
// --- Epsilon-MVP #8
pvp_n_8-5,100,100,4	script	MVP-Protector#32	727,{
	mes "[ ^0065DFMVP-Protector^000000 ]";
	callfunc "Ramvp_M2";
}

// ---- Monsters for the MVP-Arena
// --- Alpha-MVP Maps
// --- First Alpha-MVP area
pvp_n_1-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_1-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
// --- Second Alpha-MVP area
pvp_n_2-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_2-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
// --- Third Alpha-MVP area
pvp_n_3-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
pvp_n_3-2,0,0,0,0	monster	Moonlight	1150,2,60000,66000
pvp_n_3-2,0,0,0,0	monster	Maya	1147,1,60000,66000
// --- Fourth Alpha-MVP area
pvp_n_4-2,0,0,0,0	monster	Eddga	1115,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Maya	1147,1,60000,66000
// --- Fifth Alpha-MVP area
pvp_n_5-2,0,0,0,0	monster	Eddga	1115,1,60000,66000
pvp_n_5-2,0,0,0,0	monster	Mistress	1059,2,60000,66000
pvp_n_5-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_5-2,0,0,0,0	monster	Maya	1147,2,60000,66000
// --- Sixth Alpha-MVP area
pvp_n_6-2,0,0,0,0	monster	Eddga	1115,2,60000,66000
pvp_n_6-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_6-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_6-2,0,0,0,0	monster	Maya	1147,2,60000,66000
// --- Seventh Alpha-MVP area
pvp_n_7-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_7-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_7-2,0,0,0,0	monster	Moonlight	1150,2,60000,66000
pvp_n_7-2,0,0,0,0	monster	Maya	1147,2,60000,66000
// --- Eighth Alpha-MVP area
pvp_n_8-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Moonlight	1150,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Maya	1147,3,60000,66000

// --- Beta-MVP Maps
// --- First Beta-MVP area
pvp_n_1-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_1-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
// --- Second Beta-MVP area
pvp_n_2-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_3-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_2-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
// --- Third Beta-MVP area
pvp_n_3-3,0,0,0,0	monster	Phreeoni	1159,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
// --- Fourth Beta-MVP area
pvp_n_4-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_4-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_4-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
pvp_n_4-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
// --- Fifth Beta-MVP area
pvp_n_5-3,0,0,0,0	monster	Phreeoni	1159,1,60000,66000
pvp_n_5-3,0,0,0,0	monster	Turtle General	1312,2,60000,66000
pvp_n_5-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_5-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
// --- Sixth Beta-MVP area
pvp_n_6-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_6-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_6-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_6-3,0,0,0,0	monster	Orc Lord	1190,2,60000,66000
// --- Seventh Beta-MVP area
pvp_n_7-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_7-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_7-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_7-3,0,0,0,0	monster	Orc Lord	1190,3,60000,66000
// --- Eighth Beta-MVP area
pvp_n_8-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Turtle General	1312,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Orc Hero	1087,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Orc Lord	1190,3,60000,66000

// --- Theta-MVP Maps
// --- First Theta-MVP area
pvp_n_1-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_1-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
// --- Second Theta-MVP area
pvp_n_2-4,0,0,0,0	monster	Drake	1112,2,60000,66000
pvp_n_2-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_2-4,0,0,0,0	monster	Doppelganger	1046,1,60000,66000
// --- Third Theta-MVP area
pvp_n_3-4,0,0,0,0	monster	Drake	1112,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Doppelganger	1046,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
// --- Fourth Theta-MVP area
pvp_n_4-4,0,0,0,0	monster	Drake	1112,2,60000,66000
pvp_n_4-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_4-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_4-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
// --- Fifth Theta-MVP area
pvp_n_5-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_5-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_5-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_5-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
// --- Sixth Theta-MVP area
pvp_n_6-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_6-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_6-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_6-4,0,0,0,0	monster	Lord of Death	1373,2,60000,66000
// --- Seventh Theta-MVP area
pvp_n_7-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_7-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_7-4,0,0,0,0	monster	Doppelganger	1046,3,60000,66000
pvp_n_7-4,0,0,0,0	monster	Lord of Death	1373,2,60000,66000
// --- Eighth Theta-MVP area
pvp_n_8-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Osiris	1038,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Doppelganger	1046,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Lord of Death	1373,3,60000,66000

// --- Epsilon-MVP Maps
// --- First Epsilon-MVP area
pvp_n_1-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
pvp_n_1-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
// --- First Epsilon-MVP area
pvp_n_2-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_2-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_2-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
// --- First Epsilon-MVP area
pvp_n_3-5,0,0,0,0	monster	Incantation Samurai	1492,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
// --- First Epsilon-MVP area
pvp_n_4-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
pvp_n_4-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_4-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
pvp_n_4-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
// --- First Epsilon-MVP area
pvp_n_5-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
// --- First Epsilon-MVP area
pvp_n_6-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
// --- First Epsilon-MVP area
pvp_n_7-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Baphomet	1039,2,60000,66000
// --- First Epsilon-MVP area
pvp_n_8-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
pvp_n_8-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_8-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_8-5,0,0,0,0	monster	Baphomet	1039,2,60000,66000


pvp_n_1-2	mapflag	nowarp
pvp_n_2-2	mapflag	nowarp
pvp_n_3-2	mapflag	nowarp
pvp_n_4-2	mapflag	nowarp
pvp_n_5-2	mapflag	nowarp
pvp_n_6-2	mapflag	nowarp
pvp_n_7-2	mapflag	nowarp
pvp_n_8-2	mapflag	nowarp
pvp_n_1-3	mapflag	nowarp
pvp_n_2-3	mapflag	nowarp
pvp_n_3-3	mapflag	nowarp
pvp_n_4-3	mapflag	nowarp
pvp_n_5-3	mapflag	nowarp
pvp_n_6-3	mapflag	nowarp
pvp_n_7-3	mapflag	nowarp
pvp_n_8-3	mapflag	nowarp
pvp_n_1-4	mapflag	nowarp
pvp_n_2-4	mapflag	nowarp
pvp_n_3-4	mapflag	nowarp
pvp_n_4-4	mapflag	nowarp
pvp_n_5-4	mapflag	nowarp
pvp_n_6-4	mapflag	nowarp
pvp_n_7-4	mapflag	nowarp
pvp_n_8-4	mapflag	nowarp
pvp_n_1-5	mapflag	nowarp
pvp_n_2-5	mapflag	nowarp
pvp_n_3-5	mapflag	nowarp
pvp_n_4-5	mapflag	nowarp
pvp_n_5-5	mapflag	nowarp
pvp_n_6-5	mapflag	nowarp
pvp_n_7-5	mapflag	nowarp
pvp_n_8-5	mapflag	nowarp

pvp_n_1-2	mapflag	noteleport
pvp_n_2-2	mapflag	noteleport
pvp_n_3-2	mapflag	noteleport
pvp_n_4-2	mapflag	noteleport
pvp_n_5-2	mapflag	noteleport
pvp_n_6-2	mapflag	noteleport
pvp_n_7-2	mapflag	noteleport
pvp_n_8-2	mapflag	noteleport
pvp_n_1-3	mapflag	noteleport
pvp_n_2-3	mapflag	noteleport
pvp_n_3-3	mapflag	noteleport
pvp_n_4-3	mapflag	noteleport
pvp_n_5-3	mapflag	noteleport
pvp_n_6-3	mapflag	noteleport
pvp_n_7-3	mapflag	noteleport
pvp_n_8-3	mapflag	noteleport
pvp_n_1-4	mapflag	noteleport
pvp_n_2-4	mapflag	noteleport
pvp_n_3-4	mapflag	noteleport
pvp_n_4-4	mapflag	noteleport
pvp_n_5-4	mapflag	noteleport
pvp_n_6-4	mapflag	noteleport
pvp_n_7-4	mapflag	noteleport
pvp_n_8-4	mapflag	noteleport
pvp_n_1-5	mapflag	noteleport
pvp_n_2-5	mapflag	noteleport
pvp_n_3-5	mapflag	noteleport
pvp_n_4-5	mapflag	noteleport
pvp_n_5-5	mapflag	noteleport
pvp_n_6-5	mapflag	noteleport
pvp_n_7-5	mapflag	noteleport
pvp_n_8-5	mapflag	noteleport

pvp_n_1-2	mapflag	pvp
pvp_n_2-2	mapflag	pvp
pvp_n_3-2	mapflag	pvp
pvp_n_4-2	mapflag	pvp
pvp_n_5-2	mapflag	pvp
pvp_n_6-2	mapflag	pvp
pvp_n_7-2	mapflag	pvp
pvp_n_8-2	mapflag	pvp
pvp_n_1-3	mapflag	pvp
pvp_n_2-3	mapflag	pvp
pvp_n_3-3	mapflag	pvp
pvp_n_4-3	mapflag	pvp
pvp_n_5-3	mapflag	pvp
pvp_n_6-3	mapflag	pvp
pvp_n_7-3	mapflag	pvp
pvp_n_8-3	mapflag	pvp
pvp_n_1-4	mapflag	pvp
pvp_n_2-4	mapflag	pvp
pvp_n_3-4	mapflag	pvp
pvp_n_4-4	mapflag	pvp
pvp_n_5-4	mapflag	pvp
pvp_n_6-4	mapflag	pvp
pvp_n_7-4	mapflag	pvp
pvp_n_8-4	mapflag	pvp
pvp_n_1-5	mapflag	pvp
pvp_n_2-5	mapflag	pvp
pvp_n_3-5	mapflag	pvp
pvp_n_4-5	mapflag	pvp
pvp_n_5-5	mapflag	pvp
pvp_n_6-5	mapflag	pvp
pvp_n_7-5	mapflag	pvp
pvp_n_8-5	mapflag	pvp

pvp_n_1-2	mapflag	nosave
pvp_n_2-2	mapflag	nosave
pvp_n_3-2	mapflag	nosave
pvp_n_4-2	mapflag	nosave
pvp_n_5-2	mapflag	nosave
pvp_n_6-2	mapflag	nosave
pvp_n_7-2	mapflag	nosave
pvp_n_8-2	mapflag	nosave
pvp_n_1-3	mapflag	nosave
pvp_n_2-3	mapflag	nosave
pvp_n_3-3	mapflag	nosave
pvp_n_4-3	mapflag	nosave
pvp_n_5-3	mapflag	nosave
pvp_n_6-3	mapflag	nosave
pvp_n_7-3	mapflag	nosave
pvp_n_8-3	mapflag	nosave
pvp_n_1-4	mapflag	nosave
pvp_n_2-4	mapflag	nosave
pvp_n_3-4	mapflag	nosave
pvp_n_4-4	mapflag	nosave
pvp_n_5-4	mapflag	nosave
pvp_n_6-4	mapflag	nosave
pvp_n_7-4	mapflag	nosave
pvp_n_8-4	mapflag	nosave
pvp_n_1-5	mapflag	nosave
pvp_n_2-5	mapflag	nosave
pvp_n_3-5	mapflag	nosave
pvp_n_4-5	mapflag	nosave
pvp_n_5-5	mapflag	nosave
pvp_n_6-5	mapflag	nosave
pvp_n_7-5	mapflag	nosave
pvp_n_8-5	mapflag	nosave

payon,148,225,6	duplicate(mvp)	MVP Warper#2	768
mall,107,116,3	duplicate(mvp)	MVP Warper#3	768
morocc,143,89,6	duplicate(mvp)	MVP Warper#4	768
lighthalzen,150,102,4	duplicate(mvp)	MVP Warper#5	768

 

This are some pictures to help you:

screen_Kyojin_RO064.jpgscreen_Kyojin_RO067.jpg

screen_Kyojin_RO066.jpg

Edited by eboni001
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  59
  • Reputation:   4
  • Joined:  08/28/13
  • Last Seen:  

Why not using the summon mvp i knew someone already post a working script for that in rA

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  122
  • Reputation:   2
  • Joined:  11/20/11
  • Last Seen:  

[spoiler=Try this one. Made by RIkimaru]

// = Script made by RIKIMARU on rathena.org
// = Profile Link :
// = http://rathena.org/board/user/434-rikimaru/
// = ENJOY THIS SCRIPT!
//===================================================================================
// //=====// /==/ /==/ /==/
// // // /==/ /==/ /=/ /==/
// //=====// /==/ /=/ /==============/ /========/ /==//===/ /==/ /==/
// //=////// /==/ /==//=/ /==/ /==/==/==/==/==/ / / / /==/ /==/ /==/
// // == /==/ /==//=/ /==/ /==/ /==/ /==/ ======/ / /==/ /==/ /==/
// // == /==/ /==/ /=/ /==/ /==/ /==/ /==/ / /===/ / /==/ /==/ /==/
// // == /==/ /==/ /=/ /==/ /==/ /==/ /==/ / /===/ / /==/ /==/=====/==/
// // == /==/ /==/ /=/ /==/ /==/ /==/ /==/ /========/ /==/ /==///////==/
// ================ eAthena Script ==================================================
// ============== Information =======================================================
// = MVP Arena + MVP Arena Warper
// = Made by :
// = Rikimaru
//===== Current Version: ===================================================
//= 1.3
//===== Compatible With: ===================================================
//= eAthena Revision
//===== Description: =======================================================
//= MVP Arena + Warper with the newest MVP's added to the Script
//= LHZ MVP's have a higher cost than normal MVP's,remember that.
//===== Additional Comments: ===============================================
//= 1.0 Finished the Script [Rikimaru]
//= 1.1 Shorted by llchrisll
//= 1.2 Added new MVP'S like Boitata and the new LHZ MVP's [Rikimaru]
//= 1.3 fixed a little Bug in the arrays,which was caused by me. [Rikimaru]
//=========================================================================
//= DO NOT REMOVE MY AND CHRIS CREDITS AND CLAIM OUR WORK AS YOURS
//=========================================================================
prontera,141,181,5 script MVP Warper 100,{
// ================== Settings ============================================
set .@n$,"^0000FF[ MVP Warper ]^000000";
// ============= End of Settings ==========================================
mes .@n$;
mes "I can warp you to the MVP Room,do you want to go there?";
next;
switch(select("Yes!:No!")) {
case 1:
mes .@n$;
mes "Okay I'm going to warp you.";
warp "guild_vs1",50,50;
close;
case 2:
mes .@n$;
mes "Okay bye!";
close;
}
}
//========================= First Script End =============//
//================== MVP Summoner ========================//
guild_vs1,50,57,5 script MVP Summoner 790,{
set .@nsummon$,"^0000FF[ MVP Summoner ]^000000";
mes .@nsummon$;
mes "Hello,I'm able to spawn MVP's.";
mes "Which MVP do you want me to spawn?";
mes "1 MVP costs "+.zeny[1]+" Zeny";
mes "LHZ MVPs and Thanatos have a";
mes "cost of "+.zeny[2]+" Zeny.";
next;
set .@m,select(.smenu$) - 1;
mes .@nsummon$;
mes "Okay let me check if you have enough Zeny.";
if( Zeny < .zeny[.mobze[.@m]] ) {
mes "You don't have enough money";
close;
} else {
close2;
set Zeny, Zeny - .zeny[.mobze[.@m]];
atcommand "@spawn "+.mobid[.@m] + " "+.mobam[.@m];
npctalk "[ MVP Summoner]: "+getmonsterinfo(.mobid[.@m],0) +" Spawned!";
end;
}
OnInit:
setarray .zeny[1],50000000,250000000; // 50m,250m Zeny
// Mob IDs
setarray .mobid[0],1511,1647,1785,1630,1039,1874,2068,1272,1719,1046,1389,1112,1115,1418,1871,1252,1768,1086,1885,1649,1651,1832,1492,1734,1251,1779,1688,1646,1373,1147,1059,1150,1087,1190,1038,1157,1159,1623,1650,1583,1708,1312,1751,1648,1658;
// Mob Spawn Amount
setarray .mobam[0],1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
// Price: Entry as Index from .zeny
// 1 = .zeny[1] - 2 = .zeny[2]
setarray .mobze[0],1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2;
set .smenu$,"";
for( set .@s,0; .@s < getarraysize(.mobid); set .@s,.@s + 1) {
// Skips an Monster if it does not exist in the db
if(getmonsterinfo(.mobid[.@s],0) == "" || getmonsterinfo(.mobid[.@s],0) == "null") continue;
// else adding it to the menu
set .smenu$,.smenu$ + "- "+getmonsterinfo(.mobid[.@s],0) + ( (.mobid[.@s+1] == 0)?"":":");
}
end;
}
guild_vs1,31,68,5 duplicate(MVP Summoner) MVP Summoner#1 790
guild_vs1,31,31,5 duplicate(MVP Summoner) MVP Summoner#2 790
guild_vs1,68,31,5 duplicate(MVP Summoner) MVP Summoner#3 790
guild_vs1,68,68,5 duplicate(MVP Summoner) MVP Summoner#4 790

 

 

Edited by Capuche
Add BBCode
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  72
  • Reputation:   0
  • Joined:  10/28/12
  • Last Seen:  

Bro why don't you use ~AnnieRuRu~'s MVP Summoner and just change the maps from "06guild_01" to wtv lets say "pvp_y_n1-1"?
From what I can understand is that you want a MVP Summoner just like ~AnnieRuRu~'s script but just teh map is different? Plus you have to pay to summon MVP? Yeap. That's ~AnnieRuRu~'s script alright.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  79
  • Topics Per Day:  0.02
  • Content Count:  327
  • Reputation:   4
  • Joined:  06/22/13
  • Last Seen:  

Why not using the summon mvp i knew someone already post a working script for that in rA

 

Bro why don't you use ~AnnieRuRu~'s MVP Summoner and just change the maps from "06guild_01" to wtv lets say "pvp_y_n1-1"?

From what I can understand is that you want a MVP Summoner just like ~AnnieRuRu~'s script but just teh map is different? Plus you have to pay to summon MVP? Yeap. That's ~AnnieRuRu~'s script alright.

OK guys i will try annierurur after try this posted by @Alvins182

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  151
  • Topics Per Day:  0.04
  • Content Count:  393
  • Reputation:   3
  • Joined:  09/16/13
  • Last Seen:  

this one??

// ---- MVP ARENA!!!!!! By Darkchild with 16 diff MVP's inside
// -- Optimised The MVP arena!!!! By massdriller
// - NPC in prontera

// --- Optimising Functions

function	script	Ramvp_1	{

	mes "[ ^0065DFAlpha MVP^000000 ]";
		mes "Here you go!";
			return;
}

function	script	Ramvp_2	{

	mes "[ ^0065DFBeta MVP^000000 ]";
		mes "Here you go!";
			return;
}

function	script	Ramvp_3	{

	mes "[ ^0065DFTheta MVP^000000 ]";
		mes "Here you go!";
			return;

}


function	script	Ramvp_4	{

	mes "[ ^0065DFEpsilon MVP^000000 ]";
		mes "Here you go!";
			return;

}

function	script	Ramvp_M	{

	mes "How do you need help?.";
	menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;

	L_Next:
		return;

	L_Heal:
		percentheal 100,100;
		close;

	L_Leave:
		warp "prontera",156,179;
		close;

}

function	script	Ramvp_M2	{

	mes "How do you need help?.";
	menu "Heal Please",L_Heal,"Leave",L_Leave;

	L_Heal:
		percentheal 100,100;
		close;

	L_Leave:
		warp "prontera",156,179;
		close;

}

and this

//===== rAthena Script =======================================
//= MVP Arena
//===== By: ==================================================
//= Darkchild
//===== Current Version: =====================================
//= 1.4
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
//= Rooms containing 16 different MVPs
//===== Additional Comments: =================================
//= 1.0 - First version of script
//= 1.1 - Optimised The MVP arena [massdriller]
//= 1.2 - NPC in prontera [Silent]
//= 1.3 - Removed Duplicates
//= 1.4 - Optimized, text edited [Euphy]
//============================================================

// Entrance
prontera,168,178,1	script	MVP Warper	768,{
	mes "[ ^0065DFMVP Warper^000000 ]";
	mes "Would you like to enter";
	mes "the MVP Arena?";
	if (select("Yes!","No thanks.") == 2) close;
	warp "quiz_00",50,24;
	close;
}

// Information
quiz_00,49,31,4	script	MVP Arena Guide	778,{
	mes "[ ^0065DFMVP Arena Guide^000000 ]";
	mes "Welcome and behold this sacred place. Here you will find out if you truly have what it takes to call yourself a warrior.";
	next;
	switch(select("Information","Heal me!","Return to Prontera","Cancel")) {
	case 1:
		mes "[ ^0065DFMVP Arena Guide^000000 ]";
		mes "There are four Keepers, and each can spawn four different MVPs.";
		mes "There are eight rooms per Keeper, and sixteen MVPs in total.";
		close;
	case 2:
		specialeffect2 313;
		percentheal 100,100;
		close;
	case 3:
		warp "prontera",156,179;
		close;
	case 4:
		close;
	}
}

// Keepers
function	script	Keeper	{
	mes "[ ^0065DF"+strnpcinfo(1)+"^000000 ]";
	mes "Which arena would you";
	mes "like to enter?";
	set .@menu$,"";
	for(set .@i,1; .@i<9; set .@i,.@i+1)
		set .@menu$, .@menu$+"Arena "+.@i+" ["+getmapusers("pvp_n_"+.@i+"-"+getarg(0))+"/20]:";
	set .@i, select(.@menu$);
	if (getmapusers("pvp_n_"+.@i+"-"+getarg(0))>19) {
		mes "[ ^0065DF"+strnpcinfo(1)+"^000000 ]";
		mes "Sorry, this arena is full!";
		close;
	}
	warp "pvp_n_"+.@i+"-"+getarg(0),102,102;
	close;
}
quiz_00,56,31,4	script	Alpha MVP	770,{ callfunc "Keeper",2; }
quiz_00,58,31,4	script	Beta MVP	773,{ callfunc "Keeper",3; }
quiz_00,60,31,4	script	Theta MVP	774,{ callfunc "Keeper",4; }
quiz_00,62,31,4	script	Epsilon MVP	776,{ callfunc "Keeper",5; }

// Protectors
function	script	Protector	{
	switch(select(""+((getarg(0)=="")?"":"Harder Monsters")+":Heal:Exit")) {
	case 1:
		warp getarg(0),102,102;
		close;
	case 2:
		specialeffect2 313;
		percentheal 100,100;
		close;
	case 3:
		warp "prontera",156,179;
		close;
	}
}
pvp_n_1-2,100,100,4	script	MVP-Protector#01	727,{ callfunc "Protector","pvp_n_2-2"; }
pvp_n_2-2,100,100,4	script	MVP-Protector#02	727,{ callfunc "Protector","pvp_n_3-2"; }
pvp_n_3-2,100,100,4	script	MVP-Protector#03	727,{ callfunc "Protector","pvp_n_4-2"; }
pvp_n_4-2,100,100,4	script	MVP-Protector#04	727,{ callfunc "Protector","pvp_n_5-2"; }
pvp_n_5-2,100,100,4	script	MVP-Protector#05	727,{ callfunc "Protector","pvp_n_6-2"; }
pvp_n_6-2,100,100,4	script	MVP-Protector#06	727,{ callfunc "Protector","pvp_n_7-2"; }
pvp_n_7-2,100,100,4	script	MVP-Protector#07	727,{ callfunc "Protector","pvp_n_8-2"; }
pvp_n_8-2,100,100,4	script	MVP-Protector#08	727,{ callfunc "Protector",""; }
pvp_n_1-3,100,100,4	script	MVP-Protector#09	727,{ callfunc "Protector","pvp_n_2-3"; }
pvp_n_2-3,100,100,4	script	MVP-Protector#10	727,{ callfunc "Protector","pvp_n_3-3"; }
pvp_n_3-3,100,100,4	script	MVP-Protector#11	727,{ callfunc "Protector","pvp_n_4-3"; }
pvp_n_4-3,100,100,4	script	MVP-Protector#12	727,{ callfunc "Protector","pvp_n_5-3"; }
pvp_n_5-3,100,100,4	script	MVP-Protector#13	727,{ callfunc "Protector","pvp_n_6-3"; }
pvp_n_6-3,100,100,4	script	MVP-Protector#14	727,{ callfunc "Protector","pvp_n_7-3"; }
pvp_n_7-3,100,100,4	script	MVP-Protector#15	727,{ callfunc "Protector","pvp_n_8-3"; }
pvp_n_8-3,100,100,4	script	MVP-Protector#16	727,{ callfunc "Protector",""; }
pvp_n_1-4,100,100,4	script	MVP-Protector#17	727,{ callfunc "Protector","pvp_n_2-4"; }
pvp_n_2-4,100,100,4	script	MVP-Protector#18	727,{ callfunc "Protector","pvp_n_3-4"; }
pvp_n_3-4,100,100,4	script	MVP-Protector#19	727,{ callfunc "Protector","pvp_n_4-4"; }
pvp_n_4-4,100,100,4	script	MVP-Protector#20	727,{ callfunc "Protector","pvp_n_5-4"; }
pvp_n_5-4,100,100,4	script	MVP-Protector#21	727,{ callfunc "Protector","pvp_n_6-4"; }
pvp_n_6-4,100,100,4	script	MVP-Protector#22	727,{ callfunc "Protector","pvp_n_7-4"; }
pvp_n_7-4,100,100,4	script	MVP-Protector#23	727,{ callfunc "Protector","pvp_n_8-4"; }
pvp_n_8-4,100,100,4	script	MVP-Protector#24	727,{ callfunc "Protector",""; }
pvp_n_1-5,100,100,4	script	MVP-Protector#25	727,{ callfunc "Protector","pvp_n_2-5"; }
pvp_n_2-5,100,100,4	script	MVP-Protector#26	727,{ callfunc "Protector","pvp_n_3-5"; }
pvp_n_3-5,100,100,4	script	MVP-Protector#27	727,{ callfunc "Protector","pvp_n_5-5"; }
//pvp_n_4-5,100,100,4	script	MVP-Protector#28	727,{ callfunc "Protector","pvp_n_5-5"; }
pvp_n_5-5,100,100,4	script	MVP-Protector#29	727,{ callfunc "Protector","pvp_n_6-5"; }
pvp_n_6-5,100,100,4	script	MVP-Protector#30	727,{ callfunc "Protector","pvp_n_7-5"; }
pvp_n_7-5,100,100,4	script	MVP-Protector#31	727,{ callfunc "Protector","pvp_n_8-5"; }
pvp_n_8-5,100,100,4	script	MVP-Protector#32	727,{ callfunc "Protector",""; }

// Alpha
pvp_n_1-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_1-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
pvp_n_2-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_2-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_3-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
pvp_n_3-2,0,0,0,0	monster	Moonlight	1150,2,60000,66000
pvp_n_3-2,0,0,0,0	monster	Maya	1147,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Eddga	1115,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Maya	1147,1,60000,66000
pvp_n_5-2,0,0,0,0	monster	Eddga	1115,1,60000,66000
pvp_n_5-2,0,0,0,0	monster	Mistress	1059,2,60000,66000
pvp_n_5-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_5-2,0,0,0,0	monster	Maya	1147,2,60000,66000
pvp_n_6-2,0,0,0,0	monster	Eddga	1115,2,60000,66000
pvp_n_6-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_6-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_6-2,0,0,0,0	monster	Maya	1147,2,60000,66000
pvp_n_7-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_7-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_7-2,0,0,0,0	monster	Moonlight	1150,2,60000,66000
pvp_n_7-2,0,0,0,0	monster	Maya	1147,2,60000,66000
pvp_n_8-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Moonlight	1150,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Maya	1147,3,60000,66000

// Beta
pvp_n_1-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_1-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_2-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_2-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_2-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Phreeoni	1159,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
pvp_n_4-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_4-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_4-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
pvp_n_4-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
pvp_n_5-3,0,0,0,0	monster	Phreeoni	1159,1,60000,66000
pvp_n_5-3,0,0,0,0	monster	Turtle General	1312,2,60000,66000
pvp_n_5-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_5-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
pvp_n_6-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_6-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_6-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_6-3,0,0,0,0	monster	Orc Lord	1190,2,60000,66000
pvp_n_7-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_7-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_7-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_7-3,0,0,0,0	monster	Orc Lord	1190,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Turtle General	1312,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Orc Hero	1087,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Orc Lord	1190,3,60000,66000

// Theta
pvp_n_1-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_1-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_2-4,0,0,0,0	monster	Drake	1112,2,60000,66000
pvp_n_2-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_2-4,0,0,0,0	monster	Doppelganger	1046,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Drake	1112,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Doppelganger	1046,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
pvp_n_4-4,0,0,0,0	monster	Drake	1112,2,60000,66000
pvp_n_4-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_4-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_4-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
pvp_n_5-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_5-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_5-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_5-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
pvp_n_6-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_6-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_6-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_6-4,0,0,0,0	monster	Lord of Death	1373,2,60000,66000
pvp_n_7-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_7-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_7-4,0,0,0,0	monster	Doppelganger	1046,3,60000,66000
pvp_n_7-4,0,0,0,0	monster	Lord of Death	1373,2,60000,66000
pvp_n_8-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Osiris	1038,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Doppelganger	1046,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Lord of Death	1373,3,60000,66000

// Epsilon
pvp_n_1-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
pvp_n_1-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_2-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_2-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_2-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Incantation Samurai	1492,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
//pvp_n_4-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
//pvp_n_4-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
//pvp_n_4-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
//pvp_n_4-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
pvp_n_5-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
pvp_n_6-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
pvp_n_7-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Baphomet	1039,2,60000,66000
pvp_n_8-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
pvp_n_8-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_8-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_8-5,0,0,0,0	monster	Baphomet	1039,2,60000,66000

// Mapflags
pvp_n_1-1	mapflag	pvp_nightmaredrop	off
pvp_n_2-1	mapflag	pvp_nightmaredrop	off
pvp_n_3-1	mapflag	pvp_nightmaredrop	off
pvp_n_4-1	mapflag	pvp_nightmaredrop	off
pvp_n_5-1	mapflag	pvp_nightmaredrop	off
pvp_n_6-1	mapflag	pvp_nightmaredrop	off
pvp_n_7-1	mapflag	pvp_nightmaredrop	off
pvp_n_8-1	mapflag	pvp_nightmaredrop	off
pvp_n_1-2	mapflag	pvp_nightmaredrop	off
pvp_n_2-2	mapflag	pvp_nightmaredrop	off
pvp_n_3-2	mapflag	pvp_nightmaredrop	off
pvp_n_4-2	mapflag	pvp_nightmaredrop	off
pvp_n_5-2	mapflag	pvp_nightmaredrop	off
pvp_n_6-2	mapflag	pvp_nightmaredrop	off
pvp_n_7-2	mapflag	pvp_nightmaredrop	off
pvp_n_8-2	mapflag	pvp_nightmaredrop	off
pvp_n_1-3	mapflag	pvp_nightmaredrop	off
pvp_n_2-3	mapflag	pvp_nightmaredrop	off
pvp_n_3-3	mapflag	pvp_nightmaredrop	off
pvp_n_4-3	mapflag	pvp_nightmaredrop	off
pvp_n_5-3	mapflag	pvp_nightmaredrop	off
pvp_n_6-3	mapflag	pvp_nightmaredrop	off
pvp_n_7-3	mapflag	pvp_nightmaredrop	off
pvp_n_8-3	mapflag	pvp_nightmaredrop	off
pvp_n_1-4	mapflag	pvp_nightmaredrop	off
pvp_n_2-4	mapflag	pvp_nightmaredrop	off
pvp_n_3-4	mapflag	pvp_nightmaredrop	off
pvp_n_4-4	mapflag	pvp_nightmaredrop	off
pvp_n_5-4	mapflag	pvp_nightmaredrop	off
pvp_n_6-4	mapflag	pvp_nightmaredrop	off
pvp_n_7-4	mapflag	pvp_nightmaredrop	off
pvp_n_8-4	mapflag	pvp_nightmaredrop	off
pvp_n_1-5	mapflag	pvp_nightmaredrop	off
pvp_n_2-5	mapflag	pvp_nightmaredrop	off
pvp_n_3-5	mapflag	pvp_nightmaredrop	off
//pvp_n_4-5	mapflag	pvp_nightmaredrop	off
pvp_n_5-5	mapflag	pvp_nightmaredrop	off
pvp_n_6-5	mapflag	pvp_nightmaredrop	off
pvp_n_7-5	mapflag	pvp_nightmaredrop	off
pvp_n_8-5	mapflag	pvp_nightmaredrop	off
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  79
  • Topics Per Day:  0.02
  • Content Count:  327
  • Reputation:   4
  • Joined:  06/22/13
  • Last Seen:  

this one??

// ---- MVP ARENA!!!!!! By Darkchild with 16 diff MVP's inside
// -- Optimised The MVP arena!!!! By massdriller
// - NPC in prontera

// --- Optimising Functions

function	script	Ramvp_1	{

	mes "[ ^0065DFAlpha MVP^000000 ]";
		mes "Here you go!";
			return;
}

function	script	Ramvp_2	{

	mes "[ ^0065DFBeta MVP^000000 ]";
		mes "Here you go!";
			return;
}

function	script	Ramvp_3	{

	mes "[ ^0065DFTheta MVP^000000 ]";
		mes "Here you go!";
			return;

}


function	script	Ramvp_4	{

	mes "[ ^0065DFEpsilon MVP^000000 ]";
		mes "Here you go!";
			return;

}

function	script	Ramvp_M	{

	mes "How do you need help?.";
	menu "Harder Monsters",L_Next,"Heal Please",L_Heal,"Leave",L_Leave;

	L_Next:
		return;

	L_Heal:
		percentheal 100,100;
		close;

	L_Leave:
		warp "prontera",156,179;
		close;

}

function	script	Ramvp_M2	{

	mes "How do you need help?.";
	menu "Heal Please",L_Heal,"Leave",L_Leave;

	L_Heal:
		percentheal 100,100;
		close;

	L_Leave:
		warp "prontera",156,179;
		close;

}

and this

//===== rAthena Script =======================================
//= MVP Arena
//===== By: ==================================================
//= Darkchild
//===== Current Version: =====================================
//= 1.4
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
//= Rooms containing 16 different MVPs
//===== Additional Comments: =================================
//= 1.0 - First version of script
//= 1.1 - Optimised The MVP arena [massdriller]
//= 1.2 - NPC in prontera [Silent]
//= 1.3 - Removed Duplicates
//= 1.4 - Optimized, text edited [Euphy]
//============================================================

// Entrance
prontera,168,178,1	script	MVP Warper	768,{
	mes "[ ^0065DFMVP Warper^000000 ]";
	mes "Would you like to enter";
	mes "the MVP Arena?";
	if (select("Yes!","No thanks.") == 2) close;
	warp "quiz_00",50,24;
	close;
}

// Information
quiz_00,49,31,4	script	MVP Arena Guide	778,{
	mes "[ ^0065DFMVP Arena Guide^000000 ]";
	mes "Welcome and behold this sacred place. Here you will find out if you truly have what it takes to call yourself a warrior.";
	next;
	switch(select("Information","Heal me!","Return to Prontera","Cancel")) {
	case 1:
		mes "[ ^0065DFMVP Arena Guide^000000 ]";
		mes "There are four Keepers, and each can spawn four different MVPs.";
		mes "There are eight rooms per Keeper, and sixteen MVPs in total.";
		close;
	case 2:
		specialeffect2 313;
		percentheal 100,100;
		close;
	case 3:
		warp "prontera",156,179;
		close;
	case 4:
		close;
	}
}

// Keepers
function	script	Keeper	{
	mes "[ ^0065DF"+strnpcinfo(1)+"^000000 ]";
	mes "Which arena would you";
	mes "like to enter?";
	set .@menu$,"";
	for(set .@i,1; .@i<9; set .@i,.@i+1)
		set .@menu$, .@menu"Arena "+.@i+" ["+getmapusers("pvp_n_"+.@i+"-"+getarg(0))+"/20]:";
	set .@i, select(.@menu$);
	if (getmapusers("pvp_n_"+.@i+"-"+getarg(0))>19) {
		mes "[ ^0065DF"+strnpcinfo(1)+"^000000 ]";
		mes "Sorry, this arena is full!";
		close;
	}
	warp "pvp_n_"+.@i+"-"+getarg(0),102,102;
	close;
}
quiz_00,56,31,4	script	Alpha MVP	770,{ callfunc "Keeper",2; }
quiz_00,58,31,4	script	Beta MVP	773,{ callfunc "Keeper",3; }
quiz_00,60,31,4	script	Theta MVP	774,{ callfunc "Keeper",4; }
quiz_00,62,31,4	script	Epsilon MVP	776,{ callfunc "Keeper",5; }

// Protectors
function	script	Protector	{
	switch(select(""+((getarg(0)=="")?"":"Harder Monsters")+":Heal:Exit")) {
	case 1:
		warp getarg(0),102,102;
		close;
	case 2:
		specialeffect2 313;
		percentheal 100,100;
		close;
	case 3:
		warp "prontera",156,179;
		close;
	}
}
pvp_n_1-2,100,100,4	script	MVP-Protector#01	727,{ callfunc "Protector","pvp_n_2-2"; }
pvp_n_2-2,100,100,4	script	MVP-Protector#02	727,{ callfunc "Protector","pvp_n_3-2"; }
pvp_n_3-2,100,100,4	script	MVP-Protector#03	727,{ callfunc "Protector","pvp_n_4-2"; }
pvp_n_4-2,100,100,4	script	MVP-Protector#04	727,{ callfunc "Protector","pvp_n_5-2"; }
pvp_n_5-2,100,100,4	script	MVP-Protector#05	727,{ callfunc "Protector","pvp_n_6-2"; }
pvp_n_6-2,100,100,4	script	MVP-Protector#06	727,{ callfunc "Protector","pvp_n_7-2"; }
pvp_n_7-2,100,100,4	script	MVP-Protector#07	727,{ callfunc "Protector","pvp_n_8-2"; }
pvp_n_8-2,100,100,4	script	MVP-Protector#08	727,{ callfunc "Protector",""; }
pvp_n_1-3,100,100,4	script	MVP-Protector#09	727,{ callfunc "Protector","pvp_n_2-3"; }
pvp_n_2-3,100,100,4	script	MVP-Protector#10	727,{ callfunc "Protector","pvp_n_3-3"; }
pvp_n_3-3,100,100,4	script	MVP-Protector#11	727,{ callfunc "Protector","pvp_n_4-3"; }
pvp_n_4-3,100,100,4	script	MVP-Protector#12	727,{ callfunc "Protector","pvp_n_5-3"; }
pvp_n_5-3,100,100,4	script	MVP-Protector#13	727,{ callfunc "Protector","pvp_n_6-3"; }
pvp_n_6-3,100,100,4	script	MVP-Protector#14	727,{ callfunc "Protector","pvp_n_7-3"; }
pvp_n_7-3,100,100,4	script	MVP-Protector#15	727,{ callfunc "Protector","pvp_n_8-3"; }
pvp_n_8-3,100,100,4	script	MVP-Protector#16	727,{ callfunc "Protector",""; }
pvp_n_1-4,100,100,4	script	MVP-Protector#17	727,{ callfunc "Protector","pvp_n_2-4"; }
pvp_n_2-4,100,100,4	script	MVP-Protector#18	727,{ callfunc "Protector","pvp_n_3-4"; }
pvp_n_3-4,100,100,4	script	MVP-Protector#19	727,{ callfunc "Protector","pvp_n_4-4"; }
pvp_n_4-4,100,100,4	script	MVP-Protector#20	727,{ callfunc "Protector","pvp_n_5-4"; }
pvp_n_5-4,100,100,4	script	MVP-Protector#21	727,{ callfunc "Protector","pvp_n_6-4"; }
pvp_n_6-4,100,100,4	script	MVP-Protector#22	727,{ callfunc "Protector","pvp_n_7-4"; }
pvp_n_7-4,100,100,4	script	MVP-Protector#23	727,{ callfunc "Protector","pvp_n_8-4"; }
pvp_n_8-4,100,100,4	script	MVP-Protector#24	727,{ callfunc "Protector",""; }
pvp_n_1-5,100,100,4	script	MVP-Protector#25	727,{ callfunc "Protector","pvp_n_2-5"; }
pvp_n_2-5,100,100,4	script	MVP-Protector#26	727,{ callfunc "Protector","pvp_n_3-5"; }
pvp_n_3-5,100,100,4	script	MVP-Protector#27	727,{ callfunc "Protector","pvp_n_5-5"; }
//pvp_n_4-5,100,100,4	script	MVP-Protector#28	727,{ callfunc "Protector","pvp_n_5-5"; }
pvp_n_5-5,100,100,4	script	MVP-Protector#29	727,{ callfunc "Protector","pvp_n_6-5"; }
pvp_n_6-5,100,100,4	script	MVP-Protector#30	727,{ callfunc "Protector","pvp_n_7-5"; }
pvp_n_7-5,100,100,4	script	MVP-Protector#31	727,{ callfunc "Protector","pvp_n_8-5"; }
pvp_n_8-5,100,100,4	script	MVP-Protector#32	727,{ callfunc "Protector",""; }

// Alpha
pvp_n_1-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_1-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
pvp_n_2-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_2-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_3-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
pvp_n_3-2,0,0,0,0	monster	Moonlight	1150,2,60000,66000
pvp_n_3-2,0,0,0,0	monster	Maya	1147,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Eddga	1115,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Mistress	1059,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_4-2,0,0,0,0	monster	Maya	1147,1,60000,66000
pvp_n_5-2,0,0,0,0	monster	Eddga	1115,1,60000,66000
pvp_n_5-2,0,0,0,0	monster	Mistress	1059,2,60000,66000
pvp_n_5-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_5-2,0,0,0,0	monster	Maya	1147,2,60000,66000
pvp_n_6-2,0,0,0,0	monster	Eddga	1115,2,60000,66000
pvp_n_6-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_6-2,0,0,0,0	monster	Moonlight	1150,1,60000,66000
pvp_n_6-2,0,0,0,0	monster	Maya	1147,2,60000,66000
pvp_n_7-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_7-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_7-2,0,0,0,0	monster	Moonlight	1150,2,60000,66000
pvp_n_7-2,0,0,0,0	monster	Maya	1147,2,60000,66000
pvp_n_8-2,0,0,0,0	monster	Eddga	1115,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Mistress	1059,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Moonlight	1150,3,60000,66000
pvp_n_8-2,0,0,0,0	monster	Maya	1147,3,60000,66000

// Beta
pvp_n_1-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_1-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_2-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_2-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_2-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Phreeoni	1159,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
pvp_n_3-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
pvp_n_4-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_4-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_4-3,0,0,0,0	monster	Orc Hero	1087,1,60000,66000
pvp_n_4-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
pvp_n_5-3,0,0,0,0	monster	Phreeoni	1159,1,60000,66000
pvp_n_5-3,0,0,0,0	monster	Turtle General	1312,2,60000,66000
pvp_n_5-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_5-3,0,0,0,0	monster	Orc Lord	1190,1,60000,66000
pvp_n_6-3,0,0,0,0	monster	Phreeoni	1159,2,60000,66000
pvp_n_6-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_6-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_6-3,0,0,0,0	monster	Orc Lord	1190,2,60000,66000
pvp_n_7-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_7-3,0,0,0,0	monster	Turtle General	1312,1,60000,66000
pvp_n_7-3,0,0,0,0	monster	Orc Hero	1087,2,60000,66000
pvp_n_7-3,0,0,0,0	monster	Orc Lord	1190,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Phreeoni	1159,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Turtle General	1312,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Orc Hero	1087,3,60000,66000
pvp_n_8-3,0,0,0,0	monster	Orc Lord	1190,3,60000,66000

// Theta
pvp_n_1-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_1-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_2-4,0,0,0,0	monster	Drake	1112,2,60000,66000
pvp_n_2-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_2-4,0,0,0,0	monster	Doppelganger	1046,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Drake	1112,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Doppelganger	1046,1,60000,66000
pvp_n_3-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
pvp_n_4-4,0,0,0,0	monster	Drake	1112,2,60000,66000
pvp_n_4-4,0,0,0,0	monster	Osiris	1038,1,60000,66000
pvp_n_4-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_4-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
pvp_n_5-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_5-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_5-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_5-4,0,0,0,0	monster	Lord of Death	1373,1,60000,66000
pvp_n_6-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_6-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_6-4,0,0,0,0	monster	Doppelganger	1046,2,60000,66000
pvp_n_6-4,0,0,0,0	monster	Lord of Death	1373,2,60000,66000
pvp_n_7-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_7-4,0,0,0,0	monster	Osiris	1038,2,60000,66000
pvp_n_7-4,0,0,0,0	monster	Doppelganger	1046,3,60000,66000
pvp_n_7-4,0,0,0,0	monster	Lord of Death	1373,2,60000,66000
pvp_n_8-4,0,0,0,0	monster	Drake	1112,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Osiris	1038,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Doppelganger	1046,3,60000,66000
pvp_n_8-4,0,0,0,0	monster	Lord of Death	1373,3,60000,66000

// Epsilon
pvp_n_1-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
pvp_n_1-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_2-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_2-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_2-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Incantation Samurai	1492,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
pvp_n_3-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
//pvp_n_4-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
//pvp_n_4-5,0,0,0,0	monster	Pharoh	1157,1,60000,66000
//pvp_n_4-5,0,0,0,0	monster	Dark Lord	1272,1,60000,66000
//pvp_n_4-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
pvp_n_5-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_5-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
pvp_n_6-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_6-5,0,0,0,0	monster	Baphomet	1039,1,60000,66000
pvp_n_7-5,0,0,0,0	monster	Incantation Samurai	1492,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_7-5,0,0,0,0	monster	Baphomet	1039,2,60000,66000
pvp_n_8-5,0,0,0,0	monster	Incantation Samurai	1492,3,60000,66000
pvp_n_8-5,0,0,0,0	monster	Pharoh	1157,2,60000,66000
pvp_n_8-5,0,0,0,0	monster	Dark Lord	1272,2,60000,66000
pvp_n_8-5,0,0,0,0	monster	Baphomet	1039,2,60000,66000

// Mapflags
pvp_n_1-1	mapflag	pvp_nightmaredrop	off
pvp_n_2-1	mapflag	pvp_nightmaredrop	off
pvp_n_3-1	mapflag	pvp_nightmaredrop	off
pvp_n_4-1	mapflag	pvp_nightmaredrop	off
pvp_n_5-1	mapflag	pvp_nightmaredrop	off
pvp_n_6-1	mapflag	pvp_nightmaredrop	off
pvp_n_7-1	mapflag	pvp_nightmaredrop	off
pvp_n_8-1	mapflag	pvp_nightmaredrop	off
pvp_n_1-2	mapflag	pvp_nightmaredrop	off
pvp_n_2-2	mapflag	pvp_nightmaredrop	off
pvp_n_3-2	mapflag	pvp_nightmaredrop	off
pvp_n_4-2	mapflag	pvp_nightmaredrop	off
pvp_n_5-2	mapflag	pvp_nightmaredrop	off
pvp_n_6-2	mapflag	pvp_nightmaredrop	off
pvp_n_7-2	mapflag	pvp_nightmaredrop	off
pvp_n_8-2	mapflag	pvp_nightmaredrop	off
pvp_n_1-3	mapflag	pvp_nightmaredrop	off
pvp_n_2-3	mapflag	pvp_nightmaredrop	off
pvp_n_3-3	mapflag	pvp_nightmaredrop	off
pvp_n_4-3	mapflag	pvp_nightmaredrop	off
pvp_n_5-3	mapflag	pvp_nightmaredrop	off
pvp_n_6-3	mapflag	pvp_nightmaredrop	off
pvp_n_7-3	mapflag	pvp_nightmaredrop	off
pvp_n_8-3	mapflag	pvp_nightmaredrop	off
pvp_n_1-4	mapflag	pvp_nightmaredrop	off
pvp_n_2-4	mapflag	pvp_nightmaredrop	off
pvp_n_3-4	mapflag	pvp_nightmaredrop	off
pvp_n_4-4	mapflag	pvp_nightmaredrop	off
pvp_n_5-4	mapflag	pvp_nightmaredrop	off
pvp_n_6-4	mapflag	pvp_nightmaredrop	off
pvp_n_7-4	mapflag	pvp_nightmaredrop	off
pvp_n_8-4	mapflag	pvp_nightmaredrop	off
pvp_n_1-5	mapflag	pvp_nightmaredrop	off
pvp_n_2-5	mapflag	pvp_nightmaredrop	off
pvp_n_3-5	mapflag	pvp_nightmaredrop	off
//pvp_n_4-5	mapflag	pvp_nightmaredrop	off
pvp_n_5-5	mapflag	pvp_nightmaredrop	off
pvp_n_6-5	mapflag	pvp_nightmaredrop	off
pvp_n_7-5	mapflag	pvp_nightmaredrop	off
pvp_n_8-5	mapflag	pvp_nightmaredrop	off

I already modified those 2 to the one i want ^_^.

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