Results 1 to 5 of 5

Thread: Does it see it?

  1. #1
    Join Date
    Feb 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Does it see it?

    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?
    Last edited by Simono; 02-04-2012 at 07:57 PM.

  2. #2
    Join Date
    Feb 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Updated the thread.
    Last edited by Simono; 02-04-2012 at 08:00 PM.

  3. #3
    Join Date
    Nov 2006
    Posts
    2,369
    Mentioned
    4 Post(s)
    Quoted
    78 Post(s)

    Default

    Code:
    SymbolAccuracy := 0.7;
    Try doing that before you call findsymbol

    ClickMouse(xrandom, yrandom, 0) -> Mouse(xrandom, yrandom, 0, 0, MOUSE_LEFT);

    You should never use ClickMouse in runescape because it's detectable. Also bare clickmouse doesn't move the mouse first.

    0, 0 is the random offset.
    Quote Originally Posted by DeSnob View Post
    ETA's don't exist in SRL like they did in other communities. Want a faster update? Help out with updating, otherwise just gotta wait it out.

  4. #4
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    You should try 'urnace' or 'rnace' instead of 'Furnace'. Simba doesn't like capital letters/first letters.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

  5. #5
    Join Date
    Jan 2012
    Location
    Minneapolis, Mn
    Posts
    185
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by KeepBotting View Post
    You should try 'urnace' or 'rnace' instead of 'Furnace'. Simba doesn't like capital letters/first letters.
    That won't work for this. It isn't searching for text, it is searching for the symbol and furnace is the argument needed to find the furnace symbol.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •