24.07.2018, 13:23
So, assuming i have in an array a coordinates of all robbery places, like this:
How i can create objects with streamer without doing:
CreateDynamicObject multiple times? (I have 40 robbery places).
Basically, i wanna create an object based on the coordinates in that array.
pawn Код:
LoadRobberies()
{
RobberyP[0] = CreateDynamicSphere(2065.439453125, -1897.5510253906, 13.19670009613, 3.0);
RobberyP[1] = CreateDynamicSphere(1497.7467041016, -1749.8747558594, 15.088212013245, 3.0);
//And so on...
return 1;
}
CreateDynamicObject multiple times? (I have 40 robbery places).
Basically, i wanna create an object based on the coordinates in that array.