diff options
author | Michieru <michieru@0-mail.com> | 2013-10-24 12:10:43 +0200 |
---|---|---|
committer | Michieru <michieru@0-mail.com> | 2013-10-24 12:10:43 +0200 |
commit | e3afdc2af4c5e50c79237ee092e25f39b7428e47 (patch) | |
tree | 20cfd05dd6fc2e3e53173ef059f045cee1526d58 /npc/other/divorce.txt | |
parent | 491892212d338903179909b89a5bfc2385e52261 (diff) | |
download | hercules-e3afdc2af4c5e50c79237ee092e25f39b7428e47.tar.gz hercules-e3afdc2af4c5e50c79237ee092e25f39b7428e47.tar.bz2 hercules-e3afdc2af4c5e50c79237ee092e25f39b7428e47.tar.xz hercules-e3afdc2af4c5e50c79237ee092e25f39b7428e47.zip |
Update to last rAthena npc.
Fix some typos
change sc_bleeding to -> sc_blooding
Updated RE EXP for quests_brasilis.txt
Diffstat (limited to 'npc/other/divorce.txt')
-rw-r--r-- | npc/other/divorce.txt | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/npc/other/divorce.txt b/npc/other/divorce.txt index 1511a68b2..571660f1b 100644 --- a/npc/other/divorce.txt +++ b/npc/other/divorce.txt @@ -1,26 +1,26 @@ -//===== Hercules Script ====================================== +//===== Hercules Script ====================================== //= Divorcing Deviruchi -//===== By: ================================================== +//===== By: ================================================== //= Perkka, Scriptor, LightFighter //= L0ne_W0lf -//===== Current Version: ===================================== +//===== Current Version: ===================================== //= 1.5 -//===== Description: ========================================= -//= [Aegis Conversion] +//===== Description: ========================================= +//= [Official Conversion] //= Official Divorce script. //= Added isloggedin() check, even though Aegis doesn't do it; //= should be able to divorce even when the spouse is not online. -//===== Additional Comments: ================================= +//===== Additional Comments: ================================= //= Both players should be online to get divorced //= Fixed menu [Lupus] //= 1.1 Added check if the patner's online, added effects [Lupus] //= 1.2 Updated to Aegis 10.3 standards. [L0ne_W0lf] //= 1.2a Commented out check of 'wedding_sign' to let -//= old married players divorcing, optimized, fixed a bug [Lupus] +//= old married players divorcing, optimized, fixed a bug [Lupus] //= 1.3 Wedding variable 'wedding_sign' is now unset on divorce. [L0ne_W0lf] //= 1.4 Removed ifpartneron check, fixed typo in percentheal. [L0ne_W0lf] //= 1.5 Replaced effect numerics with constants. [L0ne_W0lf] -//============================================================ +//============================================================ nif_in,190,112,5 script Deviruchi#divorce 738,{ mes "[Deviruchi]"; @@ -42,7 +42,7 @@ nif_in,190,112,5 script Deviruchi#divorce 738,{ if (!getpartnerid()) { mes "Bwah hah hah~!"; mes "That look in your eyes~!"; - if (sex) { + if (Sex) { mes "Those are definitely the eyes"; mes "of a lonely male bachelor."; mes "I'm almost 100 percent sure"; @@ -74,7 +74,7 @@ nif_in,190,112,5 script Deviruchi#divorce 738,{ mes "I sense that you carry a"; mes "tiresome burden..."; mes "If I'm not wrong, you're"; - if (sex) + if (Sex) mes "a married man, aren't you?"; else mes "a married woman, aren't you?"; @@ -97,7 +97,7 @@ nif_in,190,112,5 script Deviruchi#divorce 738,{ mes "At the end of the day, you and"; mes "your partner fight, and you feel"; mes "totally totally miserable."; - if (sex) + if (Sex) mes "...all because of HER."; else mes "...all because of HIM."; @@ -121,7 +121,7 @@ nif_in,190,112,5 script Deviruchi#divorce 738,{ mes "[Deviruchi]"; mes "*whispers*"; mes "^555555It's not like you're breaking^000000"; - if (sex) { + if (Sex) { mes "^555555any promises, and it's not"; mes "like your wife will care if she"; mes "doesn't know... Don't you"; @@ -169,7 +169,7 @@ nif_in,190,112,5 script Deviruchi#divorce 738,{ mes "[Deviruchi]"; mes "I understand. But if you think"; mes "about anything, think about"; - if (sex) { + if (Sex) { mes "your wife's nagging, and"; mes "how great it would be to"; mes "finally free yourself of the"; @@ -194,7 +194,7 @@ nif_in,190,112,5 script Deviruchi#divorce 738,{ specialeffect EF_MAGICROD; specialeffect2 EF_DEVIL; set wedding_sign,0; - set zeny,zeny-2500000; + set Zeny, Zeny-2500000; percentheal -100,-100; divorce; mes "[Deviruchi]"; |