hourly Point !!

adrian26v2

New member
Messages
35
Points
0
OnTimer6000:set @minute, @minute + 1;//Check for 1 Minuteif(@minute == 60){    set @minute,0;    set .@point_amt, 10; //Points to get every hour (default: 10)    set #KAFRAPOINTS, #KAFRAPOINTS + .@point_amt;    dispbottom "You received "+.@point_amt+" Kafrapoints by staying ingame for 1 hour";    dispbottom "Current Balance = "+#KAFRAPOINTS+" Kafrapoints";    set @consecutive_hour, @consecutive_hour + 1;    }//Check for 12 hours consecutive    if(@consecutive_hour == 12) {    set @consecutive_hour,0;    set .@cpoint_amt, 50; //Points to get for 12 Consecutive hours (default: 50)    set #KAFRAPOINTS, #KAFRAPOINTS + .@cpoint_amt;    dispbottom "You receive "+.@cpoint_amt+" Kafrapoints in playing for 12 consecutive hours";    dispbottom "Current Balance = "+#KAFRAPOINTS+" Kafrapoints";    }stopnpctimer;initnpctimer;end; 
can anyone convert it 

the erros was  OnTimer

 
This is part of a NPC script, and should be inside of a script code. Won't work otherwise.

 
Back
Top