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/monstertamers.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/monstertamers.txt')
-rw-r--r-- | npc/quests/monstertamers.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/quests/monstertamers.txt b/npc/quests/monstertamers.txt index 66faad8b9..503fc23bd 100644 --- a/npc/quests/monstertamers.txt +++ b/npc/quests/monstertamers.txt @@ -645,7 +645,7 @@ comodo,112,182,0 script Munak's Grandma 8_F_GRANDMOTHER,{ mes "[Munak's grandma]"; mes "Oh my..."; mes "Have you seen my granddaughter,"; - if (Sex == 1) { + if (Sex == SEX_MALE) { mes "boy? My poor granddaughter"; } else { @@ -697,7 +697,7 @@ comodo,112,182,0 script Munak's Grandma 8_F_GRANDMOTHER,{ mes "Th-This is her writing! Oh my...!"; next; mes "[Munak's Grandma]"; - if (Sex == 1) { + if (Sex == SEX_MALE) { mes "Young man... I'll read this to you if"; } else { @@ -711,7 +711,7 @@ comodo,112,182,0 script Munak's Grandma 8_F_GRANDMOTHER,{ case 1: mes "[Munak's Grandma]"; mes "Oh...?"; - if (Sex == 1) { + if (Sex == SEX_MALE) { mes "Alright, young man."; mes "Thank you anyway."; } @@ -729,7 +729,7 @@ comodo,112,182,0 script Munak's Grandma 8_F_GRANDMOTHER,{ delitem 1558,1; delitem 901,1; mes "[Munak's Grandma]"; - if (Sex == 1) { + if (Sex == SEX_MALE) { mes "Oh!"; mes "Thank you,"; mes "young man~!"; |