lapulapu 6 Report post Posted July 8, 2016 (edited) Hi All, One thing I noticed at the update is that I had customised levels above the standard exile level 10, yet any flags that were stolen above level 10 could not have their ransom paid. Stolen flags that you get back only go up to level 10 also. I can see the need for these separate level flags, instead of one standard flag you get back for ransom. One could most likely use a cheap stolen flag to restore a level 10 base flag. I've since rescaled my levels/radius/objects to keep within the 10 levels which sorted my issue. Would it be worth putting a note in the config comments for "CfgTerritories" so people avoid going above the standard 10 levels, and rather scale their building object/radius's within the 10 levels? Edited July 8, 2016 by lapulapu typos Share this post Link to post Share on other sites
Paul 104 Report post Posted July 8, 2016 This will likely just need a random amount adding to the table in the config files (I'm at work so can't see them at the mo). There is a table which lists how much a player gets for the stolen flag at each level, and how much the owner has to pay to get it back. Share this post Link to post Share on other sites
Paul 104 Report post Posted July 8, 2016 Here you go, it's at the bottom of the prices in config.cpp: /////////////////////////////////////////////////////////////////////////////// // Flags /////////////////////////////////////////////////////////////////////////////// class Exile_Item_FlagStolen1 { quality = 1; price = 5000; sellPrice = 5000; }; class Exile_Item_FlagStolen2 { quality = 1; price = 10000; sellPrice = 10000; }; class Exile_Item_FlagStolen3 { quality = 1; price = 15000; sellPrice = 15000; }; class Exile_Item_FlagStolen4 { quality = 1; price = 20000; sellPrice = 20000; }; class Exile_Item_FlagStolen5 { quality = 1; price = 25000; sellPrice = 25000; }; class Exile_Item_FlagStolen6 { quality = 1; price = 30000; sellPrice = 30000; }; class Exile_Item_FlagStolen7 { quality = 1; price = 35000; sellPrice = 35000; }; class Exile_Item_FlagStolen8 { quality = 1; price = 40000; sellPrice = 40000; }; class Exile_Item_FlagStolen9 { quality = 1; price = 45000; sellPrice = 45000; }; class Exile_Item_FlagStolen10 { quality = 1; price = 50000; sellPrice = 50000; }; You should just need to add a new 'item' for each of your additional levels if logic is correct. Share this post Link to post Share on other sites
leonardos1978 33 Report post Posted November 12, 2017 Flags not to buy 11 level after class Exile_Item_FlagStolen11 { quality = 1; price = 60000; sellPrice = 60000; }; Share this post Link to post Share on other sites
GolovaRaoul 221 Report post Posted November 14, 2017 Flag level 11 item doesn't excist ;P Share this post Link to post Share on other sites
hogansheroes 374 Report post Posted November 14, 2017 (edited) Never noticed either Edited November 14, 2017 by hogansheroes Share this post Link to post Share on other sites