Wow great first script a lot better than mine lol. Just one thing u may want to learn standards, yous are a bit err.....unique?
there's a few tut's on standards in tut island section here's an example of how i'd change urs
ok this is original code and how it looks:
SCAR Code:
procedure MajorMining;
begin;
repeat;
FindNormalRandoms;
FindTalk;
if(FindColorSpiralTolerance(x,y,RockColor,5,5,514 ,337,5)) then;
Mmouse(x,y,2,2);
CheckForGas;
wait(100+random(250));
If(IsUpText('ine'))then;
Mouse(x,y,2,2,false);
ChooseOption(x,y,'Mine')
Wait(3000+random(2000))
If(DidRandomHappen = true) then
begin;
RunAwayDirection('n')
wait(5000+random(3000))
end;
Until(InvFull);
End;
This is your code with official standards:
SCAR Code:
procedure MajorMining;
begin;
repeat;
FindNormalRandoms;
FindTalk;
if(FindColorSpiralTolerance(x,y,RockColor,5,5,514 ,337,5)) then;
Mmouse(x,y,2,2);
CheckForGas;
wait(100+random(250));
If(IsUpText('ine'))then;
Mouse(x,y,2,2,false);
ChooseOption(x,y,'Mine')
Wait(3000+random(2000))
If(DidRandomHappen = true) then
begin;
RunAwayDirection('n')
wait(5000+random(3000))
end;
Until(InvFull);
End;