error 029: invalid expression, assumed zero
#1

here is the line
0
Код:
if(PlayerInfo[i][pVipLevel] > 0
help please!!
Reply
#2

Add ')'
Reply
#3

Where?
Reply
#4

Quote:
Originally Posted by SeifGeny
Посмотреть сообщение
Where?
At the end of the code probably..
Reply
#5

Same error
Reply
#6

if(PlayerInfo[playerid][pVipLevel] > 0)
try this?
Reply
#7

Quote:
Originally Posted by MrCesar
Посмотреть сообщение
if(PlayerInfo[playerid][pVipLevel] > 0)
try this?
Yes, that should work. Let us know.
Reply
#8

Same error
This is the whole code

Код:
CMD:vips(playerid, params[])
{
        new vipstring[2000],count=0;
        if(IsPlayerConnected(playerid))
        {
            for (new i = 0; i < MAX_PLAYERS; i++)
            {
                if(IsPlayerConnected(i))
                {
                    if(PlayerInfo[playerid][pVipLevel] > 0)
                    {
                        format(vipstring, sizeof(vipstring),"{ffffff}%s%s (ID:%d)\n", vipstring, PlayerName(i), playerid);
                        count++;
                    }
                }
            }
            ShowPlayerDialog(playerid,DIALOG_VIPS,DIALOG_STYLE_MSGBOX,"{B266FF}Online VIPs:",vipstring,"Close","");
        }
        
         	 if (count == 0)
		     return
			 SendClientMessage(playerid,-1,""chat" There are no VIP's online.");
         	 
          	 return 1;
}
Reply
#9

Or you can just give me a code to show online vips please guys
Reply
#10

PHP код:
CMD:vips(playeridparams[])
{
    new 
vipstring[256], count=0;
     if(
IsPlayerConnected(playerid))
    {
         for (new 
0MAX_PLAYERSi++)
           {
             if(
PlayerInfo[playerid][pVipLevel] > 0)
               {
                 
format(vipstringsizeof(vipstring),"{ffffff}%s%s (ID:%d)\n"vipstringPlayerName(i), playerid);
                 
ShowPlayerDialog(playerid,DIALOG_VIPS,DIALOG_STYLE_MSGBOX,"{B266FF}Online VIPs:",vipstring,"Close","");
                 
count++;
               }
        }
        if(
count == 0)
        {
             
SendClientMessage(playerid,-1,"There are no VIP's online.");
         }
     }
     return 
1;

try this
edit: might get some warning written from the browser so let me know
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)