kiel_quest.txt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //===== eAthena Script =======================================
  2. //= Custom Kiel Dungeon Warper
  3. //===== By: ==================================================
  4. //= Lupus
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= eAthena 1.0
  9. //===== Description: =========================================
  10. //= I't custom 8) But you have to pay every time u enter
  11. //===== Additional Comments: =================================
  12. //=
  13. //============================================================
  14. prontera,157,168,2 script Kiel Capry 68,{
  15. mes "[Kiel Capry]";
  16. mes callfunc("F_Hi");
  17. mes "Help us! Everybody's evacuated! There's been an accident in my father's University...";
  18. if(rand(2))close;
  19. specialeffect 417;
  20. next;
  21. emotion e_wah;
  22. mes "[Kiel Capry]";
  23. mes "My father, ^FF0000Kiel Carlo^000000 is waiting for help in the broken elevator.";
  24. if(rand(2))close;
  25. next;
  26. mes "[Kiel Capry]";
  27. mes "What? Our home is located in the middle of ^FF0000Yuno field 08^000000...";
  28. close;
  29. }
  30. kh_school,119,146,3 script Kiel Carlo 748,{
  31. mes "[Kiel Carlo]";
  32. mes callfunc("F_Hi");
  33. mes "We have evacuated all the students!";
  34. mes "What? Are you going to jump in the lift tunnel, right into the hands of those gone bad robots?";
  35. mes "Well... we need money. Will you pay 10.000z?";
  36. next;
  37. emotion e_hmm;
  38. menu "Yep.",M_GO, "No way!",-;
  39. mes "[Kiel Carlo]";
  40. mes "Well... "+callfunc("F_Bye");
  41. close;
  42. M_GO:
  43. mes "[Kiel Carlo]";
  44. mes "I refuse to let you enter if you don't meet these conditions:";
  45. mes "1. You have to be 70 Base Level or higher.";
  46. mes "2. You have to donate 10.000 zeny.";
  47. next;
  48. if(BaseLevel<70 || Zeny<10000){
  49. mes "[Kiel Carlo]";
  50. mes "Alas... I can't let you in.";
  51. emotion e_sry;
  52. close;
  53. }
  54. set Zeny,Zeny-10000;
  55. warp "kh_kiehl02",rand(46,53),rand(9,12);
  56. end;
  57. }
  58. kh_kiehl02,49,5,0 warp warpk06 1,1,kh_school,119,146