πͺ Admin Shop Configuration β
DANGER
This file was created automatically and should not be edited manually to avoid errors. Instead, use the commands from Essentials Plus. (/adminshop).
File Information
π File Location: mods/fof1092_EssentialsPlus/adminshop.json
π Back to Configuration Overview
The Admin Shop provides an infinite buy/sell shop where players can purchase and sell items at fixed prices. This file stores all admin shop items with their buy and sell prices.
Example Structure:
{
"Soil_Dirt": {
"buyPrice": 1.0,
"sellPrice": 0.50
},
"Soil_Gravel": {
"buyPrice": 4.0,
"sellPrice": 0.0
},
"Ingredient_Fibre": {
"buyPrice": 0.0,
"sellPrice": 1.0
}
}Shop Item Properties:
itemId- Unique Hytale item identifierbuyPrice- Price for players to buy this item from the shop- Set to
0.0to disable buying (sell-only item) - Must be greater than 0 for purchasable items
- Set to
sellPrice- Price the shop pays when players sell this item- Set to
0.0to disable selling (buy-only item) - Must be greater than 0 for sellable items
- Set to
Item Types:
Buy & Sell Items: Both
buyPriceandsellPriceare positive numbers- Example:
"buyPrice": 1.0, "sellPrice": 0.50 - Players can both buy and sell these items
- Example:
Buy-Only Items: Only
buyPriceis positive,sellPriceis0.0- Example:
"buyPrice": 4.0, "sellPrice": 0.0 - Players can only buy these items, not sell them
- Example:
Sell-Only Items: Only
sellPriceis positive,buyPriceis0.0- Example:
"buyPrice": 0.0, "sellPrice": 1.0 - Players can only sell these items, not buy them
- Example:
Related Commands:
/adminshop buy [item] --amount=<number>- Buy items/adminshop sell --amount=<number>- Sell items/adminshop sellall- Sell all sellable items/adminshop list [page]- List shop items/adminshop add --buyprice=X --sellprice=Y- Add items (admin)/adminshop remove- Remove items (admin)
Permissions:
essentialsplus.adminshop.use- Base permission for shop accessessentialsplus.adminshop.buy- Permission to buy itemsessentialsplus.adminshop.sell- Permission to sell itemsessentialsplus.adminshop.sellall- Permission to use sellallessentialsplus.adminshop.admin- Base permission for shop managementessentialsplus.adminshop.admin.add- Permission to add itemsessentialsplus.adminshop.admin.remove- Permission to remove itemsessentialsplus.adminshop.admin.list- Permission to list all items
Note: This file is automatically managed by the plugin. Use /adminshop add and /adminshop remove commands to manage shop items. The file is saved with pretty-printing for readability.