yuhsing

Untitled

Jan 5th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 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. mes "[Riss]";
  68. mes "Would you really like to take the challenge??";
  69. mes "Ok, just choose the course.";
  70. next;
  71. set .@i, select("First","Second","Third","Fourth");
  72. mes "[Riss]";
  73. mes "Take care, boy~";
  74. mes "Don't hold a grudge against me.";
  75. next;
  76. if( #PremiumUser > gettimetick(2) && Zeny < 100000 ){
  77. mes "You need 100000 zeny.";
  78. close;
  79. } if( #PremiumUser > gettimetick(2) && Zeny < 100000 ){
  80. set Zeny,Zeny - 100000;
  81. }else if( countitem(7608) < 1 ){
  82. mes "You need 1 "+getitemname( 7608 );
  83. close;
  84. }else{
  85. delitem 7608,1;
  86. }
  87. warp "bossnia_0"+.@i,rand(202,204),rand(202,204);
  88. close;
  89. }
  90.  
  91. geffen,124,169,4 duplicate(bsw) Bossnia Staff#2 908
  92. payon,165,150,4 duplicate(bsw) Bossnia Staff#3 908
  93. morocc,142,100,4 duplicate(bsw) Bossnia Staff#4 908
  94. lighthalzen,203,140,4 duplicate(bsw) Bossnia Staff#5 908
  95. rachel,132,144,4 duplicate(bsw) Bossnia Staff#6 908
Advertisement
Add Comment
Please, Sign In to add comment