25.11.2012, 12:42
Like this?
pawn Код:
// Top of the script
new Float:checkCoords[MAX_POINTS][4] = {
{2144.1643,1639.9208,993.5761},
{412.4297,-17.8465,1001.8047},
{-204.4400,-26.4540,1002.2734}
};
// Below OnGameModeInit
for(new x = 0; x < sizeof(checkCoords); x++)
{
CreateDynamicCP(checkCoords[x][0], checkCoords[x][1], checkCoords[x][2], 3.0);
}