29.03.2017, 17:28
teste ai
PHP код:
CMD:vips(playerid)
{
if(Logado{playerid}==false)return SCM(playerid, COR_ERRO, "[ERRO]: Vocк nгo estб logado para utilizar este comando!");
SCM(playerid, 0xADFF2FFF, "Todos os Vips online");
new count=0;
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(Logado{playerid} == true)
{
if(!IsPlayervip)
{
SendFormattedMessage(playerid, COR_BRANCO, "Vip: %s ", Nome(i));
count++;
}
}
}
}
if(count == 0) return SCM(playerid, COR_BRANCO, "Nгo tem nem um player vip online no momento.");
return 1;
}