You left your username and password inside the script, or am I getting trolled?
Edit*
It's a good try at a first script!
A few things i'd like to point out though.
Simba Code:
Procedure MineOre;
var x, y: integer;
begin;
repeat
FindNormalRandoms; //You aren't using randoms correctly :p, should be like this -
{if not FindNormalRandoms then
if not LoggedIn then
TerminateScript;
}
if FindObj(x, y,'ine', 2832993, 10) then //if it finds this...
Mouse(x, y, 2, 2, false); //it'll do this but...
ChooseOption('ine'); //it'll do this regardless of finding it!
Wait(3500+random(1500)); //same thing with it!
repeat
Until not IsUpText('ron') or (InvFull);
until(InvFull);
{So, what we have here is technically called an infinite loop, it'll go on as long as it can.
It's also a bad piece of code (No offence :p), since what it does is it's in a repeat/until loop two times over!}
if (InvFull) then DropAll;
end;
Your antiban is also a bit sporradic 
Simba Code:
[B]rocedure AntiBan;
begin
if(not(LoggedIn))then
Exit;
FindNormalRandoms;
case Random(8) of
0:
begin
HoverSkill('Mining', false);
wait(2453+Random(432));
end;
1: PickUpMouse;
2:
begin
MakeCompass('N');
wait(100+random(133));
MakeCompass('W');
wait(50+random(133));
MakeCompass('N');
FindNormalRandoms;
end;
end;
end;
While not badly coded, it's a bit repetitive and it'll do antibans more than it'll mind