diff options
author | Kisuka <Kisuka@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-14 18:27:59 +0000 |
---|---|---|
committer | Kisuka <Kisuka@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-14 18:27:59 +0000 |
commit | 525cd1232a289562e866eeb4eac8d5772c1d573c (patch) | |
tree | 84950d0ce9d3a131aa0dc2cc505b763df3ed59a4 /npc/custom/healers | |
parent | 9a82b154f03e2feb39d166069e3d35cfd7d399d5 (diff) | |
download | hercules-525cd1232a289562e866eeb4eac8d5772c1d573c.tar.gz hercules-525cd1232a289562e866eeb4eac8d5772c1d573c.tar.bz2 hercules-525cd1232a289562e866eeb4eac8d5772c1d573c.tar.xz hercules-525cd1232a289562e866eeb4eac8d5772c1d573c.zip |
- More optimization of custom folder.
- Removed Fredzilla's duping auction script (no need for it since we have official auction system).
- Removed 'Temp Gefenia Warper' because we have 'The Sign Quest'.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13213 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/healers')
-rw-r--r-- | npc/custom/healers/heal.txt | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/npc/custom/healers/heal.txt b/npc/custom/healers/heal.txt index c271aa21a..50f54152f 100644 --- a/npc/custom/healers/heal.txt +++ b/npc/custom/healers/heal.txt @@ -3,38 +3,37 @@ //===== By: ================================================== //= Lotsa People (1.x) //===== Current Version: ===================================== -//= 3.0 +//= 3.1 //===== Compatible With: ===================================== //= eAthena 0.1+; //===== Description: ========================================= //= Healer NPC Which Heals For Free //===== Additional Comments: ================================= -//= 3.0 By massdriller, Changed and edited the script -//= added other warp points of maps. -//= 2.0 By Darkchild, Duplicates And Changed A Bit -//= you can replace this script file by heal_payment.txt -//= if you want that players have to pay their healings. +//= 2.0 Duplicates And Changed A Bit you can replace this script file by +//= heal_payment.txt if you want that players have to pay their healings. [Darkchild] +//= 3.0 Changed and edited the script added other warp points of maps. [massdriller] +//= 3.1 Optimized for the greater good. [Kisuka] //============================================================ prontera,150,184,5 script Healer#h1-1::Healer 742,{ - mes "[Healer]"; mes "I have amazing healing powers!!"; mes "You look like a person who needs them"; mes "Want some?"; next; - menu "Heal",-,"No thanks",CANCEL; - percentheal 100,100; + if (select("Heal:No thanks") == 2) { mes "[Healer]"; - mes "Wonderfull, You are now healed!."; - mes "Have fun adventuring!!"; + mes "Allright, come back if you need a heal."; close; - CANCEL: + } + percentheal 100,100; mes "[Healer]"; - mes "Allright, come back if you need a heal."; + mes "Wonderfull, You are now healed!."; + mes "Have fun adventuring!!"; close; } +// --------- NPC Clones --------- morocc,159,96,5 duplicate(Healer) Healer#h1-2 742 ayothaya,155,111,5 duplicate(Healer) Healer#h1-3 742 geffen,121,61,5 duplicate(Healer) Healer#h1-4 742 |