Hi, Would be posible to do that?
I have now a veteran trader in the spot of the old Bandit trader, since I have a PvP zone, there will be bandits, and I would like to add those bandits to Veteran trader too. So having a trader who can sell to Heroes with 25k or above of humanity AND Bandits with -10k or less humanity.
I have veteran in fnselfactions-sqf, but I don't know if its possible to make it work for bandits too, Any help?
_low_high = "low"; _humanity_logic = false; if((_traderMenu select 2) == "friendly") then { _humanity_logic = (_humanity < -5000); }; if((_traderMenu select 2) == "veteran") then { _humanity_logic = (_humanity < 25000); }; if((_traderMenu select 2) == "hero") then { _humanity_logic = (_humanity < 5000); };
Thank you!