yuhsing

Untitled

Nov 12th, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. //==== Arc Saber Ragnarok Script ==========
  2. //= Free Items For Newbie
  3. //= Write by: hous3b4d
  4.  
  5. //==== Description ========================
  6. //= Allow Newbies to get Starter Kit
  7. //=========================================
  8.  
  9. prontera,147,165,4 script Freebies 910,{
  10.  
  11. set .npc$,"[Newbie's Helper]";
  12. if(#newbie < 2 ){ goto Get; }
  13. else { goto Got; }
  14.  
  15. Get:
  16. mes .npc$;
  17. mes "Hello there, Welcome to Wow-RO!";
  18. next;
  19. mes .npc$;
  20. mes "Do you want some free items for newbie?";
  21. next;
  22. menu
  23. "No, Thank's",M1,"Of course! Give me please...",M2;
  24.  
  25. M1:
  26. next;
  27. mes .npc$;
  28. mes "OK, no problem. Come again if you change your mind.";
  29. close;
  30. end;
  31.  
  32. M2:
  33. next;
  34. mes .npc$;
  35. mes "Here!";
  36. mes "Have nice days!";
  37.  
  38. getitem 3293,1;
  39.  
  40. set #newbie,2;
  41. close2;
  42. end;
  43. end;
  44. end;
  45.  
  46. Got:
  47. mes .npc$;
  48. mes "Hello "+strcharinfo(0)+"!";
  49. mes "Have great days!";
  50. close;
  51. end;
  52.  
  53. // auto announcement
  54. OnInit:
  55. while(1) {
  56. npctalk "Take your Freebies Items here! ^_^";
  57. sleep 900000;
  58. }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment