SA-MP Forums Archive
[Ayuda] їMe ayudan con este error? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: [Ayuda] їMe ayudan con este error? (/showthread.php?tid=560840)



[Ayuda] їMe ayudan con este error? - xTexTx - 30.01.2015

Buenas, estaba haciendo un sistemita de motor y al momento de compilar me salta un error en este comando:
pawn Код:
CMD:motor(playerid, params[])
{
    new vehicleid = GetPlayerVehicleID(playerid);
    new string[126];
    new engine, lights, alarm, doors, bonnet, boot, objective;
    GetVehicleParamsEx(vehicleid, engine, lights, alarm, doors, bonnet, boot, objective);

    if(IsPlayerInAnyVehicle(playerid))
    {
        if(Engine[vehicleid] != 1)
        {
            Engine[vehicleid] = 1;
            SetVehicleParamsEx(vehicleid,1,lights,alarm,doors,bonnet,boot,objective);
            format(string, sizeof(string), "* %s encendiу el motor del vehнculo.", NombreJugador(playerid));
            MensajeCercaDe(30.0, playerid, string,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO)
            return 1; // Acб es el error.
        }
        else
        {
            Engine[vehicleid] = 0;
            SetVehicleParamsEx(vehicleid,0,lights,alarm,doors,bonnet,boot,objective);
            format(string, sizeof(string), "* %s apago el motor del vehнculo.", NombreJugador(playerid));
            MensajeCercaDe(30.0, playerid, string, COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO);
            return 1;
        }
    }
    return 1;
}
El error es el siguiente:
Quote:

C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(580) : error 001: expected token: ";", but found "return"
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.




Re: [Ayuda] їMe ayudan con este error? - UploaD - 30.01.2015

pawn Код:
MensajeCercaDe(30.0, playerid, string,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO,COLOR_CELESTE_OSCURO);
Te faltу un ; en esa lнnea


Respuesta: [Ayuda] їMe ayudan con este error? - xTexTx - 30.01.2015

No me habнa dado cuenta xD
Muchas gracias.