quests_izlude.txt 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. //===== rAthena Script =======================================
  2. //= Quest NPCs related to Izlude
  3. //===== By: ==================================================
  4. //= Evera and The rAthena Dev Team
  5. //= L0ne_W0lf
  6. //===== Current Version: =====================================
  7. //= 1.1
  8. //===== Compatible With: =====================================
  9. //= rAthena Project
  10. //===== Description: =========================================
  11. //= Edgar's Offer:
  12. //= - [Official Conversion]
  13. //= - Variables in use: MISC_QUEST (Bit 16)
  14. //===== Additional Comments: =================================
  15. //= 1.0 Initial release [Evera]
  16. //= 1.1 Updated to 10.3 standard. [L0ne_W0lf]
  17. //============================================================
  18. // Edgar's Offer :: iz_npc
  19. //============================================================
  20. - script ::Edgar_izlude -1,{
  21. if (MISC_QUEST & 16) {
  22. mes "[Edgar]";
  23. mes "So are you heading to Alberta again? Let me give you the same discount and only charge 250 Zeny, just like the last time.";
  24. mes "How's that sound?";
  25. next;
  26. if (select("Alrighty~!:Why are you being so nice to me?!") == 1) {
  27. if (Zeny < 250) {
  28. mes "[Edgar]";
  29. mes "Um...";
  30. mes "This isn't";
  31. mes "enough money.";
  32. mes "Why don't you go";
  33. mes "get some more cash?";
  34. close ;
  35. }
  36. set Zeny, Zeny-250;
  37. warp "alberta",195,164;
  38. end;
  39. }
  40. mes "[Edgar]";
  41. mes "It's just the way I am. That, and your devilish smile reminds me of my beloved blond haired son who left home years ago to become a Sailor on his own ship. Bless his soul, wherever he is.";
  42. close;
  43. }
  44. mes "[Edgar]";
  45. mes "My town, Izlude, is connected to Alberta by the harbor in the West. There is so much traffic between us, I almost become an Albertian. Hehehe~";
  46. next;
  47. mes "[Edgar]";
  48. mes "There's this guy I know pretty well, Phelix, who lives in Alberta. That guy is really stingy... He charges for everything!";
  49. next;
  50. mes "[Edgar]";
  51. mes "But he's really a nice guy and likes helping other people. He has a good heart and will give you his support if you meet his price.";
  52. next;
  53. mes "[Edgar]";
  54. mes "Lately, people in Alberta say that he is really trying to help folks and that his demand for Jellopies is just a coverup. Well, you should take a look at what he has to offer.";
  55. next;
  56. if (select("Can you tell me how to get to Alberta?:End Conversation") == 1) {
  57. mes "[Edgar]";
  58. mes "Huh? Well, you can use your feet and just walk. But if you have money, I'd like to suggest that you take a ship.";
  59. next;
  60. if (select("Okay, gotcha.:But I'm sick of walking and I'm broke!") == 1) {
  61. mes "[Edgar]";
  62. mes "Alrighty, take care~";
  63. close;
  64. }
  65. mes "[Edgar]";
  66. mes "Okay...";
  67. mes "You don't want to walk AND you've got no cash, but you still want to go there? Oh geez...";
  68. next;
  69. mes "[Edgar]";
  70. mes "Fine fine. Me, being the captain of a ship, can afford to bring you there at a lower price. How does 250 Zeny sound?";
  71. next;
  72. if (select("Alrighty~!:Bah, what a rip off!!") == 1) {
  73. set MISC_QUEST,MISC_QUEST | 16;
  74. if (Zeny < 250) {
  75. mes "[Edgar]";
  76. mes "Um...";
  77. mes "This isn't";
  78. mes "enough money.";
  79. mes "Go and get";
  80. mes "some more.";
  81. close;
  82. }
  83. set Zeny, Zeny-250;
  84. warp "alberta",195,164;
  85. end;
  86. }
  87. mes "[Edgar]";
  88. mes "Boy oh boy,";
  89. mes "if you think";
  90. mes "that's a rip off...";
  91. close;
  92. }
  93. mes "[Edgar]";
  94. mes "Yeah, alright.";
  95. mes "See you later~";
  96. close;
  97. }