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/custom/quests/thq/THQS_Quests.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/custom/quests/thq/THQS_Quests.txt')
-rw-r--r-- | npc/custom/quests/thq/THQS_Quests.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/custom/quests/thq/THQS_Quests.txt b/npc/custom/quests/thq/THQS_Quests.txt index bc81fb24b..c0eb1427a 100644 --- a/npc/custom/quests/thq/THQS_Quests.txt +++ b/npc/custom/quests/thq/THQS_Quests.txt @@ -228,7 +228,7 @@ N_QuestStart: ///////Job list 3/////// //3-1; moc_fild04,208,322,6 script Clark 1_M_YOUNGKNIGHT,{ - if (three_qset == 1 && countitem(Elder_Pixie's_Beard) > 29) goto N_QuestComp; + if (three_qset == 1 && countitem(Elder_Pixies_Beard) > 29) goto N_QuestComp; if (three_qset == 1) goto N_QuestStart; mes "[Clark]"; mes "Love to chat, but I'm waiting for someone."; @@ -456,7 +456,7 @@ N_QuestStart: ///////Job list 5/////// //5-1; prt_maze01,18,184,6 script Lithin#01 4_M_CRU_OLD,{ - if (five_qset == 1 && countitem(Wild_Boar's_Mane) > 14) goto N_QuestComp; + if (five_qset == 1 && countitem(Wild_Boars_Mane) > 14) goto N_QuestComp; if (five_qset == 1) goto N_QuestStart; mes "[Lithin]"; mes "Well hello."; @@ -975,7 +975,7 @@ N_QuestStart: } //10-2; pay_fild10,145,252,6 script Man#02 2_M_DYEINGER,{ - if (ten_qset == 2 && countitem(Tiger's_Skin) > 0) goto N_QuestComp; + if (ten_qset == 2 && countitem(Tigers_Skin) > 0) goto N_QuestComp; if (ten_qset == 2) goto N_QuestStart; mes "[Man]"; mes "Sorry I'm waiting for someone, you will have to come back later"; @@ -995,12 +995,12 @@ N_QuestStart: mes "[Man]"; mes "Tony the Tiger is on Crack! He must be stoped, KILL HIM!"; mes " "; - mes "Bring me back 1 Tiger's_Skin!"; + mes "Bring me back 1 Tiger's Skin!"; close; } //10-3; cmd_fild08,328,349,4 script Caral 2_M_SWORDMASTER,{ - if (ten_qset == 3 && countitem(Thin_N'_Long_Tongue) > 0) goto N_QuestComp; + if (ten_qset == 3 && countitem(Thin_N_Long_Tongue) > 0) goto N_QuestComp; if (ten_qset == 3) goto N_QuestStart; mes "[Caral]"; mes "Sorry I'm waiting for someone, you will have to come back later."; |