21.12.2012, 16:50
I created little payday system for my RP server, it works on localhost fine, but when I upload it to host, nothing happens, and players don't get 1000 in one minute.
forward payday(playerid);
public payday(playerid)
{
GivePlayerMoney(playerid,1000);
}
public OnGameModeInit()
{
SetTimer("payday",60*1000,1);
}
forward payday(playerid);
public payday(playerid)
{
GivePlayerMoney(playerid,1000);
}
public OnGameModeInit()
{
SetTimer("payday",60*1000,1);
}