| Yukiko wrote: |
Unfortunately the POL Distro doesn't support ore vein systems. So ores are mined at random, POL Distros prior to POL 0.97 Distro that is. Currently, to my knowledge, the POL 0.97 has no mining system at all.
So you'll have to script one of your own.
Several ways are open to you. One is to create an ore item that you place in the world that has the ore type written on it as a CProp. You'd place them in mineable areas and then if a miner was mining on the spot where the item is they would get an ore as defined on the item. You'd want to make them invisible ofcourse.
The other way is to create a config file of ore veins containing coordinates of veins and ore types. Then when a miner first starts mining you have the mining script check the file to see if there's a vein at that location. If so then the miner gets some ore of the type listed in the file. This method has a benefit over the first in that it does not add items to the world data file since it uses a cfg file to hold the vein info. |