sjesper Posted March 9, 2012 Share Posted March 9, 2012 And before you ask, yes i have the latest version. The WithDraw function goes really slow. It takes about 5 seconds to just find the bankslot. The GetItemBounds Doesn't work for me. It just click find some places. The SetGameTab doesn't either work. It just doesn't detect that it needs to switch gametab. Am i the only one with this problems ? Quote Link to comment Share on other sites More sharing options...
Wanted Posted March 9, 2012 Share Posted March 9, 2012 [sCAR]program New; {$DEFINE RS2} {$DEFINE OSI_Color_Anti_Randoms} //{$DEFINE SMART} // Comment out to disable SMART {$I OSI\OSI.scar} {$I OSI\Divi\Misc\Debug.scar} procedure ScriptTerminate; begin FreeOSI; end; begin SetUpOSI; Withdraw(20, 0, False); end.[/sCAR] Worked really fast [sCAR]program New; {$DEFINE RS2} {$DEFINE OSI_Color_Anti_Randoms} //{$DEFINE SMART} // Comment out to disable SMART {$I OSI\OSI.scar} {$I OSI\Divi\Misc\Debug.scar} procedure ScriptTerminate; begin FreeOSI; end; var I: Integer; begin SetUpOSI; for I := 0 to 15 do SetGameTab(I); end.[/sCAR] Worked flawless [sCAR]program New; {$DEFINE RS2} {$DEFINE OSI_Color_Anti_Randoms} //{$DEFINE SMART} // Comment out to disable SMART {$I OSI\OSI.scar} {$I OSI\Divi\Misc\Debug.scar} procedure ScriptTerminate; begin FreeOSI; end; var TBA: TBoxArray; I: Integer; begin SetUpOSI; SetLength(TBA, 28); for I := 0 to 27 do TBA := GetItemBounds(I); DebugTBA(TBA); end.[/sCAR] You're doing something wrong, maybe your graphic settings are way off. Fixed size, safe mode, brightest settings etc Quote Link to comment Share on other sites More sharing options...
shadowrecon Posted March 9, 2012 Share Posted March 9, 2012 (edited) Banking has been really slow for the last week or so. Depositing, and closing the bank takes alot time is what i mean. I ended up removing all of my waits in my function to make it some what normal. but its still slow with no waits. Edited March 9, 2012 by shadowrecon Quote Link to comment Share on other sites More sharing options...
sjesper Posted March 9, 2012 Author Share Posted March 9, 2012 Well i can open the tabs using this method: if GetCurrentTab <> Tab then begin TB := GetTabBounds(Tab); MouseBox(TB.X1, TB.Y1, TB.X2, TB.Y2, ClickLeft); end; Dont really know why the other method doesn't work for me . But i found out that i used Mouse() instead of MouseBox. Really stupid mistake But the banking have been slow for some times now. Quote Link to comment Share on other sites More sharing options...
Wanted Posted March 10, 2012 Share Posted March 10, 2012 Just out of curosity, what version of SCAR are you using? Quote Link to comment Share on other sites More sharing options...
shadowrecon Posted March 10, 2012 Share Posted March 10, 2012 im using 3.31, the problem seems in detecting the bank screen, because it opens the banker just as fast as always but takes a 10-20 sec to realize its at the bankscreen. Quote Link to comment Share on other sites More sharing options...
Wanted Posted March 10, 2012 Share Posted March 10, 2012 Try using 3.32 or 3.30 Quote Link to comment Share on other sites More sharing options...
shadowrecon Posted March 11, 2012 Share Posted March 11, 2012 Try using 3.32 or 3.30 I tried with 3.32 and it was just as slow. Havent tried with 3.30, but will sometime tonight. Quote Link to comment Share on other sites More sharing options...
Bixby Sayz Posted March 11, 2012 Share Posted March 11, 2012 Yeah the banking has been noticeably slower for the last week or two for me as well. Thought it was just me. Quote Link to comment Share on other sites More sharing options...