Page cover

⛏️Purchasing Tools

  • You can add items to the list of tools that players can purchase from the mine employees

  • The name is the item name and the cost is the price to purchase that item


Config.Tools = {
    --define tools available to buy at the mining employee
    --name is the item name
    --cost is the price of that item
    --add as many items here as you wish
    --leave the furnace and the crafting bench items in here as if they are set to static for their spawning type they are dynamically excluded from this list so you dont need to remove them
    { name = 'hessiensack',     cost = 5, },
    { name = 'washpan',         cost = 15, },
    { name = 'screwdriverset',  cost = 25, },
    { name = 'pickaxe',         cost = 50, },
    { name = 'furnace',         cost = 1000, },
    { name = 'craftingbench',   cost = 1000, },
}

Last updated