diff options
author | Haru <haru@dotalux.com> | 2016-08-20 23:39:17 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-08-21 00:54:23 +0200 |
commit | 460e53b1b64cf2880b4c615ad6eb41386f7530f6 (patch) | |
tree | 8fc91c576f7a0910faec125e1043bb1a2b76bb8c /npc/custom/quests/thq/THQS_ChatingNPC.txt | |
parent | 7a276976948fa39e2d329de3b622c34dd0c572ad (diff) | |
download | hercules-460e53b1b64cf2880b4c615ad6eb41386f7530f6.tar.gz hercules-460e53b1b64cf2880b4c615ad6eb41386f7530f6.tar.bz2 hercules-460e53b1b64cf2880b4c615ad6eb41386f7530f6.tar.xz hercules-460e53b1b64cf2880b4c615ad6eb41386f7530f6.zip |
Removed some of the leftover calls to menu() in custom scripts
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/custom/quests/thq/THQS_ChatingNPC.txt')
-rw-r--r-- | npc/custom/quests/thq/THQS_ChatingNPC.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/custom/quests/thq/THQS_ChatingNPC.txt b/npc/custom/quests/thq/THQS_ChatingNPC.txt index 8ade6d8fd..24e3f7410 100644 --- a/npc/custom/quests/thq/THQS_ChatingNPC.txt +++ b/npc/custom/quests/thq/THQS_ChatingNPC.txt @@ -30,15 +30,15 @@ yuno_in01,32,178,3 script Ahlma 4_F_MAID,{ mes "Welcome to The Treasure Hunter Guild."; mes "How may I help you?"; next; - menu "Save",-,"Quit",N_Quit; + if (select("Save", "Quit") != 1) { + mes "[Ahlma]"; + mes "Well if you think you are safe, good on you."; + close; + } mes "[Ahlma]"; mes "Ok, saved. Thank you ~ See you soon~"; savepoint "yuno_in01",34,176; close; -N_Quit: - mes "[Ahlma]"; - mes "Well if you think you are safe, good on you."; - close; N_Member: mes "Sorry, members only."; close; |