Results 1 to 8 of 8

Thread: Elven Banker

  1. #1
    Join Date
    Dec 2011
    Posts
    484
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Smile Elven Banker

    I have been making a Lletya Flax Picker script here:

    http://villavu.com/forum/showthread.php?t=70683

    and I just need one more thing I think: a way to make the cursor select and click the "Bank" option after right clicking.

    Guidance would be appreciated.

  2. #2
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Quote Originally Posted by Grihmm View Post
    I have been making a Lletya Flax Picker script here:

    http://villavu.com/forum/showthread.php?t=70683

    and I just need one more thing I think: a way to make the cursor select and click the "Bank" option after right clicking.

    Guidance would be appreciated.
    WaitOption('Bank', 500);


    ~Home

  3. #3
    Join Date
    Dec 2011
    Posts
    484
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    So it should say:

    Simba Code:
    procedure BankFlax;

    var x, y:Integer;


    begin
      FindObjCustom(x, y, ['banker', 'alk'], [11256262,3912382,7117761], 3);
      Mouse(x, y, 3, 3, false);
      WaitOption('Bank', 500);
      DepositAll;
    end;

    Correct?

  4. #4
    Join Date
    Dec 2011
    Posts
    484
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Could someone take a look at my script? It is finished and compiles fine but it only runs up until the beginning of the repeat..until. I think I might have done something wrong with my repeat..until.
    Last edited by Grihmm; 01-01-2012 at 08:17 PM.

  5. #5
    Join Date
    Nov 2011
    Location
    Maryland
    Posts
    72
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Simba Code:
    procedure BankFlax;

    var x, y:Integer;

    begin
       if (FindObjCustom(x, y, ['banker', 'alk'], [11256262, 3912382, 7117761], 3)) then
       begin
          Mouse(x, y, 3, 3, false);
          WaitOption('Bank', 500);
          DepositAll;
       end;
    end;
    Last edited by eXoTiK; 01-02-2012 at 03:55 AM.

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

    Default

    Ooh thank you.

  7. #7
    Join Date
    Nov 2010
    Posts
    305
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Don't forget to use CloseBank; after Depositting all your items ofcourse haha. And about your repeat until loop, post it quite sure people will help you out.

  8. #8
    Join Date
    Dec 2011
    Posts
    484
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    The script is in the link in the OP of this thread.

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
  •