summaryrefslogtreecommitdiff
path: root/npc/custom/healers/heal.txt
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-25 06:54:26 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-25 06:54:26 +0000
commit1d8592b23ce221f543fb9978c88620f70280c885 (patch)
tree66b363ecaa0da42195d2c9d1b8e5cd6fe8cc33a2 /npc/custom/healers/heal.txt
parent0f82fd5bc403400dc9464a8f02298416b99b0bbc (diff)
downloadhercules-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/healers/heal.txt')
-rw-r--r--npc/custom/healers/heal.txt22
1 files changed, 12 insertions, 10 deletions
diff --git a/npc/custom/healers/heal.txt b/npc/custom/healers/heal.txt
index 94d2f4f3b..09f14cb60 100644
--- a/npc/custom/healers/heal.txt
+++ b/npc/custom/healers/heal.txt
@@ -1,11 +1,11 @@
//===== rAthena Script =======================================
-//= Heal Npc
+//= Healer
//===== By: ==================================================
-//= Lotsa People (1.x)
+//= lots of people
//===== Current Version: =====================================
//= 3.1
//===== Compatible With: =====================================
-//= rAthena 0.1+;
+//= rAthena SVN
//===== Description: =========================================
//= Healer NPC Which Heals For Free
//===== Additional Comments: =================================
@@ -16,20 +16,22 @@
//============================================================
- script Healer#h1-1::Healer 742,{
+ callfunc "F_ClearGarbage",0;
+
mes "[Healer]";
mes "I have amazing healing powers!!";
mes "You look like a person who needs them";
mes "Want some?";
next;
- if (select("Heal:No thanks") == 2) {
+ if (select("Heal:No thanks") == 1) {
+ percentheal 100,100;
mes "[Healer]";
- mes "Allright, come back if you need a heal.";
- close;
+ mes "Wonderfull, You are now healed!.";
+ mes "Have fun adventuring!!";
+ } else {
+ mes "[Healer]";
+ mes "Alright, come back if you need a heal.";
}
- percentheal 100,100;
- mes "[Healer]";
- mes "Wonderfull, You are now healed!.";
- mes "Have fun adventuring!!";
close;
}