28.06.2011, 00:35
Forget what I told you on xfire, I read the error wrong. After sizeof you need an opening and closing bracket. So it would look like this:
You had:
pawn Код:
format(FactionS,sizeof(FactionS), "%s", dini_Get(file, "Faction"));//Brackets.
pawn Код:
format(FactionS,sizeof FactionS, "%s", dini_Get(file, "Faction"));//No brackets.