25.06.2015, 21:33
How this should work what doest it do
I made this but nothing pls help
THIS IS REALLY SIMPLE DESIGN (2 SECONDS OF MAKING =) )
I made this but nothing pls help
THIS IS REALLY SIMPLE DESIGN (2 SECONDS OF MAKING =) )
PHP код:
new PlayaTick[MAX_PLAYERS];
bool:IsPlayerAFK(playerid)
{
return ( (GetTickCount() - PlayaTick[playerid] ) > 650);
}
public OnPlayerUpdate(playerid)
{
new string[512],name[512];
PlayaTick[playerid] = GetTickCount();
foreach(new i : Player)
{
if(IsPlayerAFK(i))
{
GetPlayerName(i,name,sizeof(name));
format(string,sizeof(string),"%s is inactive",name);
SendClientMessageToAll(-1,string);
}
}
return 1;
}