So I'm trying to use the 'FindSymbol(x, y, furnace). It should search the minimap for a furnace symbol.
program CannonSmither;
{$i srl\srl\misc\smart.simba}
{$i SRL\SRL.simba}
var
chanceOfClosingBank:Integer;
procedure DeclarePlayers;
begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := '';
Players[0].Pass := '';
Players[0].Nick := '';
Players[0].Active := True;
Players[0].Pin := '';
end;
procedure findFurnace;
var
x, y, r, t:Integer;
begin
GetMousePos(r, t);
SymbolAccuracy := 0.7;
FindSymbol(x, y, 'furnace');
Mouse(x, y, r, t, MOUSE_LEFT);
end;
begin
Smart_Server := 67;
Smart_Members := True;
Smart_Signed := True;
Smart_SuperDetail := False;
ClearDebug;
SetupSRL;
DeclarePlayers;
LoginPlayer;
Wait(5000+Random(3000));
if(OpenBank('eb', false, true)) then
begin
Withdraw(10, 1, 27);
end else
begin
Logout;
end;
chanceOfClosingBank:=Random(4);
if(chanceOfClosingBank<2) then
begin
CloseBank;
//findFurnace;
end else
begin
findFurnace;
end;
end.
Since I start it in edge bank it should start by opening the bank but nothing happens. Only the mouse moves randomly around every second or so. Besides getting my acc to log in I can't seem to implement anything else.
Also I was told by weequ below that some methods are detectable and some aren't. How do I know which ones give a better guarantee of not getting found and doesn't Jagex only try to detect on people who have been reported?


Reply With Quote










