Posted: . At: 11:16 AM. This was 3 years ago. Post ID: 15497
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.



Sponsored



How to remove the Zeus Eagle in Arma 3.


This code placed in the init of the Zeus module in Arma 3 will disable the annoying Zeus eagle.

1
2
3
[this, [-1, -2, 0, 3, 4, 5, 6, 7, 8]] call bis_fnc_setcuratorvisionmodes;
this setVariable ["showNotification", false];
this setVariable ["birdType",""];

This will help out when using Zeus to edit a mission and you require more immersion. This makes a big difference.

Run this code sample on the server as the last thing executed after your mission is generated and all objects and units will be added to all Zeus users.

1
2
3
4
{
	_x addCuratorEditableObjects [allUnits,true];
	_x addCuratorEditableObjects [vehicles,true];
} count allCurators;

That makes editing very easy.


Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.