05.10.2012, 13:37
ai gente fiz um comando aqui para mostrar todos do servidor que tem menos de 18 fps, mais nгos ei se estб certo podem me ajudar?
pawn Код:
dcmd_laggers(playerid,params[])
{
if(PlayerInfo[playerid][Level] >= 1) return SendClientMessage(playerid,red,"[ERRO]: Vocк nгo tem permissгo para isso");
new ppFPS = GetPVarInt(playerid,"PVarFPS");
new string[1000]; new NomeDoPlayer[24];
GetPlayerName(playerid,NomeDoPlayer,MAX_PLAYER_NAME);
for(new l; v <MAX_PLAYERS; l++)
if(ppFPS < 18);
format(string,sizeof(string),"%s (%i) - FPS: %d",NomeDoPlayer,l,ppFPS[l]);
ShowPlayerDialog(playerid,DIALOG_LAGADOS,DIALOG_STYLE_MSGBOX,"Lagados (Menos que 18 FPs):",string,"Fechar","Voltar");
return 1;
}