23.03.2013, 18:57
I'm using LuxAdmin, the current code is working, but i completely hate it. It only shows like "0 - premium account", wtf is that?
I want it to show like.
=========Currently online vip's================
John - Level 1 (Bronze)
========================================
Thanks.
current code is like this:
I want it to show like.
=========Currently online vip's================
John - Level 1 (Bronze)
========================================
Thanks.
current code is like this:
pawn Код:
dcmd_vips(playerid,params[])
{
#pragma unused params
if(AccInfo[playerid][LoggedIn] == 1)
{
if(AccInfo[playerid][Level] >= 0)
{
new bool:First2 = false;
new Count, i;
new string[128];
new adminname[MAX_PLAYER_NAME];
for(i = 0; i < MAX_PLAYERS; i++)
if(IsPlayerConnected(i) && AccInfo[i][pVip] > 0)
Count++;
if(Count == 0)
return SendClientMessage(playerid,red, "No players have VIP Account!");
for(i = 0; i < MAX_PLAYERS; i++)
if(IsPlayerConnected(i) && AccInfo[i][pVip] > 0)
{
if(AccInfo[i][pVip] > 0)
{
switch(AccInfo[i][pVip])
{
case 1: AccType = "Free";
case 2: AccType = "Silver";
case 3: AccType = "Premium";
}
}
GetPlayerName(i, adminname, sizeof(adminname));
if(!First2)
{
format(string, sizeof(string), "VIP Players: %s [%s]", PlayerName2(i),AccType);
First2 = true;
}
else format(string,sizeof(string),"%s, %s [%s]",string, PlayerName2(i),AccType);
}
return SendClientMessage(playerid,yellow,string);
}
else return ErrorMessages(playerid, 1);
}
else return SendClientMessage(playerid,red,"ERROR: You must be logged in to use this commands");
}