08.10.2013, 15:06
pawn Код:
format(gFile, 50, "LSystems/firme/Firma_%d.ini" ,b); // <-- it was missing a semicolor ;
pawn Код:
format gFile[35];
pawn Код:
new gFile[50]; // new is to declare a new variable, not format. Plus, you were trying to declare a string with size of 35 and then using size 50 in the format. Change to 50 to avoid problems in the future (long message lol)