bossnia.txt 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //===== rAthena Script =======================================
  2. //= Bossnia Warp NPCs
  3. //===== By: ==================================================
  4. //= Masao
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= rAthena
  9. //===== Description: =========================================
  10. //= Bossnia Warp NPC's.
  11. //===== Additional Comments: =================================
  12. //= 1.0 Converted from the official script.
  13. //= 1.1 Optimized. [Euphy]
  14. //============================================================
  15. prontera,132,125,4 script Bossnia Staff::bsw 908,{
  16. mes "[Riss]";
  17. mes "Hello?";
  18. mes "I found some beautiful places";
  19. mes "while I travelled all over the world.";
  20. mes "I am an adventurer.";
  21. mes "Haha~";
  22. next;
  23. mes "[Riss]";
  24. mes "What? My name is...";
  25. mes "'Bossnia Staff'?? No no...";
  26. mes "Well, my name is not so important.";
  27. mes "Sometimes you should be generous.";
  28. mes "No time for considering that kind of small stuff";
  29. mes "when you have to concentrate on more important things.";
  30. next;
  31. mes "[Riss]";
  32. mes "Hum... anyway I want to say... something..";
  33. mes "While I was travelling through some places,";
  34. mes "I found a really fearful place.";
  35. next;
  36. mes "[Riss]";
  37. mes "Most of the time when you come to a place,";
  38. mes "there is one strong and fearful monster.";
  39. mes "Isn't it?";
  40. next;
  41. mes "[Riss]";
  42. mes "But... but... in there...";
  43. mes "There are lots of fearful and strong monsters in there...";
  44. mes "That was really frightful.";
  45. next;
  46. mes "[Riss]";
  47. mes "If I had reacted a bit later... a few seconds...";
  48. mes "I might have been killed.";
  49. next;
  50. mes "[Riss]";
  51. mes "What?";
  52. mes "You want to go in there?";
  53. mes "Oh~ Boy~ you didn't get me.";
  54. mes "In there.......";
  55. next;
  56. mes "[Riss]";
  57. mes "Uh... you already know?";
  58. mes "Although you know the place, you want to go in...";
  59. mes "Good, I will send you there.";
  60. mes "But after you went there, don't hold";
  61. mes "a grudge against me. Also it costs 5,000 zeny.";
  62. next;
  63. if (Zeny > 4999) {
  64. mes "[Riss]";
  65. mes "Would you really like to take the challenge??";
  66. mes "Ok, just choose the course.";
  67. next;
  68. set .@i, select("First","Second","Third","Fourth");
  69. mes "[Riss]";
  70. mes "Take care, boy~";
  71. mes "Don't hold a grudge against me.";
  72. close2;
  73. set Zeny, Zeny - 5000;
  74. warp "bossnia_0"+.@i,rand(202,204),rand(202,204);
  75. end;
  76. }
  77. mes "[Riss]";
  78. mes "You don't have enough money...";
  79. mes "Come back when you have at least 5,000 zeny.";
  80. close;
  81. }
  82. geffen,124,169,4 duplicate(bsw) Bossnia Staff#2 908
  83. payon,165,150,4 duplicate(bsw) Bossnia Staff#3 908
  84. morocc,142,100,4 duplicate(bsw) Bossnia Staff#4 908
  85. lighthalzen,203,140,4 duplicate(bsw) Bossnia Staff#5 908
  86. rachel,132,144,4 duplicate(bsw) Bossnia Staff#6 908