2οΈβ£Making a Configuration File
Creating a configuration file is straightforward. Follow these steps to set up your config:
Steps:
π Save as .json:
Make sure any config file you create ends with
.jsonand place it in the./configs/folder.
β οΈ Clearing Inventory:
Before running a bot in "flipping" mode, ensure that the inventory is clear and not in a place where random items might be picked up.
{
"auctionRefreshMin": 250,
"auctionRefreshMax": 500,
"mode": "flipping",
"items": {
"Β» Pet Candy Β«": {
"ensureItemIs": "dye",
"resellPrice": 50000,
"maxPrice": 50000,
"maxAmount": 2
},
"diamond_leggings": {
"ensureEnchants": {
"Deathbringer": 2
},
"resellPrice": 50000,
"maxPrice": 100000,
"maxAmount": 1
}
}
}
Key Properties:
π Auction Refresh Speed:
Control the auction refresh speed with
auctionRefreshMinandauctionRefreshMax.
π Mode:
Choose between "flipping" or "sniping" mode.
π Item Names:
Define items by their name or custom name.
π² Resell and Max Price:
Set the price for reselling and the maximum purchase price.
βοΈ Ensure Enchants:
Make sure specific enchantments are included with
ensureEnchants.
Note:
π οΈ Optional Properties:
ensureItemIs,resellPrice, andensureEnchantsare optional.
π οΈ Debug Mode:
Add
"debug": trueto the config for detailed information about the items in the auction house.
π Example Log File:
To see a file containing all the bot's knowledge on items, check the Example Log File.
Last updated
Was this helpful?