diff options
author | Streusel <advance_me@hotmail.de> | 2013-02-13 15:57:29 -0800 |
---|---|---|
committer | Streusel <advance_me@hotmail.de> | 2013-02-13 15:57:29 -0800 |
commit | f79e5b0e8e2939b2e8939a0cf1aba682e6877ba9 (patch) | |
tree | 6906ce6239c2b1827afb7fd8b30a9c3645edc01b /npc | |
parent | f2860969d87d29b8bc0d1bfc780e8234bef8bbb4 (diff) | |
download | hercules-f79e5b0e8e2939b2e8939a0cf1aba682e6877ba9.tar.gz hercules-f79e5b0e8e2939b2e8939a0cf1aba682e6877ba9.tar.bz2 hercules-f79e5b0e8e2939b2e8939a0cf1aba682e6877ba9.tar.xz hercules-f79e5b0e8e2939b2e8939a0cf1aba682e6877ba9.zip |
-Removed leftover 'case 1:' causing error
Diffstat (limited to 'npc')
-rw-r--r-- | npc/cities/alberta.txt | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/npc/cities/alberta.txt b/npc/cities/alberta.txt index 7f9bbe01d..3909d63b2 100644 --- a/npc/cities/alberta.txt +++ b/npc/cities/alberta.txt @@ -67,11 +67,11 @@ alberta,131,139,2 script Drunken Old Man 54,{ mes "Wh-what are you"; mes "staring at? Get lost!!"; next; - if(select("Say nothing.","Leave him alone.") ==1) { + if(select("Say nothing.","Leave him alone.") == 1) { mes "[Deagle]"; mes "Hahahaha ^666666*hiccup*^000000... You've got some nerve. I may look worthless now, but I used to be a sailor on the 'Going Mary.'"; next; - if(select("Never heard of it.","Really? No kidding!") ==1) { + if(select("Never heard of it.","Really? No kidding!") == 1) { mes "[Deagle]"; mes "Never heard of it?! Everybody knows th'notorious pirate ship 'Going Mary!' ^666666*Hiccup~*^000000"; next; @@ -228,7 +228,7 @@ alb2trea,39,50,6 script Fisk#a2t 100,{ mes "[Fisk]"; mes "So you wanna head back to the mainland in Alberta, eh?"; next; - if(select("Yes please.","I changed my mind.")==1) + if(select("Yes please.","I changed my mind.") == 1) warp "alberta",192,169; close; } @@ -251,7 +251,7 @@ alberta,195,151,2 script Paul 86,{ mes "fee is only"; mes "200 Zeny."; next; - if(select("Sign me up!","Uh, no thanks.") ==1) { + if(select("Sign me up!","Uh, no thanks.") == 1) { if (Zeny < 200) { mes "[Paul]"; mes "It seems you don't have the money, my friend. But please come back when you're able to pay."; @@ -295,8 +295,7 @@ alberta,190,173,4 script Phelix 85,{ } mes "Hmm.. you want to exchange jellopies for Red Potions or some Carrots eh? Well.. which one?"; next; - if(select("Red Potions please.","Carrots please.") ==1) { - case 1: + if(select("Red Potions please.","Carrots please.") == 1) { mes "[Phelix]"; mes "Alright..."; mes "Let's see"; |