Trading system based on gaining points from selling items and buying them back from the shop
NOTE: Both added Blocks don't have recipes yet!
This mod adds two new things into Minecraft:
This mod needs the Create mod to function
Optionally you can install KubeJS to modify point values from a script (see below)
Using item ids and tags ( with the "#" prefix) should both work, although there seem to be some problems sometimes when using tags.
The values you can customly set are also used to recalculate all non-specified values, so you don't have to change them youself. E.g. when changing the value of a stick you don't have to change all things that include a stick to match your new value for sticks.
to change point values of singular items add the following to a file in the
server_scripts folder and replace use the item_id and value you want:
ATEvents.mapping(event => {
event.setRP("item_id", value)
});
In the config folder AmazingTrading you find this file.
To change item values you add the following:
{
"entries": [
{
"item": "item_id",
"rp": value
},
{
"item": "item_id2",
"rp": value2
}
]
}
Conversation