I made a rudimentary gas finder using the colors that i've noticed using my miner
Simba Code:
function FindExplodingGas : boolean;
var
cts : integer;
tpa : TPointArray;
begin
cts := GetToleranceSpeed;
SetColorToleranceSpeed(2);
SetToleranceSpeed2Modifiers(.02, .15);
result := FindColorsTolerance(tpa, 8821665, mmcx- 100, mmcy - 100, mmcx + 100, mmcy + 100, 25);
SetColorToleranceSpeed(cts);
SetToleranceSpeed2Modifiers(.2, .2);
end;
function HandleExplodingGas : boolean;
begin
result := true;
if not FindExplodingGas then
exit;
RunAway('n', false, 1, 15000 + random(5000)); //maybe make this random?
result := not FindBlackChatMessage('broken'); //I forget what the message says when your pick breaks
end;
I have yet to get the gas random since I made this, so I'm not entirely sure it will work(Although it should in principle).
edit: Sorry for offtopic, but it might be useful for anyone who cares