Hello,
I would like to add colour based banking for my script. I tried some function from SRL library ( http://docs.wizzup.org/srl-5/bank.html#findbank ) ,but it don't works. It just did nothing. Is there any working banking support?
Hello,
I would like to add colour based banking for my script. I tried some function from SRL library ( http://docs.wizzup.org/srl-5/bank.html#findbank ) ,but it don't works. It just did nothing. Is there any working banking support?
Which ones aren't working? The colours may just need to be updated.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
FindBank(Bank_VW);
I'm standing inside bank and this function does nothing.
I also tried OpenBankNPC; ,but it work a bit weird ,if I stand in front the banker script doesn't detect this banker but another 2 windows farther. I have no iea how to fix it.
It's nothing you're doing wrong, it just sounds like the colors need to be updated. I can't do it right now, but hopefully someone can before I'm back in a couple days.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
I use this function in my script (also located in bank.scar)
SCAR Code:{*******************************************************************************
function OpenBankFast(Location: String): Boolean;
By: Wizzup? and Nielsie95 updated by N1ke! updated again by marpis
Last update: 7th December 2009
Description: Opens the bank.
Valid arguments are:
'feb', 'falador east bank'
'fwb', 'falador west bank'
'veb', 'varrock east bank'
'vwb', 'varrock west bank'
'db' , 'draynor bank'
'akb', 'al-kharid bank'
'eb' (Edgeville Bank)
'ctb', 'catherby bank'
'clt', 'camelot bank'
'nab', 'north ardougne bank'
'sab', 'south ardougne bank'
'ynb', 'yanille bank'
'ngb', 'north gnome bank'
'sgb', 'south gnome bank'
'wgb', 'warrior guild bank'
'fgb', 'fishing guild bank'
*******************************************************************************}
And it still works as of today. (at least at varrock west bank)
I have also been having a few issues with banking routines. Thebanking functions tend to take a long time to find the bank. Findbanknpc works well except when you're standing just outside of the banks view and it still tries to move the mouse to the area. I also dislike how some of the banking Functions change the camera direction
Shouldn't you call setupsrl; first?
Also, make sure you drag the crosshair to the runescape window and call activateclient; to go there.
I'm not sure if it will help but try this:
Simba Code:program new;
{$I SRL/SRL.scar}
begin
setupsrl;
activateclient;
wait(2000);
OpenBankFast('vwb');
end.
What blabla7 said. You have to call SetupSRL otherwise nothing will work.![]()
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Thanks for help ,but it still not works. I tested today scripts in vwb: FindBank , OpenBankNPC ,OpenBankFast ,OpenBankQuiet and all of them don't do anything.
that lines was added ,Code:setupsrl; activateclient;
Runescape gfx settings was minimum , size fixed, brightness highest
client was activated by "x cross"
and i run simba like administrator
I have no idea why it doesn't work and I think i will make my own coordinate-based banking script ,but then i will have to resign all screen-rotating antibans :/
Try using SMART rather than just the browser.
SRL's F.A.Q. (Error fixes) | How to Convert SRL-5 Scripts to SRL-6 | Draynor Chop N' Bank (RS3)| AIO Superheater (RS3)
T - E - A - MTogether Everyone Achieves More
Run this please (regular client, not SMART):
And post output here: http://villavu.com/forum/showthread.php?t=67366Simba Code:program new;
{$i srl/srl.scar}
var x, y : integer;
begin
setupsrl;
activateclient;
GetClientDimensions(x, y);
writeln('Dimensions: '+inttostr(x)+', '+inttostr(y));
SetAngle(true);
if not FindSymbol(x, y, 'bank') then
writeln('Bank Symbol not found! Are you sure you stand in a bank?')
else writeln('Bank Symbol found!');
MakeCompass('N');
Writeln('OpenBankFast works?: '+booltostr(OpenBankFast('vwb')));
wait(500+random(500));
CloseBank;
wait(500+random(500));
Writeln('OpenBankGlass works?: '+booltostr(OpenBankGlass('vwb', true, true)));
wait(500+random(500));
CloseBank;
wait(500+random(500));
Writeln('OpenBankNPC works?: '+booltostr(OpenBankNPC));
wait(500+random(500));
CloseBank;
wait(500+random(500));
Writeln('FindBANK works?: '+booltostr(FindBank('vwb')));
wait(500+random(500));
CloseBank;
wait(500+random(500));
Writeln('FindBANK works?: '+booltostr(FindBank('vwb')));
wait(500+random(500));
CloseBank;
wait(500+random(500));
Writeln('OpenBankQuiet works?: '+booltostr(OpenBankQuiet('vwb')));
wait(500+random(500));
CloseBank;
TypeSendEx('Done!', false);
Writeln('Done testing. Please post above output!');
writeln('xxx Markus');
end.![]()
I made a new script, check it out!.
There are currently 1 users browsing this thread. (0 members and 1 guests)