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/halloween_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/halloween_2008.txt')
-rw-r--r-- | npc/events/halloween_2008.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/events/halloween_2008.txt b/npc/events/halloween_2008.txt index 3c1b65db1..66fe73c33 100644 --- a/npc/events/halloween_2008.txt +++ b/npc/events/halloween_2008.txt @@ -58,7 +58,7 @@ payon,162,176,4 script Halloween Magician#iRO08 4_M_BIBI,{ mes "Do you know the rules?"; next; Hallow08Kill = 0; - if(select("Yes, I know.:No, I don't know.") == 2) { + if(select("Yes, I know.", "No, I don't know.") == 2) { callsub(S_Rules); callsub(S_MainMenu); end; @@ -218,7 +218,7 @@ S_TicketExchange: next; .@item_id = null; .@amount = 0; - switch(select("Pumpkin Pie:Pumpkin-Head:Old Blue Box:Old Purple Box:Old Card Album")) { + switch(select("Pumpkin Pie", "Pumpkin-Head", "Old Blue Box", "Old Purple Box", "Old Card Album")) { case 1: .@amount = 5; .@item_id = Pumpkin_Pie; |