RevoLand 11 Report post Posted October 19, 2015 (edited) Open your config.cpp, add the code i have given below to class CfgExileCustomCode:ExileClient_object_player_event_onHandleDamage = "client\ExileClient_object_player_event_onHandleDamage.sqf";It should look like this:https://dl.dropboxusercontent.com/s/i09voizbeagjzpf/20-Salı-WC752I6j22.png?dl=0And content of ExileClient_object_player_event_onHandleDamage.sqf:/** * Exile Mod * exile.majormittens.co.uk * © 2015 Exile Mod Team * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/. */ private["_unit","_selectionName","_amountOfDamage","_sourceOfDamage","_typeOfProjectile"]; _unit = _this select 0; _selectionName = _this select 1; _amountOfDamage = _this select 2; _sourceOfDamage = _this select 3; _typeOfProjectile = _this select 4; if ((leader (group _unit) == leader (group _sourceOfDamage)) && (_unit != _sourceOfDamage)) then { _amountOfDamage = 0; _amountOfDamage; };Here you go, no more FF to your teammates Edited October 22, 2015 by RevoLand fixed no fall damage 2 Share this post Link to post Share on other sites
Inactive 18 Report post Posted October 26, 2015 Amazing! Would love to see this on more servers! Share this post Link to post Share on other sites
itsatrap 251 Report post Posted October 26, 2015 lol this is truly n00b mode on 4 Share this post Link to post Share on other sites
CEN 449 Report post Posted October 26, 2015 Agreed, this is sad. Share this post Link to post Share on other sites
BIAGAMING 13 Report post Posted October 26, 2015 Yes they already have a hexagon, how much easier does it need to be? Share this post Link to post Share on other sites
itsatrap 251 Report post Posted October 26, 2015 COD easy sadly Share this post Link to post Share on other sites
Mio 0 Report post Posted May 13, 2016 Its possible to apply this for all players in server even when they are not in same group? Share this post Link to post Share on other sites
JDsplice 2 Report post Posted March 2, 2017 (edited) Can you please post a code that turns off Friendly Fire for the whole server? Edited March 2, 2017 by JDsplice Share this post Link to post Share on other sites