blob: 02e45e45a38517b9dc0ce433019c368ef33b8dae (
plain) (
tree)
|
|
// ---- 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;
}
|