04.04.2012, 22:16
try this
pawn Код:
for(new i = 0; i <= MAX_DOORS; i++)
{
print( "Doors OnGameModeInit" );
new ddFile[128];
format(ddFile, 128, "dynamicSystem/%d.ini" ,i);
INI_ParseFile(ddFile, "LoadDoors", .bExtra = true, .extra = i);
ReadDoors(i);
}

