21.12.2015, 14:27
Hello.
So basically, when I am VIP and type the command "/vips", to see the online vips, I see myself there, but if I am not VIP and type the command again, it does not show the message, that there is no VIP's online.
Here is the code:
Please help me to fix this, thank you!
So basically, when I am VIP and type the command "/vips", to see the online vips, I see myself there, but if I am not VIP and type the command again, it does not show the message, that there is no VIP's online.
Here is the code:
PHP код:
CMD:vips(playerid, params[])
{
new vipstring[2000];
if(IsPlayerConnected(playerid))
{
for (new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(pInfo[i][pVipLevel] > 0)
{
format(vipstring, sizeof(vipstring),"{ffffff}%s%s (ID:%d)\n", vipstring, PlayerName(i), playerid);
}
}
}
ShowPlayerDialog(playerid,DIALOG_VIPS,DIALOG_STYLE_MSGBOX,"{B266FF}Online VIPs:",vipstring,"Close","");
}
else return SendClientMessage(playerid,-1,""chat" There are no VIP's online.");
return 1;
}