And it worked!
DeVries kinda screwed things up by not having medium traders or miners, so I couldn't do it the laziest way, but it only took a couple of extra minutes.
The syntax checks out, but until I can try it at home I won't know if it works in-game.
So, prepare for another obscenely long code block.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<diff xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" >
<!--Albion-->
<!--Albion bulk traders-->
<replace>
sel="/ships/ship[@id='albion_trader_bulk_large']/cargo/wares/fillpercent/@min">0
</replace>
<replace>
sel="/ships/ship[@id='albion_trader_bulk_large']/cargo/wares/fillpercent/@max">0
</replace>
<replace>
sel="/ships/ship[@id='albion_trader_bulk_medium']/cargo/wares/fillpercent/@min">0
</replace>
<replace>
sel="/ships/ship[@id='albion_trader_bulk_medium']/cargo/wares/fillpercent/@max">0
</replace>
</diff>
Edit:
Which is wrong, hence this edit. Should look like this
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<ships xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<diff>
<!--Albion-->
<!--Albion bulk traders-->
<replace sel="//ships/ship[@id='albion_trader_bulk_large']/cargo/wares/fillpercent/@min">0</replace>
<replace sel="//ships/ship[@id='albion_trader_bulk_large']/cargo/wares/fillpercent/@max">0</replace>
<replace sel="//ships/ship[@id='albion_trader_bulk_medium']/cargo/wares/fillpercent/@min">0</replace>
<replace sel="//ships/ship[@id='albion_trader_bulk_medium']/cargo/wares/fillpercent/@max">0</replace>
<!--Albion container traders-->
I have it complete and working, but I feel bad about the long code blocks hogging up space.