diff options
author | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-03-18 10:04:41 +0000 |
---|---|---|
committer | celest <celest@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-03-18 10:04:41 +0000 |
commit | a625c96cd44bc95bdc1d8bc9e2143372fb28c56e (patch) | |
tree | 05a59ba3c1d92b5daac7aa25e9bd2fd5ad1f63d4 /npc/other | |
parent | 712ea2e956dbaae6f23229e0c7634cd95a14fe9d (diff) | |
download | hercules-a625c96cd44bc95bdc1d8bc9e2143372fb28c56e.tar.gz hercules-a625c96cd44bc95bdc1d8bc9e2143372fb28c56e.tar.bz2 hercules-a625c96cd44bc95bdc1d8bc9e2143372fb28c56e.tar.xz hercules-a625c96cd44bc95bdc1d8bc9e2143372fb28c56e.zip |
* Don't log SQL char actions if log_char is not enabled in char_athena.conf
* Updated shop_exp's calculation to give more exp
* Some item and mob DB updates
* Added Einbech/Einbroch warps
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1249 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r-- | npc/other/heal_payment.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/other/heal_payment.txt b/npc/other/heal_payment.txt index 39a832985..96713e46a 100644 --- a/npc/other/heal_payment.txt +++ b/npc/other/heal_payment.txt @@ -42,7 +42,7 @@ prontera.gat,150,184,5 script Healring#h2-1::Healring 1002,{ mes "Booiing Boooing: BoooiiinnnG (or healing and regeneration: "+(@tempHp+@tempSp)+" z)?"; mes "BOINNG: Booing (I use zenys for a good cause: my medicines and my Poring Food)!"; next; - menu "Only healings ("+@tempHp+"z)",HEALINGS,"Only a regeneration ("+@tempSp+"z)",REGENERATION,"Healings with regeneration ("+(@tempHp+@tempSp)+"z)",HEALINGS_AND_REGENERATION,"Nothing, thanks",CANCEL; + menu "Only healings ("+@tempHp+"z)",HEALINGS,"Only a regeneration ("+@tempSp+"z)",REGENERATION,"Healings with regeneration ("+(@tempHp+@tempSp)+"z)",HEALINGS_AND_REGEN,"Nothing, thanks",CANCEL; ONLY_REGENERATION: mes "[Healring]"; @@ -63,7 +63,7 @@ prontera.gat,150,184,5 script Healring#h2-1::Healring 1002,{ heal 0,30000; goto FIN; - HEALINGS_AND_REGENERATION: + HEALINGS_AND_REGEN: if (Zeny < (@tempHp+@tempSp)) goto NO_ZENYS; set Zeny, Zeny-(@tempHp+@tempSp); heal 30000,30000; |