Now that everything seems to be working fine with the plugin, I have a question about the shop item order. In the config file, I have everything grouped together (metals, fibers, etc.). When I use the ingame /shop page to view the items in the shop, everything is out of order and all the items just show up randomly.
Is there any way for shop items to show up in the order they appear in the config file?
Also, I was using some examples I saw on the pages here to build out the config.
Some examples show putting in items like what the copper item I have below looks like. However, items will only actually work (able to buy) for me in the store if I put them in with the format that I used for cobalt. Do all shop 'items' have to be in the cobalt format?
"cobalt":{
"Type":"item",
"Description":"Cobalt Metal x500",
"Price":50,
"Items":[
{
"Quality":0,
"ForceBlueprint":false,
"Amount":500,
"Blueprint":"Blueprint'/Game/Atlas/AtlasCoreBP/Items/Resources/PrimalItemResource_Metal_Cobalt.PrimalItemResource_Metal_Cobalt'"
}
]
},
"copper":{
"Type":"item",
"Description":"Copper Metal x500",
"Price":50,
"Amount":500,
"Blueprint":"Blueprint'/Game/Atlas/AtlasCoreBP/Items/Resources/PrimalItemResource_Metal_Copper.PrimalItemResource_Metal_Copper'"
},