diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-01 02:36:44 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-01 02:36:44 +0000 |
commit | 6979b1d621c2e5c6dab882e3825c4a867d19ba98 (patch) | |
tree | 225a767df0994bd069bc148eafd0e9d90b5804b9 /npc/custom/MVP_arena/amvp_func.txt | |
parent | fb10d4b4a1cf11daf0be70c2c03ca12358b22fbe (diff) | |
download | hercules-6979b1d621c2e5c6dab882e3825c4a867d19ba98.tar.gz hercules-6979b1d621c2e5c6dab882e3825c4a867d19ba98.tar.bz2 hercules-6979b1d621c2e5c6dab882e3825c4a867d19ba98.tar.xz hercules-6979b1d621c2e5c6dab882e3825c4a867d19ba98.zip |
/custom/ folder overhaul:
==== Script Changes ====
* Warper replaced with Euphy's Warper v1.2
* Stylist replaced with a much more efficient script
* Healer replaced with more efficient script
* MVP Arena heavily condensed, and text edited
* Removed logout suggestion in Reset NPC (why was that there?)
* Quest Warper added to scripts_custom.conf [bug fix]
==== Reorganization ====
* All folders in root directory removed except "battleground", "events", "quests"
* All non-essential scripts in root directory moved to "etc" folder
* A few files renamed for easier identification
* scripts_custom.conf reordered for easier identification
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16193 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 | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/npc/custom/MVP_arena/amvp_func.txt b/npc/custom/MVP_arena/amvp_func.txt deleted file mode 100644 index 0e49803d6..000000000 --- a/npc/custom/MVP_arena/amvp_func.txt +++ /dev/null @@ -1,62 +0,0 @@ -//===== 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; -} - -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; -} |