07.08.2009, 00:53
I don't even know where to start on this one... Thanks in advance for your help.
public message()
{
print("1 second has passed.");
}
public message(playerid)
{
SetPlayerScore(playerid, GetPlayerScore(playeridid) + 1);
}
SetTimer("PlayerScore", 60000, 1);// this is the timer
public DollahScoreUpdate()
{
new PlayerScore = GetPlayerScore(playerid, Float:score)
SetPlayerScore(playerid, score += 1)
return 1;
}
forward PointScoreUpdate(playerid);
public PointScoreUpdate(playerid)
{
new Score = GetPlayerScore(playerid);
SetPlayerScore(playerid,Score+1);
return 1;
}
SetTimer("PointScoreUpdate",60000,1);