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/quests/obb_quest.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/quests/obb_quest.txt')
-rw-r--r-- | npc/quests/obb_quest.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/quests/obb_quest.txt b/npc/quests/obb_quest.txt index e4115a574..9ce1bacf9 100644 --- a/npc/quests/obb_quest.txt +++ b/npc/quests/obb_quest.txt @@ -757,7 +757,7 @@ moc_ruins,105,62,4 script Jacob#thai 1_M_04,{ mes "to lie to nowadays...^000000"; next; mes "[Tommy]"; - if (Sex) + if (Sex == SEX_MALE) mes "So, mister, do you think my Daddy can catch a Munak with this?"; else mes "So, lady, do you think my Daddy can catch a Munak with this?"; @@ -774,7 +774,7 @@ moc_ruins,105,62,4 script Jacob#thai 1_M_04,{ close; case 2: mes "[Tommy]"; - if (Sex) + if (Sex == SEX_MALE) mes "So tell me, mister. Did he lie to me, then?"; else mes "So tell me, lady. Did he lie to me, then?"; @@ -973,7 +973,7 @@ moc_ruins,105,62,4 script Jacob#thai 1_M_04,{ mes "to behave in front of other people?!"; next; mes "[Jacob]"; - if (Sex) + if (Sex == SEX_MALE) mes "Say you're sorry to him!"; else mes "Say you're sorry to her!"; |