Array index out of bounds error, tried solving, couldn't.
#7

pawn Код:
const string[1020]
Is this even valid syntax? Try:

pawn Код:
string[]
Also:
pawn Код:
format(InfoBox[i][mString], sizeof(InfoBox[i][mString]), "%s", string); // 81st line !
            format(InfoBox[i][mTitle], sizeof(InfoBox[i][mTitle]), "%s", title);
            format(InfoBox[i][mtColor], sizeof(InfoBox[i][mtColor]), "%s", titlecolor);
Will give errors aswel, try:

pawn Код:
format(InfoBox[i][mString], 1024, "%s", string); // 81st line !
            format(InfoBox[i][mTitle], 50, "%s", title);
            format(InfoBox[i][mtColor], 14, "%s", titlecolor);
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)