diff options
author | Emistry <Equinox1991@gmail.com> | 2016-01-25 23:00:26 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-29 01:52:22 +0100 |
commit | 05a2538114972de94352e66586f6f2a5affea9c6 (patch) | |
tree | f39d3e659d9b3801cc42a7b14e41aeec16c93ddf /npc/cities/jawaii.txt | |
parent | 75ba7024fe3b68718d0f0a289a68ea0719054d3b (diff) | |
download | hercules-05a2538114972de94352e66586f6f2a5affea9c6.tar.gz hercules-05a2538114972de94352e66586f6f2a5affea9c6.tar.bz2 hercules-05a2538114972de94352e66586f6f2a5affea9c6.tar.xz hercules-05a2538114972de94352e66586f6f2a5affea9c6.zip |
Replaced the SEX_FEMALE/SEX_MALE constants to scripts, where appropriate
Diffstat (limited to 'npc/cities/jawaii.txt')
-rw-r--r-- | npc/cities/jawaii.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/cities/jawaii.txt b/npc/cities/jawaii.txt index 2af5ffcbb..c1e199ea1 100644 --- a/npc/cities/jawaii.txt +++ b/npc/cities/jawaii.txt @@ -502,7 +502,7 @@ jawaii_in,25,98,0 script Employee#jaw3 4_F_07,{ mes "Oh~"; mes "Look at you..."; mes "You look perfect"; - if (Sex) + if (Sex == SEX_MALE) mes "for your wife~"; else mes "with your husband~"; @@ -516,7 +516,7 @@ jawaii_in,25,98,0 script Employee#jaw3 4_F_07,{ mes "Hmm...?"; mes "You don't look like"; mes "you're married, are you?"; - if (Sex) { + if (Sex == SEX_MALE) { next; mes "[Employee Buffy]"; mes "I'm pretty good"; @@ -1175,7 +1175,7 @@ jawaii_in,41,106,3 script Customer#Cage 4W_M_02,{ mes "After all, everyone knows marriage is a sham for desperate, lonely people!"; next; mes "[Cage]"; - if (Sex) { + if (Sex == SEX_MALE) { mes "I don't trust anybody!"; mes "You're a fool for chaining"; mes "yourself to some gorgeous"; @@ -1357,7 +1357,7 @@ prt_in,173,13,4 script Customer#SoloHan 4_M_04,{ mes "...Wha!?"; mes "Oh man!"; mes "Get outta my face!"; - if (Sex) { + if (Sex == SEX_MALE) { mes "You smell like,"; mes "whupped boyfriend"; mes "or something!"; |