Hero Camp Trade Humanity

willidshome

Well-Known Member
Is there a way to change the amount of humanity people need to trade with the Hero Trader.

Players want it making higher so we can add some decent guns.
 
fn_selfActions.sqf
Code:
if((_traderMenu select 2) == "friendly") then {
    _humanity_logic = (_humanity < -5000);
};
if((_traderMenu select 2) == "hostile") then {
    _low_high = "high";
    _humanity_logic = (_humanity > -5000);
};
if((_traderMenu select 2) == "hero") then {
    _humanity_logic = (_humanity < 5000);
 
Back
Top