diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:48:55 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-17 17:44:36 +0530 |
commit | d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83 (patch) | |
tree | 6d0724392fc7454f4f6e9ea924fe16824fe48747 /npc/merchants/elemental_trader.txt | |
parent | 20f6d1a9d0448869c80510c9be58c9bf30ee23bb (diff) | |
download | hercules-d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83.tar.gz hercules-d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83.tar.bz2 hercules-d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83.tar.xz hercules-d2f9ad731c53da1bf0d9998cafef98fd8bf7ea83.zip |
Script Standardization: changed select format in merchants folder
Diffstat (limited to 'npc/merchants/elemental_trader.txt')
-rw-r--r-- | npc/merchants/elemental_trader.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/merchants/elemental_trader.txt b/npc/merchants/elemental_trader.txt index 928782255..bad49b4b2 100644 --- a/npc/merchants/elemental_trader.txt +++ b/npc/merchants/elemental_trader.txt @@ -61,7 +61,7 @@ ama_in02,61,27,7 script Alchemist#ama 4_M_ALCHE_B,{ mes "Keekeekee... Or else,"; mes "I will let you taste my acid bottle...!"; next; - if (select("Please, excuse me:Do you need help?") == 1) { + if (select("Please, excuse me", "Do you need help?") == 1) { mes "[Laspuchin Gregory]"; mes "Keheheh... Did you hear"; mes "what I said? It would be"; @@ -81,7 +81,7 @@ ama_in02,61,27,7 script Alchemist#ama 4_M_ALCHE_B,{ mes "I will use it efficiently..."; mes "Do you have them now?"; next; - if (select("Nope:I got some") == 1) { + if (select("Nope", "I got some") == 1) { mes "[Laspuchin Gregory]"; mes "Then, find 8 stones of one kind."; mes "If you bring 8 of one kind of"; @@ -104,7 +104,7 @@ ama_in02,61,27,7 script Alchemist#ama 4_M_ALCHE_B,{ mes "Uh-huh, what did you bring?"; next; setarray .@items[1],995,997,994,996; - .@i = .@items[select("Mystic Frozen:Great Nature:Flame Heart:Rough Wind")]; + .@i = .@items[select("Mystic Frozen", "Great Nature", "Flame Heart", "Rough Wind")]; mes "[Laspuchin Gregory]"; if (countitem(.@i) > 7) { mes "I will take 8 of them and"; |