diff options
author | Haru <haru@dotalux.com> | 2016-02-29 01:53:24 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-02-29 01:53:24 +0100 |
commit | 12a85a011c2008ea92b9197e79646aaa6ece5a41 (patch) | |
tree | f39d3e659d9b3801cc42a7b14e41aeec16c93ddf /npc/quests/dandelion_request.txt | |
parent | 844d429119e671f8abbdb335233eba1bb156721c (diff) | |
parent | 05a2538114972de94352e66586f6f2a5affea9c6 (diff) | |
download | hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.gz hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.bz2 hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.tar.xz hercules-12a85a011c2008ea92b9197e79646aaa6ece5a41.zip |
Merged pull request #1123 - Add Constant for Gender.
Closes #1123 as merged
Diffstat (limited to 'npc/quests/dandelion_request.txt')
-rw-r--r-- | npc/quests/dandelion_request.txt | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/npc/quests/dandelion_request.txt b/npc/quests/dandelion_request.txt index 20ccb9332..c7add936e 100644 --- a/npc/quests/dandelion_request.txt +++ b/npc/quests/dandelion_request.txt @@ -3642,8 +3642,10 @@ que_job01,84,17,3 script Lin#2-1 4_F_ACROSS,{ mes "[Lin]"; mes "Ah, this is "+ strcharinfo(0) +","; mes "my partner for this assignment."; - if(Sex == 1) mes "Don't worry, you can trust him."; - else mes "Don't worry, you can trust her."; + if (Sex == SEX_MALE) + mes "Don't worry, you can trust him."; + else + mes "Don't worry, you can trust her."; next; mes "[R.]"; mes "Ah, I see. Please,"; @@ -3938,8 +3940,10 @@ que_job01,84,17,3 script Lin#2-1 4_F_ACROSS,{ mes "[Lin]"; mes "I'm sending "+ strcharinfo(0) +""; mes "on a snack errand and it won't"; - if(Sex == 1) mes "take too long. Did you want him"; - else mes "take too long. Did you want her"; + if (Sex == SEX_MALE) + mes "take too long. Did you want him"; + else + mes "take too long. Did you want her"; mes "to bring you back anything?"; next; cutin "mocseal_dan01.bmp",0; @@ -4186,8 +4190,10 @@ que_job01,79,15,1 script R 4_M_MASKMAN,{ mes "[Lin]"; mes "Ah, this is "+ strcharinfo(0) +","; mes "my partner for this assignment."; - if(Sex == 1) mes "Don't worry, you can trust him."; - else mes "Don't worry, you can trust her."; + if (Sex == SEX_MALE) + mes "Don't worry, you can trust him."; + else + mes "Don't worry, you can trust her."; next; mes "[R.]"; mes "Ah, I see. Please, for"; |