Comrades in Arms Discussion Board
How to disable the “Hi” option - Printable Version

+- Comrades in Arms Discussion Board (http://forum.ciahome.net)
+-- Forum: Comrades in Arms Life (http://forum.ciahome.net/forumdisplay.php?fid=3)
+--- Forum: Mission Making (http://forum.ciahome.net/forumdisplay.php?fid=8)
+--- Thread: How to disable the “Hi” option (/showthread.php?tid=1963)



How to disable the “Hi” option - Nikiller - 01-10-2011

hi,

For mission makers who want to stop players from being able to click on each other and say “Hi” constantly, use this code in your init.sqf to stop core conversations:

Code:
//init.sqf by Nikiller
//for players starting from the lobby
if (!(isNull player)) then
    {
       player setVariable ["BIS_noCoreConversations", true];
    };
//for JIP players
if (!isServer && isNull player) then
    {
    waitUntil {!isNull player};

       player setVariable ["BIS_noCoreConversations", true];
    };
if (true) exitWith {};

cya.

Nikiller


Re: How to disable the “Hi” option - Variable - 04-28-2011

Thanks, I will use that in my upcoming "Breaking Hercules" mission:
http://www.ofpec.com/forum/index.php?topic=35609.msg244526#msg244526


Re: How to disable the “Hi” option - Overlord - 04-28-2011

Is this a nice little snippet we want in all our missions on server? Is it any drawbacks (will it affect other aspects of the game)?


Re: How to disable the “Hi” option - Variable - 04-28-2011

(04-28-2011, 06:33 PM)Overlord link Wrote: Is this a nice little snippet we want in all our missions on server? Is it any drawbacks (will it affect other aspects of the game)?
AFAIK This can't be disabled for all missions on the server. It just removes the stupid BIS conversation feature. I hope the guy who though of it got his ass fired. Well, maybe in BIS he got promoted Tongue


Re: How to disable the “Hi” option - Overlord - 04-29-2011

(04-28-2011, 08:01 PM)Variable link Wrote: AFAIK This can't be disabled for all missions on the server. It just removes the stupid BIS conversation feature. I hope the guy who though of it got his ass fired. Well, maybe in BIS he got promoted Tongue
The script must be added to init.sqf to all missions. Lot of work to redo everything just to get rid of it, but it is an option in new (not made yet) missions.


Re: How to disable the “Hi” option - Pulverizer - 04-29-2011

There's a server-side addon that lets you exec code on all clients (used for repeating server messages etc). You could use that to disable conversations from all missions.

I don't remember what it was called though.


Re: How to disable the “Hi” option - Osku - 04-29-2011

Let's mix the soup even more; the client side addons I've mentioned before are

DisableBasicConversationsForAnyUnit_Gameplay_C_OA_ PROPER.pbo
DisableBasicConversationsForAnyUnit_Gameplay_C_OA_ PROPER.pbo.PROPER_OA.bisign
DisableBasicConversations_Gameplay_C_OA_PROPER.pbo
DisableBasicConversations_Gameplay_C_OA_PROPER.pbo .PROPER_OA.bisign

they can be downloaded here: http://forums.bistudio.com/showthread.php?t=102678

I suppose they won't work on the server-side ?