Results 1 to 3 of 3

Thread: Banking Questions

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

    Default Banking Questions

    So I'm attempting to write a script that utilizes the two following commands:

    'Deposit All' button
    Mousekey Withdrawing


    The issues I'm having are the following with each:

    - I'm aware that using "DepositAll" will do what I want from the first of the two commands, but when I run the script it clicks the deposit all button then sits idle for like 1~2 seconds, which just wastes time and makes using that function pointless as those 1~2 seconds are what you save when using Deposit All vs just right click and depositing from your inventory..

    - How on earth would one simulate mousekey withdrawing? I know RiD actually utilizes mousekeys when withdrawing (I'm from RiD, don't shoot!) but I've seen a friend form here simulate mousekeys by upping the mouse speed for the portion of the script. I've tried doing so, but the script just ignores my command lines and continues on.

    I've tried things like:

    Code:
    Begin
        DepositAll;
        MouseSpeed := 200;
        Withdraw(9,2,13);
        Withdraw(9,1,13);
        MouseSpeed := 18;
        CloseBank;
        End;
      End;
    &

    Code:
    begin
        MouseSpeed := 200;
        MouseBankSlot (9,2)
        Wait(250);
        begin
            if isUpText ('13') then
            begin ClickMouse
                ClickMouse2(True);
                Result :=True;
            end;
        end;
    begin
        MouseSpeed := 200;
        MouseBankSlot (9,1)
        Wait(250);
        begin
            if isUpText ('All') then
            begin ClickMouse
                ClickMouse2(True);
                Result :=True;
            end;
    end;
    But I feel as if the second attempt is just plain silly. Note that I need to add to the second part a MouseSpeed := 18; to reduce the mouse speed after the withdrawing is complete.

    Any help is greatly appreciated!
    Last edited by xAnthrax; 04-25-2012 at 09:44 PM.

  2. #2
    Join Date
    Mar 2012
    Location
    Over there
    Posts
    840
    Mentioned
    4 Post(s)
    Quoted
    42 Post(s)

    Default

    Mousekeys

    As for the DepositAll, it only continues when your inventory is empty so you will have to either edit it for your needs or make your own.

    Or try using QuickDeposit.

  3. #3
    Join Date
    Feb 2012
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I actually got it working thanks to the help of my friend Sin. Just sped the mouse up to crack speeds for the withdrawal like I had intended, but used a different withdrawing pattern instead of what I was attempting.

    Thanks for the speedy reply ^^

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
  •