Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //==== Arc Saber Ragnarok Script ==========
- //= Free Items For Newbie
- //= Write by: hous3b4d
- //==== Description ========================
- //= Allow Newbies to get Starter Kit
- //=========================================
- prontera,147,165,4 script Freebies 910,{
- set .npc$,"[Newbie's Helper]";
- if(#newbie < 2 ){ goto Get; }
- else { goto Got; }
- Get:
- mes .npc$;
- mes "Hello there, Welcome to Wow-RO!";
- next;
- mes .npc$;
- mes "Do you want some free items for newbie?";
- next;
- menu
- "No, Thank's",M1,"Of course! Give me please...",M2;
- M1:
- next;
- mes .npc$;
- mes "OK, no problem. Come again if you change your mind.";
- close;
- end;
- M2:
- next;
- mes .npc$;
- mes "Here!";
- mes "Have nice days!";
- getitem 3293,1;
- set #newbie,2;
- close2;
- end;
- end;
- end;
- Got:
- mes .npc$;
- mes "Hello "+strcharinfo(0)+"!";
- mes "Have great days!";
- close;
- end;
- // auto announcement
- OnInit:
- while(1) {
- npctalk "Take your Freebies Items here! ^_^";
- sleep 900000;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment