dumplingfestival.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. //===== rAthena Script =======================================
  2. //= Imitation of Dumpling Festival
  3. //===== By ===================================================
  4. //= Massdriller
  5. //===== Version ==============================================
  6. //= 1.01
  7. //===== Compatible With ======================================
  8. //= rAthena 0.52+
  9. //===== Description ==========================================
  10. //= A complete redering of the Dumpling Festival.
  11. //===== Comments =============================================
  12. //= Ver 1.0- Duplicate of MRO's Dumpling Event
  13. //= 1.01 fixed bugs [Lupus]
  14. //============================================================
  15. payon,93,81,4 script Exorcist Master Fahae 834,{
  16. mes "[Exorcist Master Fahae]";
  17. mes "Greetings young warrior, I'm the Exorcist Master Fahae.";
  18. mes "I have been tracking the elusive Bacsojin for some time.";
  19. next;
  20. mes "[Exorcist Master Fahae]";
  21. mes "I feel it is time I let another warrior try to complete";
  22. mes "my quest. I have some items to assist you in my quest.";
  23. next;
  24. menu "I wish to buy",-, "No thanks",M_FIN;
  25. mes "[Exorcist Master Fahae]";
  26. mes "I have 2 items which might become useful to you.";
  27. next;
  28. menu "Realgar Wine",-, "Exorcize Herb",M_HERB;
  29. mes "[Exorcist Master Fahae]";
  30. mes "How many do you require?";
  31. mes "You may only buy 5 at one time.";
  32. mes "Each costs 20000z.";
  33. mes "(Type in 0 to cancel)";
  34. next;
  35. input @input;
  36. if(@input==0) close;
  37. if(@input>5) goto L_SORRY;
  38. if(Zeny< @input*20000) goto L_NOZENY;
  39. set Zeny,Zeny-20000*@input;
  40. getitem 682,@input;
  41. mes "[Exorcist Master Fahae]";
  42. mes "Here you go, I hope you may succeed in my quest.";
  43. close;
  44. L_SORRY:
  45. mes "[Exorcist Master Fahae]";
  46. mes "You must not be stingy, it is the path of God to be honest.";
  47. close;
  48. M_FIN:
  49. mes "[Exorcist Master Fahae]";
  50. mes "The path of fully venquishing evil is far, help me in the way of God.";
  51. close;
  52. M_HERB:
  53. mes "[Exorcist Master Fahae]";
  54. mes "How many do you require?";
  55. mes "You may only buy 5 at one time.";
  56. mes "Each costs 10000z.";
  57. mes "(Type in 0 to cancel)";
  58. next;
  59. input @input;
  60. if(@input==0) close;
  61. if(@input>5) goto L_SORRY;
  62. if(Zeny< @input*10000) goto L_NOZENY;
  63. set Zeny,Zeny-10000*@input;
  64. getitem 683,@input;
  65. mes "[Exorcist Master Fahae]";
  66. mes "Here you go, I hope you may succeed in my quest.";
  67. close;
  68. L_NOZENY:
  69. mes "[Exorcist Master Fahae]";
  70. mes "Money doesn't bring joy to everyone, but we need it to support the temple and myself. Please, try to kill some monsters and take their drops.";
  71. close;
  72. }
  73. //////////////////////////////////////////////
  74. // Monster Spawning /\Secial only for event.//
  75. //////////////////////////////////////////////
  76. // ~Dumpling~
  77. gef_fild00,0,0,0,0 monster Dumpling 1520,20,60000,66000
  78. gef_fild07,0,0,0,0 monster Dumpling 1520,20,60000,66000
  79. gef_fild04,0,0,0,0 monster Dumpling 1520,20,60000,66000
  80. gef_fild00,0,0,0,0 monster Dumpling 1520,20,60000,66000
  81. prt_fild06,0,0,0,0 monster Dumpling 1520,20,60000,66000
  82. prt_fild01,0,0,0,0 monster Dumpling 1520,20,60000,66000
  83. prt_fild05,0,0,0,0 monster Dumpling 1520,20,60000,66000
  84. prt_fild08,0,0,0,0 monster Dumpling 1520,20,60000,66000
  85. pay_fild04,0,0,0,0 monster Dumpling 1520,20,60000,66000
  86. moc_fild02,0,0,0,0 monster Dumpling 1520,20,60000,66000
  87. pay_fild01,0,0,0,0 monster Dumpling 1520,20,60000,66000
  88. pay_fild07,0,0,0,0 monster Dumpling 1520,20,60000,66000
  89. moc_fild03,0,0,0,0 monster Dumpling 1520,20,60000,66000
  90. pay_fild06,0,0,0,0 monster Dumpling 1520,20,60000,66000
  91. pay_fild05,0,0,0,0 monster Dumpling 1520,20,60000,66000
  92. pay_fild02,0,0,0,0 monster Dumpling 1520,20,60000,66000
  93. pay_fild09,0,0,0,0 monster Dumpling 1520,20,60000,66000
  94. // ~Bacsojin~
  95. moc_fild03,0,0,0,0 monster Bacsojin 1518,1,60000,66000
  96. // ~Chung E~
  97. moc_fild03,0,0,0,0 monster Chung E 1519,1,60000,66000
  98. moc_fild13,0,0,0,0 monster Chung E 1519,1,60000,66000
  99. pay_fild01,0,0,0,0 monster Chung E 1519,1,60000,66000