Since they have added the Deposit Pouch button, DepositAll is no longer working, when DepositAll is called, it clicks on the money pouch button
Edit: http://villavu.com/forum/showpost.ph...85&postcount=8 for the fix

Since they have added the Deposit Pouch button, DepositAll is no longer working, when DepositAll is called, it clicks on the money pouch button
Edit: http://villavu.com/forum/showpost.ph...85&postcount=8 for the fix
Last edited by Justin; 01-04-2012 at 04:46 PM.
Deposit All coords just need to be updated.
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
Nice hate the pouch sometimes :/
I'm not a lesser Being imma Lesser demon
http://i.imgur.com/faGr0.png << First Script With Paint. Good First proggy? exp 21k/hr is ok pretty buggy
In Bank.scar, on line 454, I just changed the first coord to 370 - 50 * ..... instead of 390 or whatever it was.
Working fine.
I'm back

wheres bank.scar?

You can replace your DepositAll function with this and it will work:
Simba Code:function DepositAll: Boolean;
var
T, X, Y: Integer;
BScreen, DScreen: Boolean;
begin
Result := false;
BScreen := BankScreen;
if (not(BScreen)) then
DScreen := DepositScreen;
if (BScreen) or (DScreen) then
if (InvCount > 0) or (FindColor(X, Y, srl_outline_black, 98, 68, 436, 257) and (DSCreen)) then
begin
Mouse(360 - 50 * Integer(DScreen), 305 - 30 * Integer(DScreen), 15, 10, True);
Wait(200 + Random(300));
T := GetSystemTime;
while (InvCount > 0) or (FindColor(X, Y, srl_outline_black, 98, 68, 436, 257) and (DSCreen)) and (GetSystemTime - T < 2000) do
Wait(100);
Result := (InvEmpty) or (not(FindColor(X, Y, srl_outline_black, 98, 68, 436, 257)) and (DScreen));
end else begin
srl_Warn('DepositAll', 'No items to deposit ', warn_AllVersions);
result := true;
end;
end;
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
done it![]()

Thank you Kyle Undefined.
what program are you opening your scar files?I'm opening with free file viewer.and i cannot replace line 454.plz help!

I updated everything possible (simba, SRL, SPS, extension, MSI), but it's still clicking the deposit money pouch. can someone help me?
if i use the DepositAll function in my script and i have already changed the DepositAll function with the right coords, Do everyone who use my script have to do the same?

please, someone help me with this. I can't get it working, it's still clicking the deposit money pouch icon. I'm working on a new script to become member at last. Thank you!
Update to SRL5.
Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
{ MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }
When posting a bug, please post debug! Help us, help you!
I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.
SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.
There are currently 1 users browsing this thread. (0 members and 1 guests)