πŸ“•User guide

User guide on how to use the Dynasty Miner

1. Stones

To modify all the configurations of the stones you can modify the table Config.Minerals in dynasty_miner/config/config.lua

Config.MinesLevels = {
    [1] = {
        levelRequired = 1,
        chances = { coal = 80, gold = 15, emerald = 5 },
        coords = {
            vec3(2936.808838, 2780.795654, 39.305542),
            vec3(2941.780273, 2774.043945, 39.255005),
            vec3(2947.898926, 2775.666016, 39.187500),
            vec3(2946.738525, 2783.287842, 39.777344),
            vec3(2939.261475, 2786.597900, 39.861572),
            vec3(2945.604492, 2789.986816, 40.333374),
            vec3(2941.529785, 2779.344971, 39.339233)
        }
    },
}

1.1 Level required

To modify the level the player need to mine that ore you have to modify the level required

1.2 Respawn probabilities

To modify the respawn probabilities you can change the name of the ores you want to respawn in that rock and its probability

1.3 Stones coords

To modify the coords of the stones you want to have that configuration you modify the coords list

2. Ores

To modify all the configurations of the ores you can modify the table Config.Minerals in dynasty_miner/config/config.lua

2.1 Drop probability and quantity

To modify the drop probability of the item and the max quantity you can receive you can change the items table

Miner items

2.2 Price

Tomodify the price you get from mining each ore you can modify the price value

2.3 Experience

To modify the experience you get from mining each ore you can modify the experience value

2.4 Totalhits

To modify the amount of interactions you need to do (pickaxe animation) to successfully mine each ore you can change the totalhits value

2.5 Pickaxe durability

To modify the amount of durability you lose from your pickaxe with the interaction for each ore you can change the durabilitypenalty value

3. Experience system

To modify the amount of experience needed for each level you can change the values in Config.LevelExperience table in dynasty_miner/config/config.lua

4. Props

To modify the props position you can change te values from the table ObjectList in dynasty_miner/config/config.lua

Last updated