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;
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.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;
Any help is greatly appreciated!


Reply With Quote

