Post Sun Jan 01, 2006 4:03 pm

Option problems (updated)

This is the first Mod ive tried to make with user changable options.
It is nowhere near finished, but i'm having a problem. When I go into the game after activating any Warp Core, The nanobots/shield batts don't appear to have gone down. Is there a way I can make them be affected, or is there some other deterrent to stop people from just getting the 4000 speed one, such as making the ship less manuverable(i don't know how).
My Script:

<script>
<header name="Titan Upgrade">
<scriptversion>
1.3
</scriptversion>
<author>
Leedude
</author>
<description>
This MOD allows the player to alter several aspects of the Titan Ship.
</description>
<options>
<option name="Warp Core/Speed/Nanobots/Shield Batts (Hold X to Warp)">
<item id="0" name="No Warp Core">
</item>
<item id="1" name="Small Warp Core/500/65/62">
</item>
<item id="2" name="Medium Warp Core/1000/56/53">
</item>
<item id="3" name="Large Warp Core/2000/41/39">
</item>
<item id="4" name="Dual Warp Core/4000/25/30">
</item>
</option>
</options>
</header>
<data file="data\equipment\engine_equip.ini" method="sectionreplace" options="1:1">
<section>
[Engine
nickname = ge_coe2_engine_01
</section>
<dest>
reverse_fraction = 0.200000
</dest>
<source>
reverse_fraction = -6.25
</source>
</data>
<data file="data\ships\shiparch.ini" method="sectionreplace" options="1:1">
<section>
[Ship
ids_name = 237021
</section>
<dest>
nanobot_limit = 71
shield_battery_limit = 71
</dest>
<source>
nanobot_limit = 65
shield_battery_limit = 62
</source>
</data>
<data file="data\equipment\engine_equip.ini" method="sectionreplace" options="1:2">
<section>
[Engine
nickname = ge_coe2_engine_01
</section>
<dest>
reverse_fraction = 0.200000
</dest>
<source>
reverse_fraction = -12.5
</source>
</data>
<data file="data\ships\shiparch.ini" method="sectionreplace" options="1:2">
<section>
[Ship
ids_name = 237021
</section>
<dest>
nanobot_limit = 71
shield_battery_limit = 71
</dest>
<source>
nanobot_limit = 56
shield_battery_limit = 53
</source>
</data>
<data file="data\equipment\engine_equip.ini" method="sectionreplace" options="1:3">
<section>
[Engine
nickname = ge_coe2_engine_01
</section>
<dest>
reverse_fraction = 0.200000
</dest>
<source>
reverse_fraction = -25
</source>
</data>
<data file="data\ships\shiparch.ini" method="sectionreplace" options="1:3">
<section>
[Ship
ids_name = 237021
</section>
<dest>
nanobot_limit = 71
shield_battery_limit = 71
</dest>
<source>
nanobot_limit = 41
shield_battery_limit = 39
</source>
</data>
<data file="data\equipment\engine_equip.ini" method="sectionreplace" options="1:4">
<section>
[Engine
nickname = ge_coe2_engine_01
</section>
<dest>
reverse_fraction = 0.200000
</dest>
<source>
reverse_fraction = -50
</source>
</data>
<data file="data\ships\shiparch.ini" method="sectionreplace" options="1:4">
<section>
[Ship
ids_name = 237021
</section>
<dest>
nanobot_limit = 71
shield_battery_limit = 71
</dest>
<source>
nanobot_limit = 25
shield_battery_limit = 30
</source>
</data>
</script>

Edited by - leedude on 1/1/2006 6:16:14 PM

Edited by - leedude on 1/1/2006 7:56:57 PM

Edited by - leedude on 1/1/2006 7:58:06 PM