11.08.2011, 11:50
like this:
a loop will repeat itself for a defined amount... there are 3 basic kinds:
"for" "while" and "foreach"
pawn Код:
public OnGameModeInit()
{
for(new v=0; v<MAX_VEHICLES; v++)
{
LinkVehicleToInterior(v, 0);
}
return 1;
}
"for" "while" and "foreach"