21.06.2014, 21:45
Galera eu to tentando fazer com que mostre o fps, ping, score e spree tudo junto pq no meu server tem um sistema de /fps que quando vc digita ae altera para mostrar o ping e fps e oculta o score e spree eu queria colcoar para mostrar todos juntos
pawn Код:
new bool:MostrandoFPSPing[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
MostrandoFPSPing[playerid] = false;
return 1;}
public UpdateTxDStatus(playerid)
{
new string[42];
if(Arena[playerid] == 1 || MostrandoFPSPing[playerid] == true)
format(string,sizeof(string),"~l~Ping: ~l~%i~n~~y~FPS: ~l~%i",GetPlayerPing(playerid),GetPlayerFPS(playerid));
else
format(string,sizeof(string),"~l~Score: ~l~%i~n~~y~Spree: ~l~%i",GetPlayerScore(playerid),Spree[playerid]);
TextDrawSetString(Status[playerid],string);
return 1;
}