diff options
Diffstat (limited to 'npc/other/divorce.txt')
-rw-r--r-- | npc/other/divorce.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/other/divorce.txt b/npc/other/divorce.txt index 690182c0a..dd4bad6b6 100644 --- a/npc/other/divorce.txt +++ b/npc/other/divorce.txt @@ -58,7 +58,7 @@ nif_in,190,112,5 script Deviruchi#divorce 4_DEVIRUCHI,{ if (!getpartnerid()) { mes "Bwah hah hah~!"; mes "That look in your eyes~!"; - if (Sex) { + if (Sex == SEX_MALE) { mes "Those are definitely the eyes"; mes "of a lonely male bachelor."; mes "I'm almost 100 percent sure"; @@ -90,7 +90,7 @@ nif_in,190,112,5 script Deviruchi#divorce 4_DEVIRUCHI,{ mes "I sense that you carry a"; mes "tiresome burden..."; mes "If I'm not wrong, you're"; - if (Sex) + if (Sex == SEX_MALE) mes "a married man, aren't you?"; else mes "a married woman, aren't you?"; @@ -113,7 +113,7 @@ nif_in,190,112,5 script Deviruchi#divorce 4_DEVIRUCHI,{ mes "At the end of the day, you and"; mes "your partner fight, and you feel"; mes "totally totally miserable."; - if (Sex) + if (Sex == SEX_MALE) mes "...all because of HER."; else mes "...all because of HIM."; @@ -137,7 +137,7 @@ nif_in,190,112,5 script Deviruchi#divorce 4_DEVIRUCHI,{ mes "[Deviruchi]"; mes "*whispers*"; mes "^555555It's not like you're breaking^000000"; - if (Sex) { + if (Sex == SEX_MALE) { mes "^555555any promises, and it's not"; mes "like your wife will care if she"; mes "doesn't know... Don't you"; @@ -157,7 +157,7 @@ nif_in,190,112,5 script Deviruchi#divorce 4_DEVIRUCHI,{ mes "I can help you if you want..."; mes "I can make all of this happen!"; next; - if (select("No thanks, I am happy.:Yes, please do.") == 1) { + if (select("No thanks, I am happy.", "Yes, please do.") == 1) { mes "[Deviruchi]"; mes "Hmpf~! You must still be"; mes "fascinated with the silly"; @@ -181,11 +181,11 @@ nif_in,190,112,5 script Deviruchi#divorce 4_DEVIRUCHI,{ mes "single's life. All you have to"; mes "do is say the word..."; next; - if (select("...Give me some time to think.:Any price will do, give me a divorce right now!") == 1) { + if (select("...Give me some time to think.", "Any price will do, give me a divorce right now!") == 1) { mes "[Deviruchi]"; mes "I understand. But if you think"; mes "about anything, think about"; - if (Sex) { + if (Sex == SEX_MALE) { mes "your wife's nagging, and"; mes "how great it would be to"; mes "finally free yourself of the"; |