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_13_2.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_13_2.txt')
-rw-r--r-- | npc/quests/quests_13_2.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/quests/quests_13_2.txt b/npc/quests/quests_13_2.txt index 09ef6209e..85b60e7fb 100644 --- a/npc/quests/quests_13_2.txt +++ b/npc/quests/quests_13_2.txt @@ -458,7 +458,7 @@ spl_fild03,226,151,0 script School of Fish#5::FishingHole_spl3 CLEAR_NPC,{ specialeffect2 EF_BUBBLE; specialeffect2 EF_INVENOM; .@fcast = 15; - if (isequipped(2550)) //Fisher's_Muffler + if (isequipped(2550)) //Fishers_Muffler .@fcast -= 2; if (isequipped(2443)) //Fish_Shoes .@fcast -= 2; @@ -6495,7 +6495,7 @@ mid_camp,283,198,5 script Bazett Teablack#ep13bs 4_M_ALCHE_D,{ ep13_2_bs2 = 1; ep13_2_bs3 = 1; ep13_2_bs4 = 1; - getitem Bazett's_Order,1; + getitem Bazetts_Order,1; changequest 11101,11102; close; } @@ -6503,7 +6503,7 @@ mid_camp,283,198,5 script Bazett Teablack#ep13bs 4_M_ALCHE_D,{ mes "[Bazett]"; mes "How's the search going?"; next; - if (countitem(Bazett's_Order) < 1) { + if (countitem(Bazetts_Order) < 1) { mes "[Bazett]"; mes "!!!!!!!"; mes "You lost the notes!!?"; @@ -6512,7 +6512,7 @@ mid_camp,283,198,5 script Bazett Teablack#ep13bs 4_M_ALCHE_D,{ mes "[Bazett]"; mes "What's done has been done."; mes "I'll give you a new one."; - getitem Bazett's_Order,1; + getitem Bazetts_Order,1; close; } else { @@ -6527,7 +6527,7 @@ mid_camp,283,198,5 script Bazett Teablack#ep13bs 4_M_ALCHE_D,{ next; switch(select("Yes.", "Not yet...")) { case 1: - if (countitem(Bazett's_Order) < 1) { + if (countitem(Bazetts_Order) < 1) { mes "[Bazett]"; mes "!!!!!!!"; mes "You lost the notes!!?"; @@ -6570,7 +6570,7 @@ mid_camp,283,198,5 script Bazett Teablack#ep13bs 4_M_ALCHE_D,{ mes "[Bazett]"; mes "Ah... this isn't much, but it's a coin that the giants use."; mes "Maybe you can buy something from them with this."; - delitem Bazett's_Order,1; + delitem Bazetts_Order,1; ep13_2_busut = 7; if (ep13_2_bs1 == 3) getitem Manuk_Coin,1; if (ep13_2_bs2 == 3) getitem Manuk_Coin,1; |