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



error 075: input line too long (after substitutions) - Calgon - 17.03.2009

..........


Re: error 075: input line too long (after substitutions) - Kinetic - 17.03.2009

post the next line with text on it after that function.


Re: error 075: input line too long (after substitutions) - Calgon - 17.03.2009

................


Re: error 075: input line too long (after substitutions) - Calgon - 17.03.2009

........


Re: error 075: input line too long (after substitutions) - hoodline - 17.03.2009

you getting that error because your string is too long break it up by putting them in a varible


Re: error 075: input line too long (after substitutions) - Calgon - 17.03.2009

What string and to what variables?


Re: error 075: input line too long (after substitutions) - hoodline - 18.03.2009

Example:

pawn Код:
new totalstring[60];
new str[30] = "Part1-Of-The-Very-Long-String";
new str1[30] = "Part2-Of-The-Very-Long-String";

format(totalstring, sizeof(totalstring), "%s%s, str, str1);

printf(totalstring);



Re: error 075: input line too long (after substitutions) - Kinetic - 18.03.2009

I dont see anywhere that he is using a string tho.


Re: error 075: input line too long (after substitutions) - hoodline - 18.03.2009

Can you just post which line the error is on?

@Kinetic

The error in the title is caused by a string being too long


Re: error 075: input line too long (after substitutions) - Calgon - 18.03.2009

...........