• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Player vending machines issue

The second in the list is a UI mod from a18 that would not be compatible.

You also have Khaines backpack buttons from a18 which is not only incompatible, but obsolete as that code is enabled in the client by default now, and does not require the mode to un-hide it.

Khaines 96-slot backpack with food and water is a UI mod.

Both of the PhD forge mods are UI mods.

Riles Fixes is almost a complete overhaul and is probably not compatible with some of the other things you've got loading.

zzzdatasmodlets is most likely not even loading because it's installed incorrectly, but I'm at a loss to find where that mod actually exists so I can verify it.

So yeah, you've got a pretty large list of mods that could be causing the issue. Did you just browse though the Nexus picking stuff at random?

 
they all work fine

the khaines back pack buttons do work, and are not part of the game, its an added "upload to chest" feature which is excellent

also the other a18 mods work fine aswell, no errors at all

but i have found the issue

in my zzzzdatasmodlets trader.xml i had this line

<set xpath="/traders/trader_info/@reset_interval">1</set>

which i thought just made the traders restock everyday, but it seems to affect player vending machines, showing "restock" overlapping as shown above, when i removed that line (or remarked it out), it doesnt show

so im wondering if thats an issue, why would a trader setting affect a player vending machine?

 
sorry about that, when i made the 1st post  i didnt think it was a mod issue until someone replied saying it could be

 
sorry about that, when i made the 1st post  i didnt think it was a mod issue until someone replied saying it could be


Hi Data

It is a small problem as you configured your xml file, because the traders and the machine have a reset interval and since you did not specify the ID number you want to change, I also apply it to the selling machine, that was the error.
Regards

 
i realise that now, so would this work?

<set xpath="/traders/trader_info[@id='1']/@reset_interval">1</set>
<set xpath="/traders/trader_info[@id='6']/@reset_interval">1</set>
<set xpath="/traders/trader_info[@id='2']/@reset_interval">1</set>
<set xpath="/traders/trader_info[@id='7']/@reset_interval">1</set>
<set xpath="/traders/trader_info[@id='8']/@reset_interval">1</set>

thats the normal traders ids

 
Last edited by a moderator:
i realise that now, so would this work?

<set xpath="/traders/trader_info[@id='1']/@reset_interval">1</set>
<set xpath="/traders/trader_info[@id='6']/@reset_interval">1</set>
<set xpath="/traders/trader_info[@id='2']/@reset_interval">1</set>
<set xpath="/traders/trader_info[@id='7']/@reset_interval">1</set>
<set xpath="/traders/trader_info[@id='8']/@reset_interval">1</set>

thats the normal traders ids


Yes, that will work, I have it configured like this.
Regards

 
Back
Top