Results 1 to 6 of 6

Thread: Cant Get IT Right!!How Do I click on BankSymbol

  1. #1
    Join Date
    Sep 2008
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Cant Get IT Right!!How Do I click on BankSymbol

    My script that I've been making ( everyone will love <3) is almost complete... I need to know how to click on BankSymbol it wont do it.. I tried doing this


    if (FindColorSpiralTolerance(x, y, DRIP, MSX1, MSY1, MSX2, MSY2, 3)) Then
    wait(500);
    Mouse(x,y,1,1,true);


    i've set the DRIP color to bank symbol wont work err..!@ help

  2. #2
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you can also use findbanksymbol, which looks something like this,

    SCAR Code:
    if FindSymbol(x, y, 'bank') then
        begin
          mouse(x, y, 2, 2, true);
          Writeln('Back to Bank');
          FFlag(0);
          Writeln(' Walked To Bank Using Bank Symbol');
        end;

    thats a function in mapwalking.scar (I think), you could also try to use DTM to walk to banks, its far more accurate pretty simple too.

    SCAR Code:
    if FindDTMRotated(BankDTM, X, Y, MMx1,MMy1,MMx2,MMy2, -pi, pi, 0.2, BankAngle) then
      begin
        Mouse(X, Y, 4, 4, True);
        WriteLn('Walked To Bank Using DTM');
        FFlag(0);
      end else

    So pretty much to walk to the bank with a DTM, you need to make your dtm of 1 spot infront of the three bankers with a high tolerance (someone might be standing in the place you want to walk), and then with a lower tolerance make the other points (2-3) of the banker dots in the bank. The script should then walk to the same spot nearly every time! Kind of confusing, xif you go on irc or something later i can help you out more then, also if you read the map walking tutorial, it tells you how to do all of this, or try reading rikjess's banking tutorial,

    -Blumblebee

  3. #3
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    yeah dude, to make life easier for you , read tuts dude they help you alot, srl done most of the job for us. :P

  4. #4
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    sigh!

    SCAR Code:
    if (FindColorSpiralTolerance(x, y, DRIP, MSX1, MSY1, MSX2, MSY2, 3)) Then
    wait(500);
    Mouse(x,y,1,1,true);

    Should be:

    SCAR Code:
    if (FindColorSpiralTolerance(x, y, DRIP, MmX1, MmY1, MmX2, MmY2, 6)) Then
    wait(500);
    Mouse(x,y,1,1,true);

    MMX search's in the minimap

  5. #5
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Quote Originally Posted by NaumanAkhlaQ View Post
    Should be:

    SCAR Code:
    if (FindColorSpiralTolerance(x, y, DRIP, MmX1, MmY1, MmX2, MmY2, 6)) then
    wait(500);
    Mouse(x,y,1,1,true);


    MMX search's in the minimap
    Sigh! Actually it should be:

    SCAR Code:
    if (FindColorSpiralTolerance(x, y, DRIP, MmX1, MmY1, MmX2, MmY2, 6)) then
    begin
      wait(500);
      Mouse(x,y,1,1,true);
    end;
    If you want the script to search for an object and do more than 1 thing (like waiting AND moving mouse) you need begin at the start and end; at the end.

    like I posted.

  6. #6
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Zytex! View Post
    Sigh! Actually it should be:

    SCAR Code:
    if (FindColorSpiralTolerance(x, y, DRIP, MmX1, MmY1, MmX2, MmY2, 6)) then
    begin
      wait(500);
      Mouse(x,y,1,1,true);
    end;
    If you want the script to search for an object and do more than 1 thing (like waiting AND moving mouse) you need begin at the start and end; at the end.

    like I posted.
    Sigh should actually be

    SCAR Code:
    if (FindColorSpiralTolerance(x, y, DRIP, MmX1, MmY1, MmX2, MmY2, 6)) then
    begin
      wait(500 + Random(200)); //random wait
      Mouse(x,y,1,1,true);
    end else
     
    WriteLn('Color NOT Found');
      Exit;// if it doesn't find


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. BankSymbol
    By SubiN in forum RS has been updated.
    Replies: 5
    Last Post: 04-16-2008, 01:32 PM
  2. Find a Chest & Left Click,Right Click
    By yanix in forum OSR Help
    Replies: 3
    Last Post: 10-03-2007, 06:40 PM
  3. how would i get it to click this?
    By seany in forum OSR Help
    Replies: 6
    Last Post: 03-02-2007, 07:06 PM

Posting Permissions

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