//===== Hourly Points Script =========================================
//===== By: ==========================================================
//= GorthexTiger modified by Nibi modified again by Winz
//====================================================================
- script hourlypoints -1,{
OnPCLoginEvent:
addtimer .timer,"hourlypoints::OnPointGet";
end;
OnPointGet:
while(checkvending() >= 1 ) {
sleep2 .delay;
dispbottom set(.@mes$,"The loyalty reward event halted because you were vending.");
}
set #CASHPOINTS, #CASHPOINTS + .point_amt;
dispbottom "You received "+.point_amt+" Cash points by staying in game for 5 minutes";
addtimer .timer,"hourlypoints::OnPointGet";
end;
OnInit:
set .timer, 1000*60*5; //Timer in milliseconds.
set .point_amt, 10; //Normal points gained.
set .delay, 1000; //Delay for idle re-check check.
}