Ore Runneth Evermore
Allows re-setting/respawning of silver, copper, tin and iron mudpiles.
Last updated | 11 months ago |
Total downloads | 6429 |
Total rating | 1 |
Categories | Mods World Generation |
Dependency string | Allegiant_Games-Ore_Runneth_Evermore-1.0.1 |
Dependants | 29 other packages depend on this package |
This mod requires the following mods to function
denikson-BepInExPack_Valheim
BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.
Preferred version: 5.4.2202ValheimModding-Jotunn
Jötunn (/ˈjɔːtʊn/, 'giant'), the Valheim Library was created with the goal of making the lives of mod developers easier. It enables you to create mods for Valheim using an abstracted API so you can focus on the actual content creation.
Preferred version: 2.15.2JereKuusela-Upgrade_World
A tool which can add new content to already explored areas.
Preferred version: 1.46.0README
Ore Runneth Evermore (O.R.E)
The purpose of this mod is to create a means to automatically respawn ores, such as silver and copper. It works by removing the natural generation of ore resources and generates these as locations. Then using Upgrade World (listed as a dependency), use location reset commands to reset the ore locations and terrain, refreshing the world to its pristine condition.
Features:
-
Adjust quantity, altitude and distance between ore deposits in the config to customize your experience. Create a world with few deposits, encouraging more exploration, or create a world with many locations.
-
Set quantity to 0 to remove a resource entirely, like the hidden mudpiles in the swamps.
-
Terrain is reset to return the area to its original look.
-
As these are locations, they can be modified using Expand World (see Drawback for a slight bug)
-
Required only on the server.
Drawbacks:
-
These ore locations are prioritized first amung other locations, and thus, due to vanilla's limit of locations per zone, the more ore locations you add, the less other locations may be generated. For example, the more silver vein locations, the less mountain wells are generated.
-
When the terrain is reset, the vegetation isn't, which in the case of copper, creates a rather obvious clearing where the copper node sits.
-
When using Expand World, the exterior radius in the
locations.yaml
gets set to 20. This will cause many of the locations to not generate and many other locations to not generate.
Please change the exterior radius to the following:
coppervein_loc = 10
tinvein_loc = 2
ironvein_loc = 5
silvervein_loc = 10
How to use:
Location Prefabs:
tinvein_loc
coppervein_loc
silvervein_loc
ironvein_loc
Upgrade World Commands:
the force
property will remove player structures from the reset area. You may remove the property to run reset based on Upgrade World's safe zone.
locations_reset tinvein_loc terrain=5 start force
locations_reset coppervein_loc terrain=40 start force
locations_reset silvervein_loc terrain=20 start force
locations_reset ironvein_loc terrain=20 start force
Cron Job - for automation
Place these in the jobs property in the cron.yaml. The following will reset ore locations at 2 AM (for timezone given) every three real life days.
jobs:
- command: locations_reset tinvein_loc terrain=5 start force
schedule: "0 2 */3 * *"
inactive: 0
- command: locations_reset coppervein_loc terrain=40 start force
schedule: "0 2 */3 * *"
inactive: 0
- command: locations_reset silvervein_loc terrain=20 start force
schedule: "0 2 */3 * *"
inactive: 0
- command: locations_reset ironvein_loc terrain=20 start force
schedule: "0 2 */3 * *"
inactive: 0
Changelog
1.0.0
- Reupload to ensure proper version
- updated Readme
0.0.1
- Initial Upload