PDA

View Full Version : [Update] SRL: Jan. 18th, 2012 ~ OpenBankChest & 'Sara Strike' Fix



Coh3n
01-19-2012, 04:16 AM
Cohen Adair (Coh3n) (9):
Documentation typo
Richard's GetMoneyPouchAmount fix (http://villavu.com/forum/showthread.php?t=71830)
Added WaitFuncEx by Dgby714 (http://villavu.com/forum/showthread.php?p=763015&postcount=9)
WithdrawEx no longer reclicks to withdraw X
Fixed AreTalking (caused Cap'n Arnav to fail, not sure about other randoms)
Fixed WithdrawEx (broke because of GetChooseOptions update)
Fixed login box (http://villavu.com/forum/showthread.php?p=896785#post896785)
Fakawi's InChat change
Fixed the 'Sara Strike' bug (http://villavu.com/forum/showthread.php?p=897761&postcount=26)

Khanh Nguyen (daazndagger) (1):
OpenBankChest added, see: http://villavu.com/forum/showthread.php?t=71395

Nathan Hartung (Narcle) (9):
Changed IsXPBarOpen for compatibility.
Updated GetXPBar to use 'xp' as a divider. (won't work until new fonts are upped)
Added SKILL_ALLCOMBAT & SKILL_EVERYSKILL to players.simba to work with new XP Counter setup (future release)
Fixed GetCombatLevel (granted your fonts are updated)
GetCombatLevel fixed (granted you have fonts updated)
Var removal
GetChooseOption fix (changed colors) villavu.com/forum/showthread.php?p=897222 should fix this bug
InvMouse changed to use MouseBox - http://villavu.com/forum/showthread.php?t=72469 Updated MouseBox code (just made it shorter, old method was still being used)
GetCombatLevel & GetXPBar update (we have the fonts)
Commits (https://github.com/SRL/SRL-5/commits/master).

Cheers,
The SRL Development Team

'Toxin
01-19-2012, 04:17 AM
OpenBankChest, wooooo. Thank you very much :D

Spartan 117
01-19-2012, 04:32 AM
OpenBankChest, wooooo. Thank you very much :D

Woot! I can't take credit for any work done however it was my suggestion!
Thanks Guys!

Yanhua
01-19-2012, 04:36 AM
Is this in the SRL updater already?

I click update and it says no SRL update available.

Kyle Undefined
01-19-2012, 04:37 AM
Usually takes an hour for it to show up. Might be in updater in 15-20 minutes though.

[XoL]
01-19-2012, 04:52 AM
Thanks for the updates everyone :)

Harry
01-19-2012, 04:55 AM
Awesome, hopefully that sara-strike bug was related to the one with spamclicking mainscreen.

tls
01-19-2012, 05:04 AM
Has Retaliating been fixed?

Coh3n
01-19-2012, 05:50 AM
Awesome, hopefully that sara-strike bug was related to the one with spamclicking mainscreen.That would be nice. :)

tls
01-19-2012, 05:56 AM
function IsRetaliating(aTrue: Boolean): Boolean;
var
C: Integer;
begin
C := GetColor(649, 380);
Result := not ((C = 2070783) xor aTrue);
end;

function Retaliate(SetTrue: Boolean): Boolean;
var
t: Integer;
begin
if not GameTab(tab_Combat) then
Exit;
if not IsRetaliating(SetTrue) then
begin
t := 0;
repeat
MouseBox(624, 385, 719, 396, mouse_left);
Wait(800 + Random(800));
if IsRetaliating(SetTrue) then
begin
Result := True;
Exit;
end;
Inc(t);
until (t > 5);
end else
Result := True;
end;

Here.

maigel
01-22-2012, 10:45 PM
Aw man, I just managed to get my castle wars banker working smooth after some days of messing around with it >.<.
Sweet update nonetheless!