View Full Version : slot 1 only withdrawing one
chris91
06-09-2012, 08:48 PM
I've tried everything and I am stumped. (I am trying to fix a script and I am new).
Procedure Banking;
Begin
Repeat
If OpenBankFast('akb') Then
Begin
If PinScreen Then InPin(Pin);
Wait(RandomRange(500,700));
End;
Until BankScreen;
If BankScreen Then
Begin
DepositAll;
Wait(RandomRange(250,500));
If (UsePots = True) Then
Begin
If Not RunEnergy(35) Then
Begin
MouseBankSlot(2,Mouse_Left);
Wait(RandomRange(300,600));
R := 1;
End;
End;
MouseBankSlot(1,Mouse_Right);
Wait(RandomRange(300,600));
WaitOption('1',500);
Wait(RandomRange(250,500));
CloseBank;
CephaXz
06-09-2012, 08:57 PM
Did you really tried everything? I can find the number '1' in that procedure. You will need to change it to something that withdraw all.
What script might this be?
Runaway
06-09-2012, 09:10 PM
Did you really tried everything? I can find the number '1' in that procedure. You will need to change it to something that withdraw all.
^ That.
// change:
WaitOption('1',500);
// into:
WaitOption('ll',500);
chris91
06-09-2012, 10:05 PM
^ That.
// change:
WaitOption('1',500);
// into:
WaitOption('2',500);
I believe I did that along with adding
WaitOption('2',500); between two lines (forgot the lines). I also tried 'all'.
putonajonny
06-09-2012, 10:13 PM
You dont need to do
If (UsePots = True) Then
You can just do
if(UsePots)then
CephaXz
06-09-2012, 10:18 PM
I made a wild guess, and I think I'm a genius LOL. This is alevere4 tanner script. And I see nothing wrong with the original script, which did you change it to 1 anyway?
You dont need to do
If (UsePots = True) Then
You can just do
if(UsePots)then
That was actually a constant :p
putonajonny
06-09-2012, 10:24 PM
That was actually a constant :pit doesnt matter, you can still do it like that
CephaXz
06-09-2012, 10:30 PM
it doesnt matter, you can still do it like that
Wow, I didn't know that. Learnt something new :p
Runaway
06-09-2012, 10:37 PM
I believe I did that along with adding
WaitOption('2',500); between two lines (forgot the lines). I also tried 'all'.
Use WaitOption('ll',500); like I said above. You can't use 'all' since the A is capitalized, you'd need to either do 'All' or 'll'.
Syntax
06-10-2012, 02:45 AM
Take a look at the thread I made i got it to work you have to do: WaitOption('all pure')
I was using pure essence so you might be using rune pick so i'd be 'all rune'
Brandon
06-10-2012, 02:56 AM
WaitOptionMulti(['w-A', 'draw-All'], 600);
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.