Results 1 to 6 of 6

Thread: Let cursor point banksymbol on MM

  1. #1
    Join Date
    May 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default Let cursor point banksymbol on MM

    Hello,

    I do not quite understand how I can hoover cursor over a MM-symbol. Can I use one or more specified colors? Or do I have to use a DTM? Or is it for example the bankMMsymbol already declared with colors?

    Could someone post a snippet that makes you find the bank symbol and for example let you walk to it?

    Thanks!

  2. #2
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Simba Code:
    procedure WalkIntoBank;
    var
      bx, by: integer;
    begin
      if (FindSymbol(bx, by, 'bank')) then
        Mouse(bx, by, 3, 3, mouse_Left);
    end;

    That's how you would find and click the bank symbol.

    Forum account issues? Please send me a PM

  3. #3
    Join Date
    May 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Justin View Post
    Simba Code:
    procedure WalkIntoBank;
    var
      bx, by: integer;
    begin
      if (FindSymbol(bx, by, 'bank')) then
        Mouse(bx, by, 3, 3, mouse_Left);
    end;

    That's how you would find and click the bank symbol.
    Oh so no need for color picking? Great thats what I wanted to know! Thx

  4. #4
    Join Date
    May 2012
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Not working though. This for OSR? OSR-SRL or 07clude or both? He can not find the symbol on MM.

  5. #5
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Powerbee View Post
    Not working though. This for OSR? OSR-SRL or 07clude or both? He can not find the symbol on MM.
    Try making your own DTM

  6. #6
    Join Date
    Dec 2011
    Posts
    170
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    Try using lower SymbolAccuracy.
    Default is "SymbolAccuracy := 0.8;

    Anyway, from my experience, findsymbols does only work if there are no players or npc on the symbol, and even then it's a little dodgy.
    I'd recommend making DTMs or using radialwalk.

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
  •