31.03.2017, 15:54
http://i.imgur.com/cfMbsuw.png
C:\Projeto (CLS)\filterscripts\vipsystem.pwn(333) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
C:\Projeto (CLS)\filterscripts\vipsystem.pwn(333) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
1 Warning.
PHP Code:
CMD:vips(playerid)
{
new string[90];
SendClientMessage(playerid, 0xADFF2FFF, "Todos os Vips online");
new count= 0;
for(new i = 0 ; i < MAX_PLAYERS+1; i++)
{
if(IsPlayerConnected(i))
{
if(Logado[playerid] == true)
{
if(IsPlayervip)
{
format(string,90,"Vip: %s",Nome(i));
SendClientMessage(playerid, -1, string);
count++;
}
}
}
}
if(count == 0) return SendClientMessage(playerid, COR_BRANCO, "Nгo tem nem um player vip online no momento.");
return 1;
}