gr0undzer0 Posted January 29, 2014 Report Share Posted January 29, 2014 Hey guys, this is probably really easy but I need help and my Google Fu is not working. I need to reduce the cost of my base maintenance per piece at the plot pole. Default it is 2x10ozG per piece. How would I change this? Thanks in advance. Link to comment Share on other sites More sharing options...
cen Posted January 29, 2014 Report Share Posted January 29, 2014 https://github.com/vbawol/DayZ-Epoch/blob/master/SQF/dayz_code/actions/maintain_area.sqf Pull that file mission side and adjust the prices. You'll need to change the call in compiles.sqf as well. switch true do { case (_count <= 20): {_requirements = [["ItemGoldBar10oz",2]]}; case (_count <= 50): {_requirements = [["ItemGoldBar10oz",4]]}; case (_count <= 100): {_requirements = [["ItemBriefcase100oz",1]]}; case (_count <= 200): {_requirements = [["ItemBriefcase100oz",2]]}; case (_count <= 300): {_requirements = [["ItemBriefcase100oz",3]]}; case (_count <= 400): {_requirements = [["ItemBriefcase100oz",4]]}; case (_count <= 500): {_requirements = [["ItemBriefcase100oz",5]]}; case (_count <= 600): {_requirements = [["ItemBriefcase100oz",6]]}; case (_count > 700): {_requirements = [["ItemBriefcase100oz",7]]}; }; Link to comment Share on other sites More sharing options...
BetterDeadThanZed Posted January 29, 2014 Report Share Posted January 29, 2014 Hey, this is a nice custom base you made.... oh wait... it's not... Hmm.. RRP47 and Nekuan 2 Link to comment Share on other sites More sharing options...
gr0undzer0 Posted January 29, 2014 Author Report Share Posted January 29, 2014 Thanks Cen. And obviously I posted in the wrong forum by mistake, thanks for assholishly letting me know other person. Link to comment Share on other sites More sharing options...
Cash Posted January 29, 2014 Report Share Posted January 29, 2014 "assholishly" LMAO, Great word Link to comment Share on other sites More sharing options...
BetterDeadThanZed Posted January 29, 2014 Report Share Posted January 29, 2014 Thanks Cen. And obviously I posted in the wrong forum by mistake, thanks for assholishly letting me know other person. My pleasure. Maybe next time you won't click on a random forum. :) Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now