Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //============================================================//
- // This script is made by Plug and Play //
- // Contact us on Facebook http://facebook.com/plugandplayPH //
- // Website : http://plugandplay.cf //
- //============================================================//
- - script Level Checker -1,{
- //--Start of the Script
- OnPCLoginEvent:
- attachnpctimer ""+strcharinfo(0)+"";
- initnpctimer;
- end;
- OnTimer100: //Check for 100 Miliseconds
- set @checktime, @checktime + 1;
- if(@checktime > 1){
- if(BaseLevel == 60 && !BonusItemLevel60){
- getitem 501,10;
- getitem 502,10;
- set BonusItemLevel60,1;
- announce "[ "+strcharinfo(0)+" ] : has reach Level 60",bc_blue|bc_all;
- }
- else if(BaseLevel == 70 && !BonusItemLevel70){
- getitem 501,10;
- getitem 502,10;
- set BonusItemLevel70,1;
- announce "[ "+strcharinfo(0)+" ] : has reach Level 70",bc_blue|bc_all;
- }
- else if(BaseLevel == 80 && !BonusItemLevel80){
- getitem 501,10;
- getitem 502,10;
- set BonusItemLevel80,1;
- announce "[ "+strcharinfo(0)+" ] : has reach Level 80",bc_blue|bc_all;
- }
- else if(BaseLevel == 90 && !BonusItemLevel90){
- getitem 501,10;
- getitem 502,10;
- set BonusItemLevel90,1;
- announce "[ "+strcharinfo(0)+" ] : has reach Level 90",bc_blue|bc_all;
- }
- else if(BaseLevel == 99 && !BonusItemLevel99){
- getitem 501,10;
- getitem 502,10;
- set BonusItemLevel99,1;
- announce "[ "+strcharinfo(0)+" ] : has reach Level 99",bc_blue|bc_all;
- }
- }
- stopnpctimer;
- initnpctimer;
- end;
- }
- //--End of the Script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement