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/re/events | |
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/re/events')
-rw-r--r-- | npc/re/events/halloween_2014.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/re/events/halloween_2014.txt b/npc/re/events/halloween_2014.txt index caed3f488..65afecedc 100644 --- a/npc/re/events/halloween_2014.txt +++ b/npc/re/events/halloween_2014.txt @@ -68,7 +68,7 @@ } else { if (questprogress(14450) == 2) { mes "[Mighty Priest]"; - mes ""+(Sex ? "Brother" : "Sister")+", it's good to see you again!"; + mes (Sex == SEX_MALE ? "Brother" : "Sister") +", it's good to see you again!"; mes "came here to see me because of that?"; next; mes "[Mighty Priest]"; @@ -181,13 +181,13 @@ next; mes "[Mighty Priest]"; mes "I feel much better now!"; - mes ""+(Sex ? "Brother" : "Sister")+", thank you so much for waking me up."; + mes (Sex == SEX_MALE ? "Brother" : "Sister") +", thank you so much for waking me up."; next; mes "["+strcharinfo(0)+"]"; mes "What made you so tired?"; next; mes "[Mighty Priest]"; - mes ""+(Sex ? "Brother" : "Sister")+", you didn't have any damage yet?"; + mes (Sex == SEX_MALE ? "Brother" : "Sister") +", you didn't have any damage yet?"; next; mes "["+strcharinfo(0)+"]"; mes "What happened to you?"; @@ -213,7 +213,7 @@ mes "Could you maybe help me out?"; next; mes "[Mighty Priest]"; - mes "They would not damage you at all, "+(Sex ? "brother" : "sister")+"."; + mes "They would not damage you at all, "+ (Sex == SEX_MALE ? "brother" : "sister") +"."; mes "I would also give you a reward for the trouble."; next; mes "[Mighty Priest]"; @@ -1426,7 +1426,7 @@ prt_church,96,91,4 script Spiritual Sister#14hal 1_F_PRIEST,5,5,{ } else if (questprogress(14455) == 1) { mes "[Sister Haley]"; mes "I hope all is well with everyone visiting here~"; - mes "Oh! Is it you, "+(Sex ? "brother" : "sister")+"? How is it going with the thing you need to do?"; + mes "Oh! Is it you, "+ (Sex == SEX_MALE ? "brother" : "sister") +"? How is it going with the thing you need to do?"; next; mes "["+strcharinfo(0)+"]"; mes "Well.. I could identify the live ones."; @@ -1598,7 +1598,7 @@ prt_church,96,91,4 script Spiritual Sister#14hal 1_F_PRIEST,5,5,{ } else if (questprogress(14451) == 1) { mes "[Sister Haley]"; mes "I hope all is well with everyone visiting here~"; - mes "What makes you come here, "+(Sex ? "brother" : "sister")+"?"; + mes "What makes you come here, "+ (Sex == SEX_MALE? "brother" : "sister") +"?"; next; mes "[I told her what happened in Nifflheim.]"; next; |