[Ajuda] Sistema /tv
#1

PHP код:
CMD:tv(playeridspectparams[])
{
    new
        
id,
        
bool:gSpecting[MAX_PLAYERS];
    if(
sscanf(params"u",id))
        return 
SendClientMessage(id,-1,"Use: /tv [id]");
    if(!
IsPlayerConnected(id) || id == INVALID_PLAYER_ID)
        return 
SendClientMessage(id, -1"Este jogador nгo estб conectado");
    if(!
gSpecting[playerid])
    {
        new 
name[MAX_PLAYER_NAME],string[50];
        
GetPlayerName(id,name,MAX_PLAYER_NAME);
        
format(string,sizeof(string),"Vocк Esta de Tv Em %s.",name);
        
SendClientMessage(playerid,-1,string);
        
TogglePlayerSpectating(id1);
        
gSpectating[playerid] == true;
        return 
1;
    }
    else
    {
        
TogglePlayerSpectating(id0);
        
gSpectating[playerid] == false;
        
SendClientMessage(id,-1,"Vocк nгo estб mais observando o player.");
        return 
1;
    }
    return 
1;

PHP код:
C:\Users\Usuario\Desktop\Nova pasta\gamemodes\BPS.pwn(172) : error 017undefined symbol "gSpectating"
C:\Users\Usuario\Desktop\Nova pasta\gamemodes\BPS.pwn(172) : warning 215expression has no effect
C
:\Users\Usuario\Desktop\Nova pasta\gamemodes\BPS.pwn(172) : error 001expected token";"but found "]"
C:\Users\Usuario\Desktop\Nova pasta\gamemodes\BPS.pwn(172) : error 029invalid expressionassumed zero
C
:\Users\Usuario\Desktop\Nova pasta\gamemodes\BPS.pwn(172) : fatal error 107too many error messages on one line
Compilation aborted
.Pawn compiler 3.2.3664              Copyright (c1997-2006ITB CompuPhase
4 Errors

Reply
#2

Vocк declarou no inicio como gSpecting e nгo gSpectating.
Reply
#3

Код:
CMD:tv(playerid, spect, params[])
{
    new
        id,
        bool:gSpectating[MAX_PLAYERS]; //ERRO Aqui

    if(sscanf(params, "u",id))
        return SendClientMessage(id,-1,"Use: /tv [id]");

    if(!IsPlayerConnected(id) || id == INVALID_PLAYER_ID)
        return SendClientMessage(id, -1, "Este jogador nгo estб conectado");

    if(!gSpectating[playerid])
    {
        new name[MAX_PLAYER_NAME],string[50];
        GetPlayerName(id,name,MAX_PLAYER_NAME);
        format(string,sizeof(string),"Vocк Esta de Tv Em %s.",name);
        SendClientMessage(playerid,-1,string);
        TogglePlayerSpectating(id, 1);
        gSpectating[playerid] == true;
        return 1;
    }
    else
    {
        TogglePlayerSpectating(id, 0);
        gSpectating[playerid] == false;
        SendClientMessage(id,-1,"Vocк nгo estб mais observando o player.");
        return 1;
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)