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/quests/quests_dicastes.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/re/quests/quests_dicastes.txt')
-rw-r--r-- | npc/re/quests/quests_dicastes.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/re/quests/quests_dicastes.txt b/npc/re/quests/quests_dicastes.txt index 3b3ad4ee1..562d205d3 100644 --- a/npc/re/quests/quests_dicastes.txt +++ b/npc/re/quests/quests_dicastes.txt @@ -1335,7 +1335,7 @@ OnTouch: mes "Hold up your head and come closer."; mes "Conversations are meant to have with eye contact."; next; - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),1; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),1; mes "You hold up your head at the sound of Ahat's voice"; mes "But you see a human in high-ranking Sapha clothing in front of you."; sc_end SC_BLIND; @@ -1375,7 +1375,7 @@ dic_in01,294,276,5 script Secret Adjutant#ep133_2 4_M_CATMAN2,{ mes ".. Hey, what are you talking about?"; mes "What do you want to say?"; next; - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),2; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),2; mes "[Ahat]"; mes "" + strcharinfo(0) + "...."; mes "All you need to do is follow Cheshire's orders."; @@ -1540,7 +1540,7 @@ dic_in01,300,280,5 script Minister Ahat#ep133_21 4_HUMAN_GERUTOO,{ mes "Hold up your head and come closer."; mes "Conversations are meant to have with eye contact."; next; - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),2; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),2; mes "You hold up your head at the sound of Ahat's voice"; mes "But you see a human in high-ranking Sapha clothing in front of you."; sc_end SC_BLIND; @@ -1550,7 +1550,7 @@ dic_in01,300,280,5 script Minister Ahat#ep133_21 4_HUMAN_GERUTOO,{ close2; } else if (ep13_3_secret == 14) { - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),2; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),2; mes "[Ahat]"; mes "Surprised?"; mes "Because I look like a human just like you?"; @@ -1689,7 +1689,7 @@ dic_in01,300,280,5 script Minister Ahat#ep133_21 4_HUMAN_GERUTOO,{ close2; } else if (ep13_3_secret == 15) { - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),2; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),2; mes "[Ahat]"; mes "My loyal evil servant."; mes "Come closer."; @@ -1740,7 +1740,7 @@ dic_in01,300,280,5 script Minister Ahat#ep133_21 4_HUMAN_GERUTOO,{ close2; } else if (ep13_3_secret == 16) { - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),2; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),2; mes "[Ahat]"; mes "You must follow Cheshire's orders from now on."; mes "Go now."; @@ -1750,7 +1750,7 @@ dic_in01,300,280,5 script Minister Ahat#ep133_21 4_HUMAN_GERUTOO,{ close2; } else if (ep13_3_secret == 17) { - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),2; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),2; mes "[Ahat]"; mes "Cheshire's orders are important for future plans."; mes "Make no mistakes and never leave traces that may lead to me."; @@ -1758,7 +1758,7 @@ dic_in01,300,280,5 script Minister Ahat#ep133_21 4_HUMAN_GERUTOO,{ close2; } else if (ep13_3_secret == 18) { - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),2; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),2; mes "[Ahat]"; mes "Do you have something to say?"; mes "You've done well in the crack area."; @@ -1787,7 +1787,7 @@ dic_in01,300,280,5 script Minister Ahat#ep133_21 4_HUMAN_GERUTOO,{ close2; } else { - cutin (Sex?"ep13_ahat_f":"ep13_ahat_m"),2; + cutin (Sex == SEX_MALE?"ep13_ahat_f":"ep13_ahat_m"),2; mes "[Ahat]"; mes "Follow Cheshire's orders for the time being and clear the area nearby the crack."; next; |