diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:45:53 +0530 |
---|---|---|
committer | Dastgir <dastgirpojee@rocketmail.com> | 2016-01-16 20:45:53 +0530 |
commit | 67eb36ab193d7258e9f225891474c2914d1bba64 (patch) | |
tree | 64de31fd5c47780e00f60ab2a825a362f0114e7c /npc/jobs/2-2/bard.txt | |
parent | fcfe8a19a4db505b277d1946761d2c1285413aee (diff) | |
download | hercules-67eb36ab193d7258e9f225891474c2914d1bba64.tar.gz hercules-67eb36ab193d7258e9f225891474c2914d1bba64.tar.bz2 hercules-67eb36ab193d7258e9f225891474c2914d1bba64.tar.xz hercules-67eb36ab193d7258e9f225891474c2914d1bba64.zip |
Script Standardization: changed select format in jobs folder
Diffstat (limited to 'npc/jobs/2-2/bard.txt')
-rw-r--r-- | npc/jobs/2-2/bard.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/jobs/2-2/bard.txt b/npc/jobs/2-2/bard.txt index 1839e9fb4..0def0ce9d 100644 --- a/npc/jobs/2-2/bard.txt +++ b/npc/jobs/2-2/bard.txt @@ -111,7 +111,7 @@ comodo,226,123,5 script Wandering Bard 2_M_BARD_ORIENT,{ else mes "Hello! Beautiful Archer Lady."; mes "How can a wanderer like me help you?"; next; - switch(select("You have a nice voice.:Could you sing for me, please?:Nothing.")) { + switch(select("You have a nice voice.", "Could you sing for me, please?", "Nothing.")) { case 1: mes "[Lalo]"; mes "Hahaha! Of course!"; @@ -156,7 +156,7 @@ comodo,226,123,5 script Wandering Bard 2_M_BARD_ORIENT,{ mes "Hmm... that's always a good song to sing."; mes "How was it? Don't you think it's a nice song?"; next; - if (select("Yes, it was very nice.:No, not really...") == 1) { + if (select("Yes, it was very nice.", "No, not really...") == 1) { mes "[Lalo]"; mes "Thanks! if you enjoyed my song, it makes me happy, too."; next; @@ -203,13 +203,13 @@ comodo,226,123,5 script Wandering Bard 2_M_BARD_ORIENT,{ mes "Hey there Archer fellow."; mes "How can a wanderer like me help you?"; next; - switch(select("You have a nice voice.:Could you sing for me, please?:Nothing.")) { + switch(select("You have a nice voice.", "Could you sing for me, please?", "Nothing.")) { case 1: mes "[Lalo]"; mes "Hoho, your voice is rather nice as well?"; mes "Ever think about singing?"; next; - if (select("Of course!:I can't quite possibly...") == 1) { + if (select("Of course!", "I can't quite possibly...") == 1) { mes "[Lalo]"; mes "Haha, nice attitude. You have to be like that to become a Bard."; mes "I'll help you become a Bard then."; @@ -854,7 +854,7 @@ comodo,226,123,5 script Wandering Bard 2_M_BARD_ORIENT,{ mes "Do you want to just change jobs now?"; mes "Or do you want a present."; next; - .@selection = select("Just change my job please.:I'd be thankful for a present."); + .@selection = select("Just change my job please.", "I'd be thankful for a present."); } if ((.@selection == 1) || (BARD_Q == 5)) { if(SkillPoint) { @@ -886,7 +886,7 @@ comodo,226,123,5 script Wandering Bard 2_M_BARD_ORIENT,{ mes "Mmm? Seems like you haven't prepared all trunks the yet? "; mes "Do you want to just change jobs anyways?"; next; - if (select("Yes, just change my job already.:No, I'll go prepare them.") == 2) + if (select("Yes, just change my job already.", "No, I'll go prepare them.") == 2) break; default: completequest 3003; |