diff options
author | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-07 01:23:46 +0100 |
commit | 1fd628e7be9e6de4ea48394be09ae10e912d8f3d (patch) | |
tree | 4e5b42a444f83976c33f22540d3aa46a8ceb7001 /npc/quests/quests_izlude.txt | |
parent | e68aa1f74d315f7bf24d7c8829002d0031b23539 (diff) | |
parent | 0462bc828e59ce99a48303a2f6190d3a01ce9465 (diff) | |
download | hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.gz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.bz2 hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.tar.xz hercules-1fd628e7be9e6de4ea48394be09ae10e912d8f3d.zip |
Merge pull request #1110 from dastgir/22-ScriptClean-Phase2
Script CleanUp Phase 2
Diffstat (limited to 'npc/quests/quests_izlude.txt')
-rw-r--r-- | npc/quests/quests_izlude.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/quests/quests_izlude.txt b/npc/quests/quests_izlude.txt index b17354cb4..1115e075b 100644 --- a/npc/quests/quests_izlude.txt +++ b/npc/quests/quests_izlude.txt @@ -43,7 +43,7 @@ mes "So are you heading to Alberta again? Let me give you the same discount and only charge 250 Zeny, just like the last time."; mes "How's that sound?"; next; - if (select("Alrighty~!:Why are you being so nice to me?!") == 1) { + if (select("Alrighty~!", "Why are you being so nice to me?!") == 1) { if (Zeny < 250) { mes "[Edgar]"; mes "Um..."; @@ -73,11 +73,11 @@ mes "[Edgar]"; mes "Lately, people in Alberta say that he is really trying to help folks and that his demand for Jellopies is just a coverup. Well, you should take a look at what he has to offer."; next; - if (select("Can you tell me how to get to Alberta?:End Conversation") == 1) { + if (select("Can you tell me how to get to Alberta?", "End Conversation") == 1) { mes "[Edgar]"; mes "Huh? Well, you can use your feet and just walk. But if you have money, I'd like to suggest that you take a ship."; next; - if (select("Okay, gotcha.:But I'm sick of walking and I'm broke!") == 1) { + if (select("Okay, gotcha.", "But I'm sick of walking and I'm broke!") == 1) { mes "[Edgar]"; mes "Alrighty, take care~"; close; @@ -89,7 +89,7 @@ mes "[Edgar]"; mes "Fine fine. Me, being the captain of a ship, can afford to bring you there at a lower price. How does 250 Zeny sound?"; next; - if (select("Alrighty~!:Bah, what a rip off!!") == 1) { + if (select("Alrighty~!", "Bah, what a rip off!!") == 1) { MISC_QUEST |= 16; if (Zeny < 250) { mes "[Edgar]"; |