SA-MP Forums Archive
error 075: input line too long (after substitutions) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: error 075: input line too long (after substitutions) (/showthread.php?tid=528258)



error 075: input line too long (after substitutions) - FullCircle - 27.07.2014

Help... I don't know if is Parsefile or stock...

Quote:

C:\Users\***\Desktop\SAMP\***.pwn(243) : error 075: input line too long (after substitutions)
C:\Users\***\Desktop\SAMP\***.pwn(244) : error 017: undefined symbol "cInf"

pawn Код:
stock CargarAuto(vehid, file[])
{
    INI_ParseFile(file, "CargarVehiculo_Data", .bExtra = true, .extra = vehid);//243
    CrearVehiculo(cInformacion[vehid][cModelo], cInformacion[vehid][cx], cInformacion[vehid][cy], cInformacion[vehid][cz], cInformacion[vehid][cAngle], cInformacion[vehid][cCol1], cInformacion[vehid][cCol2], cInformacion[vehid][cRespawn], cInformacion[vehid][cOwner], cInformacion[vehid][cLocked], cInformacion[vehid][cSalud], cInformacion[vehid][cPlaca], cInformacion[vehid][cPatente], cInformacion[vehid][cVenta], cInformacion[vehid][cPrecio], cInformacion[vehid][cConce]);//The stock
}
Thanks...


Re: error 075: input line too long (after substitutions) - Threshold - 27.07.2014

pawn Код:
stock CargarAuto(vehid, file[])
{
    INI_ParseFile(file, "CargarVehiculo_Data", .bExtra = true, .extra = vehid);//243
    CrearVehiculo(cInformacion[vehid][cModelo], cInformacion[vehid][cx], cInformacion[vehid][cy], cInformacion[vehid][cz], cInformacion[vehid][cAngle], cInformacion[vehid][cCol1], cInformacion[vehid][cCol2], cInformacion[vehid][cRespawn],
        cInformacion[vehid][cOwner], cInformacion[vehid][cLocked], cInformacion[vehid][cSalud], cInformacion[vehid][cPlaca], cInformacion[vehid][cPatente], cInformacion[vehid][cVenta], cInformacion[vehid][cPrecio], cInformacion[vehid][cConce]);//The stock
}
The error/warning is self-explanatory. One of the lines is too long, which is your 'CrearVehiculo' line.


Respuesta: Re: error 075: input line too long (after substitutions) - FullCircle - 27.07.2014

Quote:
Originally Posted by Threshold
Посмотреть сообщение
pawn Код:
stock CargarAuto(vehid, file[])
{
    INI_ParseFile(file, "CargarVehiculo_Data", .bExtra = true, .extra = vehid);//243
    CrearVehiculo(cInformacion[vehid][cModelo], cInformacion[vehid][cx], cInformacion[vehid][cy], cInformacion[vehid][cz], cInformacion[vehid][cAngle], cInformacion[vehid][cCol1], cInformacion[vehid][cCol2], cInformacion[vehid][cRespawn],
        cInformacion[vehid][cOwner], cInformacion[vehid][cLocked], cInformacion[vehid][cSalud], cInformacion[vehid][cPlaca], cInformacion[vehid][cPatente], cInformacion[vehid][cVenta], cInformacion[vehid][cPrecio], cInformacion[vehid][cConce]);//The stock
}
The error/warning is self-explanatory. One of the lines is too long, which is your 'CrearVehiculo' line.
Thanks, what is the max number of variables of one stock?...


Re: error 075: input line too long (after substitutions) - Threshold - 27.07.2014

It has nothing to do with the amount of variables, it just depends on how long the line is...


Respuesta: Re: error 075: input line too long (after substitutions) - FullCircle - 27.07.2014

Quote:
Originally Posted by Threshold
Посмотреть сообщение
It has nothing to do with the amount of variables, it just depends on how long the line is...
Oh.. Thanks