SA-MP Forums Archive
[HELP] 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [HELP] error 075: input line too long (after substitutions) (/showthread.php?tid=191740)



[HELP] error 075: input line too long (after substitutions) - Pooh7 - 20.11.2010

I have this error:
Код:
error 075: input line too long (after substitutions)
This error is on LAST line. on last line i have only }.


Help


Re: [HELP] error 075: input line too long (after substitutions) - [MWR]Blood - 20.11.2010

Show us the whole code of that command, or whatever is it.


Re: [HELP] error 075: input line too long (after substitutions) - Pooh7 - 20.11.2010

But it's last line in my gamemode ://

Last what I was added is:

pawn Код:
stock UpdateVozilo(id)
{
    new saver[128];
    new Spliter[256];
    if(dini_Exists(File_Vozila))
    {
        format(saver,sizeof(saver),"ID_%d",id);
        format(Spliter,sizeof(Spliter),
        "%d,%d,\
        %f,%f,%f,%f,\
        %d,%d,%d,\
        %s,\
        %d"
,
        Vozila[id][mKoristen],Vozila[id][mModel],
        Vozila[id][mX],Vozila[id][mY],Vozila[id][mZ],Vozila[id][mA],
        Vozila[id][mpBoja],Vozila[id][mdBoja],Vozila[id][mZakljucan],
        Vozila[id][mVlasnik],
        Vozila[id][mBroj]);
        dini_Set(File_Vozila,saver,Spliter);
        if(Vozila[id][mKoristen] == 0)
        {
            dini_Unset(File_Vozila ,saver);
        }
   }
  return 1;
}
   
stock Ime(playerid)
{
    new ime[MAX_PLAYER_NAME];
    GetPlayerName(playerid, ime, MAX_PLAYER_NAME);
    return ime;
} // <-------------------------------- ERROR LINE!!!!



Re: [HELP] error 075: input line too long (after substitutions) - Pooh7 - 20.11.2010

Solved.
In last line was something "hidden" characters ://
So, i'm deleted it and works...