Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2016
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. - script Newbie Helper -1,{
  2.  
  3. if(#Nov_claim >= 1){ cutin "ca_smil",2; mes .npc_name$; mes .novice_claimed$; close2; cutin "",255; end; }
  4.  
  5. mes .npc_name$;
  6. cutin "ca_smil",2;
  7. for(set .@i,0; .@i < .nov_intro_length; .@i++){
  8. mes .novice_intro$[.@i];
  9. }
  10. for(set .@i,0; .@i < .nov_length; .@i++){
  11. getitembound .novice[.@i],.novice_amount[.@i],1;
  12. }
  13. close2;
  14. set #Nov_claim,1;
  15. cutin "",255;
  16. end;
  17.  
  18.  
  19. OnInit:
  20. //Config Start
  21. setarray .novice,501,502,503,601,602,30074; //items novice receives
  22. setarray .novice_amount,10,10,10,15,15,1; //how many items the novice revieces
  23.  
  24. set .npc_name$,"[ Freebies ]"; //npc name
  25. set .novice_claimed$,"You already claimed this package."; //message when already claimed::novice
  26. setarray .novice_intro$,"Welcome to Chaos Server","Thank you for playing!","Please accept this as our appreciation."; //welcome message
  27. waitingroom "Chaos Ragnarok Online",0; //waitingroom name
  28. //Config End;
  29. //Do not touch
  30. set .nov_length,getarraysize(.novice);
  31. set .nov_intro_length,getarraysize(.novice_intro$);
  32. end;
  33. }
  34.  
  35. new_1-1,54,114,4 duplicate(Newbie Helper) Newbie Helper#1 72
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement