[Ayuda] Error con comando
#1

·Buenas, me saltan estos errores con el siguiente comando:

Код HTML:
C:\Documents and Settings\ramon\Escritorio\Servidor SAMP\gamemodes\SFRPEspaсa.pwn(383) : error 017: undefined symbol "Info"
C:\Documents and Settings\ramon\Escritorio\Servidor SAMP\gamemodes\SFRPEspaсa.pwn(383) : warning 215: expression has no effect
C:\Documents and Settings\ramon\Escritorio\Servidor SAMP\gamemodes\SFRPEspaсa.pwn(383) : error 001: expected token: ";", but found "]"
C:\Documents and Settings\ramon\Escritorio\Servidor SAMP\gamemodes\SFRPEspaсa.pwn(383) : error 029: invalid expression, assumed zero
C:\Documents and Settings\ramon\Escritorio\Servidor SAMP\gamemodes\SFRPEspaсa.pwn(383) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
·Comando:

Код HTML:
CMD:rvehiculos(playerid, params[])
{
    new string[80];
    new Nombre[MAX_PLAYER_NAME];
    GetPlayerName(playerid, Nombre, sizeof(Nombre));
    if(Info[playerid][pAdminZC] < 2)    return SendClientMessageEx(playerid, 0xFF0000FF, "[ERROR]:ЎNo estбs autorizado para usar este comando!");
    if(!IsPlayerConnected(playerid)) return SendClientMessageEx(playerid, 0xFF0000FF, "[ERROR]:ЎNo estбs conectado!");

    if(IsPlayerConnected(playerid))
    {
        new bool:unwanted[MAX_VEHICLES];
        for(new player=0; player<MAX_PLAYERS; player++)
        {
            if(IsPlayerInAnyVehicle(player)) { unwanted[GetPlayerVehicleID(player)]=true; }
        }
        for(new car = 0; car <= VV; car++) /* ї 0 ?, la ID 0 no existe .... */
        {
            if(!unwanted[car]) SetVehicleToRespawn(car);
        }
        format(string, sizeof(string), "[SERVIDOR]: Todos los coches no usados fueron respawneados por %s.", Nombre);
        SendClientMessageToAll(0xFF7E00FF,string);
    }
    return 1;
}
їPodrian decirme el Error? Gracias desde ya.

att. AlexJuanpere
Reply
#2

No tienes definida la variable Info en tu GM, debes hacerlo.
Reply
#3

Quote:
Originally Posted by Manuel_Franco
Посмотреть сообщение
No tienes definida la variable Info en tu GM, debes hacerlo.
Asн es.

Si eso, seсala la lнnea que no te da, pero si es la del Info yo no veo nada malo, no la tendrбs definida. Puede que la variable sн, pero debes poner el enum tambiйn con su variable.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)