Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
beeper

How to disable some of panels?

Recommended Posts

Can I disable some of panels (which are shown by pressing "[" and "]" by default) in my mission? For example, I need to disable GPS ( MinimapDisplayComponent?) to infantry players, and sometime - completely, both for infantry and any vehicle (ground and aircraft) drivers and passengers.

Share this post


Link to post
Share on other sites

Hi!

You must remove it from unit loadout, left click at unit on EDEN, or via script, for example:

 

this removeItem "ItemCompass";

 

 

Share this post


Link to post
Share on other sites

You can also disable some gadgets at the description.ext for example:

 

showWatch = 0; // 0: disabled - 1: enabled. Default: 1

Share this post


Link to post
Share on other sites

×