diff options
Diffstat (limited to 'npc/cities/louyang.txt')
-rw-r--r-- | npc/cities/louyang.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/cities/louyang.txt b/npc/cities/louyang.txt index c73c6c2df..dca5f0376 100644 --- a/npc/cities/louyang.txt +++ b/npc/cities/louyang.txt @@ -54,7 +54,7 @@ mes "on a picnic somewhere~"; mes "La la la la~"; next; - switch(select("About Louyang.:Go to Louyang.:Cancel.")) { + switch(select("About Louyang.", "Go to Louyang.", "Cancel.")) { case 1: mes "[Girl]"; mes "Oh, are you"; @@ -90,7 +90,7 @@ mes "[Girl]"; mes "So, are you ready?"; next; - if (select("Yes!:No.") == 1) { + if (select("Yes!", "No.") == 1) { if (Zeny > 9999) { mes "[Girl]"; mes "Okay~"; @@ -128,7 +128,7 @@ lou_fild01,190,100,7 script Girl#1lou 4_F_CHNDRESS1,{ mes "like to go back"; mes "to Alberta?"; next; - if (select("Go back to Alberta.:Cancel.") == 1) { + if (select("Go back to Alberta.", "Cancel.") == 1) { mes "[Girl]"; mes "I hope to"; mes "see you again!"; @@ -146,7 +146,7 @@ lou_fild01,190,100,7 script Girl#1lou 4_F_CHNDRESS1,{ mes "stay and enjoy the"; mes "the food and the sights!"; next; - if (Sex) { + if (Sex == SEX_MALE) { mes "[Girl]"; mes "And by sights..."; mes "I mean girls!"; @@ -162,7 +162,7 @@ lou_fild01,190,100,7 script Girl#1lou 4_F_CHNDRESS1,{ //== Generic Louyang NPCs ================================== louyang,297,167,2 script Muscular Woman#lou 4_F_CHNDRESS1,{ - if (!Sex) { + if (Sex == SEX_FEMALE) { mes "[Zhi Ching Li]"; mes "All the members of the Maiden Palace, including myself and our master, are all female."; next; @@ -294,7 +294,7 @@ lou_in01,25,23,5 script Friendly Looking Lady#lo 4_F_CHNDRESS3,{ mes "This is an elevator which leads"; mes "to the Observation Tower. We are providing you a safe and fast transfer service for an affordable fee. Would you like to use this service?"; next; - switch(select("Information.:Yes.:Maybe next time.")) { + switch(select("Information.", "Yes.", "Maybe next time.")) { case 1: mes "[Hong Miao]"; mes "After many suggestions and proposals were sent to the Louyang tourism office, the Observation Tower was built so tourists can enjoy the sights."; @@ -334,7 +334,7 @@ louyang,84,254,0 script Exit#lou HIDDEN_NPC,{ mes "of descent apparatus."; mes "Would you like to use it?^000000"; next; - if (select("Yes.:No.") == 1) { + if (select("Yes.", "No.") == 1) { if (rand(1,100) == 34) { percentheal -99,0; warp "louyang",86,269; |