- UID
- 55541
- UCC
-
- 声望
-
- 好评
-
- 贡献
-
- 最后登录
- 1970-1-1
|
由于目前困境,建造任务空间站所需都在普塔克星区销售,敌对,货船很难买回来。(其实我觉得补了油料跳跃还是有希望的)
官网论坛上, DarrikVkir发的贴:
“The constructor ship you get free is a unique ship, in that it only can build the URV station, and is the only constructor that can build said URV station.
Because of it's uniqueness, it can be found easily in the save_file. Search for "units_size_xl_builder_ship_plot_01_macro" (verify it has owner="player" on the same line).
A few sections below that macro line is the 'resources' section. This is not what the ship has in stock, but what it needs to start it's current task.
This is what I have for the third section of the URV station:
Code:
<resources>
<ware ware="energycells" amount="672"/>
<ware ware="fusionreactor" amount="52"/>
<ware ware="reinforcedmetalplating" amount="262"/>
<ware ware="bioopticwiring" amount="48"/>
<ware ware="shieldgenerator" amount="12"/>
<ware ware="dumbfireturret" amount="2"/>
<ware ware="machinegunturret" amount="24"/>
<ware ware="plasmaturret" amount="12"/>
</resources>
So you need those resources in your constructor ship's cargo hold for it to start the job.
Copy that block (whatever the numbers may be, they will be different for each stage of the station) to a blank file so you have it without searching for it again.
Now, you need to find the constructor ship's cargo hold. Hopefully, you have a good stored in the constructor ship already that you can search for (like energy cells) because the cargo hold is about 10k lines below the resources section (the details for the entire station being built are stored between them, apparently).
So if you've got 292 energy cells in the cargo hold right now, search for
Code:
<ware ware="energycells" amount="292"
The first result should be your constructor's cargo hold. Just above it will be:
Code:
<component class="storage" macro="storage_ship_xl_universal_01_macro" connection="shipconnection" id="[0x2d94a]">
This section is where you want to paste all those wares from the resource list. You'll want to change it. Using my example resource block above, edited it should look like this:
Code:
<component class="storage" macro="storage_ship_xl_universal_01_macro" connection="shipconnection" id="[0x2d94a]">
<cargo>
<summary connection="cargo">
<ware ware="energycells" amount="672"/>
<ware ware="fusionreactor" amount="52"/>
<ware ware="reinforcedmetalplating" amount="262"/>
<ware ware="bioopticwiring" amount="48"/>
<ware ware="shieldgenerator" amount="12"/>
<ware ware="dumbfireturret" amount="2"/>
<ware ware="machinegunturret" amount="24"/>
<ware ware="plasmaturret" amount="12"/>
</summary>
</cargo>
Save your file, and reload your save. Viola, you should have all the resources you need and your architect will show you building progressing.”
|
|