CFGFactory will be ceasing all operations on 13.03.2026. That will be the final date of this site. Thank you.

Navigation

Droneflyby

File description

This drone constantly fly above the map.
Just place spyplane folder your mod folder (or openwarfare folder) and thread _globalinit.gsc init.

init()
{
thread spyplane\spyplane:ospyplane();
precacheModel("vehicle_uav_all_v3");
}

Place your mod.csv
material,mtl_vehicle_counteruav
xmodel,vehicle_uav_all_v3

Comments

0 0

Hello thanks for this mod,its great. is there any way i could get to do a larger 360 for sniper maps and a little higher above the map. thanks


Posted on 03.09.2020 / 22:08

Hi!
Yes it is possible to change the height, in spyplane.gsc 59. line

GetPosition()
{
location = (50,100,1100);
X Z Y axis
return location;
}

The Y-axis is the height.
Some map coords
if( isMap("mp_bloc") )
location = (1100,-5836,2300);
if( isMap("mp_crossfire") )
location = (4566,-3162,2000);
if( isMap("mp_citystreets") )
location = (4384,-469,2100);
if( isMap("mp_creek") )
location = (-1595,6528,2500);
if( isMap("mp_bog") )
location = (3767,1332,1900);
if( isMap("mp_overgrown") )
location = (267,-2799,2600);


Posted on 07.09.2020 / 21:33

0 0

Thank you very much lstyu97, will have a play with these setting.


Posted on 09.09.2020 / 10:06

Post comment

ONLY USERS CAN POST COMMENTS.

Related files