summaryrefslogtreecommitdiff
path: root/npc/custom/MVP_arena/amvp_func.txt
blob: c8ee2fc65d8f6cf4a8b5f72f045bb4e3a856ed43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// ---- 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.gat",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.gat",156,179;
		close;

}

function	script	Ramvp_Main	{

menu "Intro",L_Intro,"I want to go back",L_Leave,"Heal me please",L_Heal,"Cancel",L_Cancel;

L_Intro:
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 wont tell you which it's a surprise hehe.";
next;
mes "Good luck, Live long and Prosper!.";
close;

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

L_Heal:
Heal 32500,32500;
close;

L_Cancel:
close;

}