diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-12-28 08:38:28 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-12-28 08:38:28 +0000 |
commit | e9d2315e89adb7610a67d610bb99fd78fd403c37 (patch) | |
tree | 55b9666e1a9c5e8739b36f9cdd3ace5576298e0d /npc/custom/healer.txt | |
parent | 382f0b77bf009b938e578286b1048ccf8038d443 (diff) | |
download | hercules-e9d2315e89adb7610a67d610bb99fd78fd403c37.tar.gz hercules-e9d2315e89adb7610a67d610bb99fd78fd403c37.tar.bz2 hercules-e9d2315e89adb7610a67d610bb99fd78fd403c37.tar.xz hercules-e9d2315e89adb7610a67d610bb99fd78fd403c37.zip |
* Added a small portion of official Malangdo Episode scripts.
* Updated quest_db with translated Malangdo entries.
* Fixed strmobinfo() to output empty strings for 'name' instead of zeros (partly follow-up r17055).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17056 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/healer.txt')
-rw-r--r-- | npc/custom/healer.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/custom/healer.txt b/npc/custom/healer.txt index 5ed3f7579..ab7eb9f55 100644 --- a/npc/custom/healer.txt +++ b/npc/custom/healer.txt @@ -21,13 +21,13 @@ if (.@Price) { message strcharinfo(0),"Healing costs "+.@Price+" Zeny."; if (Zeny < .@Price) end; - if(select("^0055FFHeal^000000:^777777Cancel^000000")==2) close; + if(select("^0055FFHeal^000000:^777777Cancel^000000") == 2) close; set Zeny, Zeny-.@Price; } specialeffect2 313; percentheal 100,100; if (.@Buffs) { - specialeffect2 37; sc_start SC_INCREASEAGI,240000,10; - specialeffect2 42; sc_start SC_BLESSING,240000,10; + specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; + specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; } if (.@Delay) set @HD, gettimetick(2)+.@Delay; close; |