diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-25 06:54:26 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-25 06:54:26 +0000 |
commit | 1d8592b23ce221f543fb9978c88620f70280c885 (patch) | |
tree | 66b363ecaa0da42195d2c9d1b8e5cd6fe8cc33a2 /npc/custom/MVP_arena/amvp_func.txt | |
parent | 0f82fd5bc403400dc9464a8f02298416b99b0bbc (diff) | |
download | hercules-1d8592b23ce221f543fb9978c88620f70280c885.tar.gz hercules-1d8592b23ce221f543fb9978c88620f70280c885.tar.bz2 hercules-1d8592b23ce221f543fb9978c88620f70280c885.tar.xz hercules-1d8592b23ce221f543fb9978c88620f70280c885.zip |
- Standardized script headers, starting with /npc/custom/
http://rathena.org/wiki/Script_header
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15262 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/MVP_arena/amvp_func.txt')
-rw-r--r-- | npc/custom/MVP_arena/amvp_func.txt | 79 |
1 files changed, 36 insertions, 43 deletions
diff --git a/npc/custom/MVP_arena/amvp_func.txt b/npc/custom/MVP_arena/amvp_func.txt index 02e45e45a..0e49803d6 100644 --- a/npc/custom/MVP_arena/amvp_func.txt +++ b/npc/custom/MVP_arena/amvp_func.txt @@ -1,69 +1,62 @@ -// ---- MVP ARENA!!!!!! By Darkchild with 16 diff MVP's inside -// -- Optimised The MVP arena!!!! By massdriller -// - NPC in prontera - -// --- Optimising Functions +//===== rAthena Script ======================================= +//= MVP Arena functions +//===== By: ================================================== +//= Darkchild +//===== Current Version: ===================================== +//= 1.1 +//===== Compatible With: ===================================== +//= rAthena SVN +//===== Description: ========================================= +//= 16 diff MVP's inside +//===== Additional Comments: ================================= +//= 1.0 first version of script +//= 1.1 Optimised The MVP arena [massdriller] +//============================================================ function script Ramvp_1 { - mes "[ ^0065DFAlpha MVP^000000 ]"; - mes "Here you go!"; - return; + mes "Here you go!"; + return; } function script Ramvp_2 { - mes "[ ^0065DFBeta MVP^000000 ]"; - mes "Here you go!"; - return; + mes "Here you go!"; + return; } function script Ramvp_3 { - mes "[ ^0065DFTheta MVP^000000 ]"; - mes "Here you go!"; - return; - + mes "Here you go!"; + return; } - function script Ramvp_4 { - mes "[ ^0065DFEpsilon MVP^000000 ]"; - mes "Here you go!"; - return; - + 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; - +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; - +L_Heal: + percentheal 100,100; + close; +L_Leave: + warp "prontera",156,179; + close; } |