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_ein.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_ein.txt')
-rw-r--r-- | npc/quests/quests_ein.txt | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/npc/quests/quests_ein.txt b/npc/quests/quests_ein.txt index b0376c9ed..baf3de04a 100644 --- a/npc/quests/quests_ein.txt +++ b/npc/quests/quests_ein.txt @@ -587,7 +587,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ mes "some. I guess you can"; mes "still give them to me, but"; mes "you'd get less of a reward"; - if (Sex) { + if (Sex == SEX_MALE) { mes "...you ^EEA9B8naughty boy^000000."; } else { @@ -653,7 +653,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ mes "a Black Smith!!"; } mes "This is my present for it."; - if (Sex) { + if (Sex == SEX_MALE) { mes "...you ^EEA9B8naughty boy^000000."; } else { @@ -708,7 +708,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ mes "That doesn't change"; mes "the fact that you've"; mes "been very, very bad."; - if (Sex) { + if (Sex == SEX_MALE) { mes "...You ^EEA9B8naughty boy^000000."; } else { @@ -753,7 +753,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ mes "some. I guess you can"; mes "still give them to me, but"; mes "you'd get less of a reward"; - if (Sex) { + if (Sex == SEX_MALE) { mes "...You ^EEA9B8naughty boy^000000."; } else { @@ -805,7 +805,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ mes "When you do get all"; mes "that Large Jellopy,"; mes "just come back to me."; - if (Sex) { + if (Sex == SEX_MALE) { mes "...you ^EEA9B8naughty boy^000000."; } else { @@ -853,7 +853,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ else { mes "a Black Smith!!"; mes "This is my present for it. Huhuhu."; - if (Sex) { + if (Sex == SEX_MALE) { mes "...You ^EEA9B8naughty boy^000000."; } else { @@ -896,7 +896,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ mes "a craftsman can enjoy. Ooh,"; mes "what do you think is the most"; mes "important factor in cooking,"; - if (Sex) { + if (Sex == SEX_MALE) { mes "you ^EEA9B8naughty little man^000000?"; } else { @@ -2127,7 +2127,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ next; mes "[Uwe]"; mes "What brings to"; - if (Sex) { + if (Sex == SEX_MALE) { mes "me, you ^EEA9B8naughty boy^000000?"; } else { @@ -3035,7 +3035,7 @@ einbroch,215,180,6 script Uwe Kleine#ein 4_M_03,{ mes "So, how can"; mes "I help you, you"; mes "adooooooooorable"; - if (Sex) { + if (Sex == SEX_MALE) { mes "hunk of a man?"; } else { @@ -4556,7 +4556,7 @@ einbech,165,105,7 script Buender Hikeman#ein 4_M_EINOLD,{ mes "[Buender Hikeman]"; mes "Huh."; next; - if (Sex == 0) { + if (Sex == SEX_FEMALE) { mes "["+strcharinfo(0)+"]"; mes "And..."; mes "I'm a cute girl!"; |