diff options
Diffstat (limited to 'npc/events/nguild')
-rw-r--r-- | npc/events/nguild/nguild_dunsw.txt | 2 | ||||
-rw-r--r-- | npc/events/nguild/nguild_flags.txt | 2 | ||||
-rw-r--r-- | npc/events/nguild/nguild_treas.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/npc/events/nguild/nguild_dunsw.txt b/npc/events/nguild/nguild_dunsw.txt index f6d031a60..23cd8ec8c 100644 --- a/npc/events/nguild/nguild_dunsw.txt +++ b/npc/events/nguild/nguild_dunsw.txt @@ -48,7 +48,7 @@ function script F_GldDunSw { mes "There's a small lever. Will you pull it?"; next; - if (select("Pull.:Do not.") == 1) { + if (select("Pull.", "Do not.") == 1) { if (getcharid(2) == .@GID) { warp "gld_dun"+getarg(1),getarg(2),getarg(3); end; diff --git a/npc/events/nguild/nguild_flags.txt b/npc/events/nguild/nguild_flags.txt index ebfa2d230..d2a753003 100644 --- a/npc/events/nguild/nguild_flags.txt +++ b/npc/events/nguild/nguild_flags.txt @@ -57,7 +57,7 @@ function script F_Flags { mes "Brave ones..."; mes "Do you wish to return to your honorable place?"; next; - if (select("Return to the guild castle.:Quit.") == 1) { + if (select("Return to the guild castle.", "Quit.") == 1) { if (getcharid(2) == getcastledata(getarg(1),1)) warp getarg(1),getarg(2),getarg(3); } diff --git a/npc/events/nguild/nguild_treas.txt b/npc/events/nguild/nguild_treas.txt index 92cbe585a..8bfa184c5 100644 --- a/npc/events/nguild/nguild_treas.txt +++ b/npc/events/nguild/nguild_treas.txt @@ -72,7 +72,7 @@ function script F_GldTreasSw { mes "There's a small lever. Will you pull it?"; next; - if (select("Pull.:Do not.") == 1) { + if (select("Pull.", "Do not.") == 1) { warp getarg(0),getarg(1),getarg(2); return; } |