Hi Guys,
Can anyone help me how to pause the timer when vending? Thanks!
// https://rathena.org/board/topic/108276-hourly-points/
- script hourly_point_main -1,{
OnInit:
.npc_name$ = strnpcinfo(3);
bindatcmd "check",.npc_name$+"::OnAtcommand";
end;
OnAtcommand:
dispbottom "Accumulated "+#daily_minute_count;
end;
OnUpdate:
#daily_minute_count++;
deltimer .npc_name$+"::OnUpdate";
//dispbottom "Accumulated "+#daily_minute_count+" minute(s)";
switch ( #daily_minute_count ) {
default:
break;
case 15: // 15 minutes
#CASHPOINTS += 1;
dispbottom "You received 1 CashPoint by staying ingame for 15 minutes.";
dispbottom "Current Balance = "+#CASHPOINTS+" Cash Points";
//getitem 512,2;
break;
case 30: // 30 minutes
#CASHPOINTS += 1;
dispbottom "You received 1 CashPoint by staying ingame for 30 minutes.";
dispbottom "Current Balance = "+#CASHPOINTS+" Cash Points";
//getitem 512,3;
break;
case 45: // 45 minutes
#CASHPOINTS += 1;
dispbottom "You received 1 CashPoint by staying ingame for 45 minutes.";
dispbottom "Current Balance = "+#CASHPOINTS+" Cash Points";
//getitem 512,4;
break;
case 60: // 60 minutes
#CASHPOINTS += 2;
dispbottom "You received 2 CashPoint by staying ingame for 60 minutes.";
dispbottom "Current Balance = "+#CASHPOINTS+" Cash Points";
//getitem 512,6;
break;
}
OnPCLoginEvent:
addtimer ( 60 * 1000 ), .npc_name$+"::OnUpdate";
end;
}