kaandemirtas wrote:
can you tell me where and what to change to enable TITAN (corsair ship) to be available in planet NEW LONDON.
Sure thing. This is actually pretty simple.
NOTE #1: Backup all files before editing.
NOTE #2: I assume you know how to decompress ini files with BINI.
FILE: data\equipment\market_ships.ini
Easily enough, the first base in the file is Planet New London (br01_01_base = Planet New London).
Line 14 is the information for the Titan:
<pre><font size=1 face=Courier>
marketgood = coe2_package, 32, -1, 0, 0, 1, 1, 1
</font></pre>
Before you enable the titan, you must disable one of the other three ships for sale since planets can only have 3 ships for sale.
Pick one:
Bretonia Cavalier Light Fighter =>
marketgood = bf_package, 6, -1, 1, 1, 0, 1, 1
Bretonia Clydesdale Freighter =>
marketgood = bfr_package, 4, -1, 1, 1, 0, 1, 1
Bounty Hunter Piranha Light Fighter =>
marketgood = bhf_package, 4, -1, 1, 1, 0, 1, 1
As I explained earlier, these numbers basically mean this:
marketgood = ship_nickname, level requirement, -1, BUYABLE? (1 if yes), BUYABLE? (1 if yes), BUYABLE? (0 if yes), 1, 1
So lets say you wanted New London to stop selling the Bretonia Cavalier Light Fighter. Change its data to:
marketgood = bf_package, 6, -1, 0, 0, 1, 1, 1
Then, to enable the Titan change its line to:
marketgood = coe2_package, 32, -1, 1, 1, 0, 1, 1
If you want to make it buyable earlier, change that 32 (that is the level requirement).
Incidentally, if you want to make the Titan cheaper to buy, you would edit data\equipment\goods.ini and go down to here:
<pre><font size=1 face=Courier>
[Good
nickname = coe2_hull
category = shiphull
ship = co_elite2
price = 658000
ids_name = 12017
item_icon = Equipment\models\commodities\nn_icons\pi_heavy.3db
</font></pre>
Then just change the price.
There is some kind of added factor that goes into the price for ships (no idea why) which causes the Titan to actually sell for 700,000+. Keep that in mind.