Log in

View Full Version : How to update a Script with the new banking system



Novain
02-05-2012, 07:49 PM
So a couple days ago Jagex changed Banking. its now one click instead of two. And now it says Bank instead of use Quickly. How would i update a script to work with the new bank? Im completely new and just learning so any help is appreciated ^^

Iambubbleman
02-05-2012, 07:53 PM
Well now only a left click is required

So for example

You used to have to do

FindObjTPA(x, y, 4153201, 10, 1, 25, 8, 120, ['ank']);
Mouse(x, y, 2, 2, false);
ChooseOption('Bank');


But now you can just do this

FindObjTPA(x, y, 4153201, 10, 1, 25, 8, 120, ['ank']);
Mouse(x, y, 2, 2, true);

Novain
02-05-2012, 08:00 PM
Thank you. Im trying to update Cruzin's Body Stitcher for the bank update, but i cant find anything like that in his code. Heres the procedure for "Bank" in his code
procedure Bnk;
begin
if not(LoggedIn) then Exit;
// MakeCompass('W');
// SetAngle(true);
w:= RandomRange(200,800) + RandomRange(250,375);
if OpenBank('akb',false,false)then
begin
i1:=0;
repeat
Inc(i1);
Wait(w);
Until(BankScreen) or (i1=15);
wait(400+RandomRange(30,70));
DoDeposit;
MouseSpeed:= RandomRange(14,19);
DoWithdraw('ard ',26);
tri:=6;
while CloseBank do
if BreakTiming then
begin
DoBreak;
end;
end;
end;

masterBB
02-05-2012, 08:05 PM
That function uses OpenBank, this is updated in SRL itself. It should work.

Novain
02-05-2012, 08:09 PM
It just clicks the bank, hovers over 'Bank' and does nothing. =/

RyGuy
02-05-2012, 08:11 PM
It just clicks the bank, hovers over 'Bank' and does nothing. =/

Make sure your SRL is updated.

Iambubbleman
02-05-2012, 08:25 PM
If you still can't get it to work it looks like you could do something like take out

if OpenBank('akb',false,false)then
begin
i1:=0;
repeat
Inc(i1);
Wait(w);
Until(BankScreen) or (i1=15);

And if it's a Bank Booth do this

x:= MSCX;
Y := MSCY;
FindObjTPA(x, y, 2641499, 10, 1, 25, 8, 120, ['ank']);
Mouse(x, y, 3, 3, true);
repeat
wait(randomrange(49,51));
until(BankScreen);

Novain
02-05-2012, 08:37 PM
Make sure your SRL is updated.

Yeah SRL had an update, but its still behaving the same way.