diff options
author | Haru <haru@dotalux.com> | 2016-11-18 07:13:21 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-11-20 18:10:45 +0100 |
commit | e384a7f2166026dc1c8cdfe49fc2fc105197ea02 (patch) | |
tree | 45853183b6760e267e8783bc0a50cba1199f54c9 /npc/quests/quests_lighthalzen.txt | |
parent | 0a4fdb4404900fb03726b98ecbe379f2d5da6bd0 (diff) | |
download | hercules-e384a7f2166026dc1c8cdfe49fc2fc105197ea02.tar.gz hercules-e384a7f2166026dc1c8cdfe49fc2fc105197ea02.tar.bz2 hercules-e384a7f2166026dc1c8cdfe49fc2fc105197ea02.tar.xz hercules-e384a7f2166026dc1c8cdfe49fc2fc105197ea02.zip |
Replaced some unsupported symbols in AegisNames (step 2)
This removes the remaining unsupported symbols (despite they being
official names) in AegisNames: The apostrophe (`'`) sign is suppressed.
The full replacement rules (cumulative with the step 1 commit) are thus:
- Any apostrophe is suppressed.
- Any non-`[A-Za-z0-9_]` character is replaced with an underscore (`_`).
- If the replaced symbol is at a word boundary (beginning or end of the
string, or next to another underscore), it is suppressed instead.
- If the replacement causes an AegisName conflict, underscores are
appended appropriately.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/quests/quests_lighthalzen.txt')
-rw-r--r-- | npc/quests/quests_lighthalzen.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/quests/quests_lighthalzen.txt b/npc/quests/quests_lighthalzen.txt index 480b696b3..0a80c25ae 100644 --- a/npc/quests/quests_lighthalzen.txt +++ b/npc/quests/quests_lighthalzen.txt @@ -2148,7 +2148,7 @@ lhz_in02,201,210,5 script Digotz 4_M_LGTMAN,{ mes "my fashionable street clothes?"; close; } - if ((friendship == 12 && countitem(Friend's_Diary) > 0)) { + if ((friendship == 12 && countitem(Friends_Diary) > 0)) { mes "[Digotz]"; mes "Even if Benkaistein"; mes "did come back, I don't"; @@ -2555,7 +2555,7 @@ lighthalzen,337,232,3 script Maku 4_M_LGTPOOR,{ cutin "lhz_macu05",255; end; } - if (friendship == 13 && countitem(Friend's_Diary) > 0) { + if (friendship == 13 && countitem(Friends_Diary) > 0) { cutin "lhz_macu06",2; mes "[Maku]"; mes "Hey, what is that? You want"; @@ -2703,7 +2703,7 @@ lighthalzen,337,232,3 script Maku 4_M_LGTPOOR,{ mes "that I'm grateful or anything."; cutin "lhz_macu07",255; next; - delitem Friend's_Diary,1; + delitem Friends_Diary,1; friendship = 14; if (RENEWAL_EXP) { if (BaseLevel > 90) getexp 70000,0; @@ -3175,7 +3175,7 @@ yuno_in04,96,106,5 script Passionate Student 4_M_SAGE_A,{ mes "sure to let you know~"; close; } - if ((friendship == 11 && countitem(Friend's_Diary) > 0)) { + if ((friendship == 11 && countitem(Friends_Diary) > 0)) { mes "[Benkaistein]"; mes "Aw nuts, this is"; mes "taking much longer"; @@ -3351,7 +3351,7 @@ yuno_in04,168,117,3 script Book#lhz HIDDEN_NPC,{ } if (friendship == 10) { friendship = 11; - getitem Friend's_Diary,1; + getitem Friends_Diary,1; mes "^3355FFThis book is labeled,"; mes "''Benkaistein's Journal"; mes "Vol. 6.'' This is probably"; |