new PingTimer;
public OnFilterScriptInit()
{
PingTimer = SetTimer(\"PingLabelUpdate\", 5000, true);
}
public OnFilterScriptExit()
{
KillTimer(PingTimer);
}
forward PingLabelUpdate();
public PingLabelUpdate()
{
new string[256];
new ping;
for(new playerid=0; playerid<GetMaxPlayers(); playerid++)
{
if(!IsPlayerConnected(playerid)) continue;
ping=GetPlayerPing(playerid);
format(string,sizeof(string),\"Ping: %d\",ping);
Update3DTextLabelText(label[playerid], 0x008080FF, string);
}
}
return 0;
}
Be másoltam neked egy ping frissítõtt! Ezt írd majd átt benne public PingLabelUpdate() ezalatt a te adataidra és menni fog!