And if you dont want to add the number when placeing mines use:
{ XYPos( 15, 8), mapMiningBeacon, 0, 1, 1},
Well, from what I hear, Eddy has more advanced code than I do for setting lava flows, but essentially you can do it by calling GameMap::SetLavaPossible for each tile the lava can flow to.
Here is some sample code I used to clone the lava flow from CES1.dll (Colony, Eden Startship). I got the coordinates of the volcano from a disassembled view of the DLL, hence why all the coordinates are listed in hex.
// Set animated mouth of volcano
GameMap::SetTile(LOCATION(0x32, 0xB8), 0x474);
GameMap::SetTile(LOCATION(0x32, 0xB9), 0x47E);
// Allow lava at initial eruption point
GameMap::SetLavaPossible(LOCATION(0x32, 0xBA), 1);
// Set eruption point
TethysGame::SetEruption(0x32, 0xBA, 0x96 /* Lava spread speed? (set after the eruption has occured) */);
The first two lines of code set the animation usually found on volcanos. The next line of code ensures lava can flow on the actual eruption point. (Otherwise it tends to never appear, even though you get the eruption warning.) The last line actually starts the eruption. Note how the last parameter controls the spread speed. It needs to be fairly large for it to be noticable. Also, when the eruption occurs, whatever lava spread speed was set before is overwritten. It appears to be one global value used by all volcanos.
To add to Hooman: the 3rd param in SetEruption is the speed at wich the lava will spread out: set it 1 and it'll go a snail's pass, set to too 200 for example, and you got 2 seconds to get out of the way !
As for LavaPossible: This function (SetAllLava) sets LavaPossible for all dark-gray tiles, including the edges. Just call the function from your InitProc().
Be advised that IF you call it at some other time in your DLL, it won't setLavaPossible to any modified tiles, i.e. tiles that are dozed, or have a crater, or rubble, or whatever!
// SetAllLava:
// dark lavarock: 1D7-1F8
// edges: 22F-25E
void SetAllLava()
{
LOCATION size(1024,1024);
int x,y,tile;
size.Clip(); // just a simple way to get the correct mapsize
for (y=0; y<size.y; ++y)
{
for (x=31; x<size.x; ++x)
{
tile=GameMap::GetTile(LOCATION(x,y));
if (((tile>=0x22F) && (tile<=0x25E)) || ((tile>=0x1D7) && (tile<=0x1F8)))
GameMap::SetLavaPossible(LOCATION(x,y),true);
}
}
}