diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:31:48 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:31:48 +0530 |
commit | 6cc913e3fada193e29b09c10c728d15d29c49499 (patch) | |
tree | 57ccb7130c3b79bf8a6a200c9c4e089c36e760a3 /npc/events/StPatrick_2008.txt | |
parent | fa0b6b57f01f2ff360a633e5b5620998b7c4a9c6 (diff) | |
download | hercules-6cc913e3fada193e29b09c10c728d15d29c49499.tar.gz hercules-6cc913e3fada193e29b09c10c728d15d29c49499.tar.bz2 hercules-6cc913e3fada193e29b09c10c728d15d29c49499.tar.xz hercules-6cc913e3fada193e29b09c10c728d15d29c49499.zip |
Script Standardization: changed select format in events folder
Diffstat (limited to 'npc/events/StPatrick_2008.txt')
-rw-r--r-- | npc/events/StPatrick_2008.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/events/StPatrick_2008.txt b/npc/events/StPatrick_2008.txt index 9b4123345..a47e7f661 100644 --- a/npc/events/StPatrick_2008.txt +++ b/npc/events/StPatrick_2008.txt @@ -89,7 +89,7 @@ prt_fild05,170,286,4 script Anxious Leprechaun#8pday 4_M_PATRICK,{ mes "I have not even begun brewing me famous green ale on account of this mess."; mes "I will ask ye, will ya help get me treasure back?"; next; - if (select("Sure, I can help you.:I'm too busy.") == 2) { + if (select("Sure, I can help you.", "I'm too busy.") == 2) { mes "[O'Riley the Leprechaun]"; mes "Aye, I understand."; mes "Thank you for listening to me tale."; @@ -182,7 +182,7 @@ prt_fild05,170,286,4 script Anxious Leprechaun#8pday 4_M_PATRICK,{ mes "It be a fair bounty for the ill-gotten coins."; mes "So, what kind of coin have ye brought?"; next; - switch(select("Bronze Coins:Silver Coins:Gold Coins:Quit.")) { + switch(select("Bronze Coins", "Silver Coins", "Gold Coins", "Quit.")) { case 1: mes "[O'Riley the Leprechaun]"; mes "Thank you. Here's your ale~"; @@ -232,7 +232,7 @@ OnTouch: close; } else { - if (select("Use Firecrackers.:Ignore") == 2) { + if (select("Use Firecrackers.", "Ignore") == 2) { close; } mes "You buried 200 Firecrackers under the pile of rocks."; |