yuhsing

Untitled

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