divorce.txt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. //===== eAthena Script =======================================
  2. //= Divorcing Deviruchi
  3. //===== By: ==================================================
  4. //= Perkka, Scriptor, LightFighter
  5. //===== Current Version: =====================================
  6. //= 1.0a
  7. //===== Compatible With: =====================================
  8. //= eAthena 1 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Both players should be online to get divorced
  13. //= Fixed menu [Lupus]
  14. //============================================================
  15. nif_in.gat,190,112,5 script Deviruchi#divorce 1109,{
  16. if (getpartnerid() == 0) {
  17. mes "[Deviruchi]";
  18. mes "Kekeke, humans are always alone in the end,";
  19. mes "The feeling of lonely is just temporarily.";
  20. mes "If you feel lonely, how about getting a pet?";
  21. mes "I, the Deviruchi is quite popular recently, you know...";
  22. close;
  23. }
  24. mes "[Deviruchi]";
  25. mes "You don't look good...";
  26. mes "Anything that you have done that makes you feel regret now?";
  27. mes "You must know that I am not willing to help happy people.";
  28. mes "Deviruchi bear no interest";
  29. mes "to those kind of people. Kekeke";
  30. next;
  31. mes "[Deviruchi]";
  32. mes "Let's put everything aside first.";
  33. mes "Let me ask you. Are you happy after you get married?";
  34. mes "Don't think about love...";
  35. mes "I know more than you can imagine.";
  36. mes "There're countless problem behind one grand wedding.";
  37. next;
  38. mes "[Deviruchi]";
  39. mes "That's right.";
  40. mes "It your fate that you come here.";
  41. mes "And I know it's your instinct to change your life too.";
  42. mes "Although you have made an oath to your partner,";
  43. mes "the heart will still wither somehow...!";
  44. next;
  45. mes "[Deviruchi]";
  46. mes "The method is easy!";
  47. mes "Marriage is actually one kind of contract.";
  48. mes "Just ask a favor from Deviruchi";
  49. mes "and it will destroy the contract for you... Do you get it?";
  50. mes "Live a free life!!";
  51. next;
  52. mes "[Deviruchi]";
  53. mes "You don't need to get the agreement of your partner,";
  54. mes "You will find another lover soon,";
  55. mes "So, why not leave your current partner?";
  56. mes "... Want me to help?";
  57. mes "I can cancel your marriage now, you know...!";
  58. next;
  59. menu "No, I am very happy now",-,"Yes, I want a new life",M_NewLife;
  60. mes "[Deviruchi]";
  61. mes "Hmmph, lovers... lovers!!";
  62. mes "You will regret,";
  63. mes "and come back to find Deviruchi someday!";
  64. mes "We'll see how long your happiness will last!!";
  65. close2;
  66. warp "niflheim.gat",169,162;
  67. end;
  68. M_NewLife:
  69. mes "[Deviruchi]";
  70. mes "Good, you don't need anything.";
  71. mes "I just need your heart and 2,500,000 zeny.";
  72. mes "You want to get back your life before you get married, don't you?";
  73. mes "So, is that it? You're going to cancel the marriage contract?";
  74. next;
  75. menu "...I need to consider it again",-, "I am paying you to cancel it now!",M_Divorce;
  76. mes "[Deviruchi]";
  77. mes "Quit considering. Everyone will be alone in the end.";
  78. mes "Just make up your mind and prepare the zeny,";
  79. mes "then come and look for me...";
  80. mes "Kekekeke.....";
  81. close;
  82. M_Divorce:
  83. if (Zeny < 2500000) goto NoMoney;
  84. set Zeny, Zeny - 2500000;
  85. mes "[Deviruchi]";
  86. mes "Before you change your mind again, I will proceed with your divorce now!!";
  87. mes "It might take some time...";
  88. mes "So don't go away, and stay here!";
  89. next;
  90. //ShowEffect "Deviruchi#Divorce" EF_MAGICROD Dont know, what to do here >.>
  91. //ShowEffect "" EF_DEVIL same
  92. percentheal -100,-100;
  93. divorce;
  94. mes "[Deviruchi]";
  95. mes "Kekeke, you are free now!";
  96. mes "Throw away all your sinking feelings!";
  97. mes "You should thank Deviruchi.....!";
  98. close;
  99. NoMoney:
  100. mes "[Deviruchi]";
  101. mes "Haven't I said 2,500,000 zeny?";
  102. mes "This is the payment for Deviruchi to help you.";
  103. mes "If you don't even have that money,";
  104. mes "you can rot with that married life of yours... kekeke";
  105. close;
  106. }