Smythu 23 Report post Posted July 12, 2016 How can I decrease the respect points needed for buying stuff at the trader? and also how to increase respect needed for upgrading the flag? Share this post Link to post Share on other sites
ynpMOOSE 122 Report post Posted July 12, 2016 (edited) You can change the respect levels in the mission config.cpp under the requiredRespect class. class requiredRespect { Level1 = 0; Level2 = 5000; Level3 = 10000; Level4 = 15000; Level5 = 20000; Level6 = 25000; }; You can set individual item required level to buy in there as well. Example item: class HandGrenade { quality = 3; price = 40; }; Quality indicates the required respect level. Territory control is here in the same file class CfgTerritories { // Base Cost / Radius // Level 1 is allways for Pop Tabs, >= 2 for Respect prices[] = { // Purchase Price Radius Number of Objects {5000, 15, 30 }, // Level 1 {10000, 30, 50 }, // Level 2 {15000, 45, 70 }, // Level 3 {20000, 60, 105 }, // Level 4 {25000, 75, 130 }, // Level 5 {30000, 90, 155 }, // Level 6 {35000, 105, 190 }, // Level 7 {40000, 120, 220 }, // Level 8 {45000, 135, 280 }, // Level 9 {50000, 150, 350 } // Level 10 }; Edited July 12, 2016 by ynpMOOSE 2 Share this post Link to post Share on other sites
red_ned 658 Report post Posted July 15, 2016 On 12/07/2016 at 2:58 PM, Smythu said: How can I decrease the respect points needed for buying stuff at the trader? and also how to increase respect needed for upgrading the flag? or change per item by lowering the quality in pricelist Share this post Link to post Share on other sites
deltagi 6 Report post Posted July 18, 2017 does anyone which sqf file the respect levels lead to, I need to change some things in it, thank you! Share this post Link to post Share on other sites
cannibalmerk 4 Report post Posted August 14, 2017 On 7/18/2017 at 4:18 AM, deltagi said: does anyone which sqf file the respect levels lead to, I need to change some things in it, thank you! should be in your map pbo. (for example Exile.Altis.pbo) Share this post Link to post Share on other sites