diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-02 22:33:31 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-02 22:33:31 -0700 |
commit | a00579f57be4f02cd2a60ecd9468277ba6631e78 (patch) | |
tree | bc1117ddede14e61b030bfe7a337d323ddea75c2 /world/map/npc/001-1/elanore.txt | |
parent | c0ba38cd4b68491e28e467889804ebc09c9c002e (diff) | |
download | serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.gz serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.bz2 serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.tar.xz serverdata-a00579f57be4f02cd2a60ecd9468277ba6631e78.zip |
Fix style (split for more readable diff)
Diffstat (limited to 'world/map/npc/001-1/elanore.txt')
-rw-r--r-- | world/map/npc/001-1/elanore.txt | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/world/map/npc/001-1/elanore.txt b/world/map/npc/001-1/elanore.txt index 2a5a0095..8f52e771 100644 --- a/world/map/npc/001-1/elanore.txt +++ b/world/map/npc/001-1/elanore.txt @@ -48,68 +48,68 @@ function|script|ElanoreFix|, if (sc_check(sc_poison)) goto L_CurePoison; if (BaseLevel > 10) goto L_NoHeal; set @TEMP,rand(4); - if(@TEMP == 1) goto Heal2; - if(@TEMP == 2) goto Heal3; - if(@TEMP == 3) goto Heal4; - goto Heal1; + if(@TEMP == 1) goto L_Heal2; + if(@TEMP == 2) goto L_Heal3; + if(@TEMP == 3) goto L_Heal4; + goto L_Heal1; -Heal1: +L_Heal1: mes "[Elanore the Healer]"; mes "\"You don't look too well; let me treat your wounds.\""; next; - goto Heal_L; + goto L_Heal_L; -Heal2: +L_Heal2: mes "[Elanore the Healer]"; mes "\"I will make quick work of your wounds.\""; next; - goto Heal_L; + goto L_Heal_L; -Heal3: +L_Heal3: mes "[Elanore the Healer]"; mes "\"Need a healing?\""; next; - goto Heal_L; + goto L_Heal_L; -Heal4: +L_Heal4: mes "[Elanore the Healer]"; mes "\"Sometimes you just need to run from battle.\""; next; - goto Heal_L; + goto L_Heal_L; -Heal_L: +L_Heal_L: set @TEMP,rand(4); - if(@TEMP == 1) goto Heal_2; - if(@TEMP == 2) goto Heal_3; - if(@TEMP == 3) goto Heal_4; - goto Heal_1; + if(@TEMP == 1) goto L_Heal_2; + if(@TEMP == 2) goto L_Heal_3; + if(@TEMP == 3) goto L_Heal_4; + goto L_Heal_1; -Heal_1: +L_Heal_1: mes "[Elanore the Healer]"; mes "\"Here you go!\""; heal 10000,10000; goto L_Close; -Heal_2: +L_Heal_2: mes "[Elanore the Healer]"; mes "\"Painless, wasn't it?"; heal 10000,10000; goto L_Close; -Heal_3: +L_Heal_3: mes "[Elanore the Healer]"; mes "\"You should be more careful.\""; heal 10000,10000; goto L_Close; -Heal_4: +L_Heal_4: mes "[Elanore the Healer]"; mes "\"Much better, right?!\""; @@ -164,7 +164,7 @@ OnPCKillEvent: goto L_OnPcKillFinish; L_OnPcKillWipe: - set @Q_heal_exp, 0; + set @Q_heal_exp, 0; goto L_OnPcKillFinish; L_OnPcKillFinish: |