Sarge AI Static Spawn Points

78043641

Well-Known Member
How do i set a static spawn point, i see this
_this = createMarker ["SAR_patrol1",[7978.30,7844.25,0]];
what are the [7978.30,7844.25,0] numbers? these are not coords how do i convert map coords to these random numbers?
 
Hey,

In order to get the right coords i suggest you go in game, go to the spot from which you'd like to have the coords, and look up the coords in your MySQL database.

It will look something like this:

Code:
[51,[6407.96,2713.38,1.851]]

You will then have to take this part out:

Code:
6407.96,2713.38,1.851

And add it to the line you described above like this:

Code:
_this = createMarker ["SAR_patrol1",[6407.96,2713.38,1.851]];
 
Back
Top