25.06.2012, 11:52
Guys i need bank system that gives cheque and 40 $ when the clock turns 6:00 so plz help me i tried to search but i didnt find any thing so plz help me !!
public OnPlayerUpdate(playerid)
{
new hour,min;
GetPlayerTime(playerid,hour,min);
if(hour == 6 && min == 0)
{
//GiveCheck here
GivePlayerMoney(playerid,40);
}
return 1;
}