Jump to content
Sign in to follow this  
pcc

Disable vehicle radio commands

Recommended Posts

AI commanders and gunners sometimes spam "move to grid..." to the driver and it slows down vehicle path finding.

They also sometimes spam "target that...".

I tried using setSpeaker "NoVoice" and enableChannel to disable vehicle chat, but neither worked.

Share this post


Link to post
Share on other sites

Try in init of vehicle:

 

{_x setSpeaker"NoVoice";_x setVariable["BIS_noCoreConversations",true];_x disableConversations true;}forEach(crew this);

  • Like 1

Share this post


Link to post
Share on other sites

It didn't work, but it blocks other chats.

 

Tried enableRadio false, which does block vehicle command radio, but it also blocks all other radio chats.

I only want to block vehicle command radio.

Share this post


Link to post
Share on other sites

Maybe also add _x disableAI"RADIOPROTOCOL"; to the block of commands above, but not sure how to silence AI in one channel only. Maybe a getInMan/getOut eventHandler which sets commanding skill to 0 when they enter vehicle or something?

 

_x setSkill["commanding",0]; 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×