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/quests_prontera.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/quests_prontera.txt')
-rw-r--r-- | npc/quests/quests_prontera.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/quests/quests_prontera.txt b/npc/quests/quests_prontera.txt index c5e817700..02030dcc3 100644 --- a/npc/quests/quests_prontera.txt +++ b/npc/quests/quests_prontera.txt @@ -276,7 +276,7 @@ prontera,248,212,3 script Busy Boy#prt 4_M_KID1,3,3,{ mes ".........?"; next; mes "[Busy-Looking Boy]"; - if (Sex) { + if (Sex == SEX_MALE) { mes "Ack! You're that clumsy"; mes "dude who made me drop"; } @@ -302,7 +302,7 @@ prontera,248,212,3 script Busy Boy#prt 4_M_KID1,3,3,{ next; select("Well, I, um..."); mes "[Busy-Looking Boy]"; - if (Sex) { + if (Sex == SEX_MALE) { mes "Yeah... A real"; mes "man wouldn't have"; mes "ditched back then"; @@ -2257,7 +2257,7 @@ prt_church,185,106,3 script Father Bamph 1_M_PASTOR,{ mes "sent this adventurer here"; mes "for a favor, it probably means"; mes "she trusts this person. Besides, we need somebody to carry out"; - if (Sex) + if (Sex == SEX_MALE) mes "this task for us. Why not him?"; else mes "this task for us. Why not her?"; |