brasilis.txt 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //===== eAthena Script =======================================
  2. //= Brasilis Town
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= eAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Brasilis Town Script
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version. Transportation and Basic NPCs.
  14. //= 1.1 Fixed Zeny not being removed for payment. [Kisuka]
  15. //============================================================
  16. alberta,247,115,3 script Brute Sailor#bra2 100,{
  17. mes "[Brute Sailor]";
  18. mes "Hey, have you heard of the place called Brasilis?";
  19. mes "It's a place that's as hot as the Morroc desert, and as dense as the forests of Payon.";
  20. next;
  21. mes "[Brute Sailor]";
  22. mes "I have a map to get there, if you want I can take you to Brasilis.";
  23. mes "It will only cost you 10,000 zeny. What do you say?";
  24. next;
  25. switch(select("Let's go to Brasilis!:Cancel.")) {
  26. case 1:
  27. if (Zeny > 9999 ) {
  28. mes "[Brute Sailor]";
  29. mes "Great! Let's Go!";
  30. close2;
  31. set Zeny,Zeny-10000;
  32. warp "brasilis",314,60;
  33. end;
  34. }
  35. else {
  36. mes "[Brute Sailor]";
  37. mes "I'm sorry but you don't have";
  38. mes "enough zeny now";
  39. mes "You need 10,000 zeny";
  40. mes "to go to Brasilis";
  41. mes "Thank you.";
  42. close;
  43. }
  44. case 2:
  45. mes "[Brute Sailor]";
  46. mes "Let me know if you change your mind.";
  47. close;
  48. }
  49. }
  50. brasilis,316,57,3 script Brute Sailor#bra1 100,{
  51. mes "[Brute Sailor]";
  52. mes "My ship will be heading back to Alberta soon, would you like to go back?";
  53. next;
  54. switch(select("Return to Alberta.:Cancel.")) {
  55. case 1:
  56. mes "[Brute Sailor]";
  57. mes "Alright, lets get going!";
  58. close2;
  59. warp "alberta",244,115;
  60. end;
  61. case 2:
  62. mes "[Brute Sailor]";
  63. mes "Let me know if you change your mind.";
  64. close;
  65. }
  66. }
  67. brasilis,278,137,3 script Bulletin Board#bra1 858,{
  68. mes ":: Happy Toucan Inn ::";
  69. close;
  70. }
  71. brasilis,244,248,1 script Bulletin Board#bra2 858,{
  72. mes ":: Brasilis Market ::";
  73. close;
  74. }
  75. brasilis,155,165,3 script Bulletin Board#bra3 858,{
  76. mes ":: Brasilis Art Museum ::";
  77. close;
  78. }
  79. brasilis,303,309,3 script Bulletin Board#bra4 858,{
  80. mes ":: Jungle Cable ::";
  81. mes " ";
  82. mes "- Not recommended for the faint hearted! -";
  83. close;
  84. }