rathena/npc/custom/MVP_arena/amvp_func.txt
ultramage 4814888f0d * Moved quest_variables.txt to /doc
* Added comments to some getitem/delitem calls
* Disabled nightmare drop in the custom mvp arena script
* Fixed problem with baby novice + swordsman quest (topic:160247)
* Fixed a typo and problem in the airship typing challenge

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11138 54d463be-8e91-2dee-dedb-b68131a5f0ec
2007-09-07 20:41:23 +00:00

70 lines
998 B
Plaintext

// ---- 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;
}