Results 1 to 6 of 6

Thread: FixBank Procedure...

  1. #1
    Join Date
    Aug 2007
    Location
    Where do you live?
    Posts
    934
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default FixBank Procedure...

    If you're bank is small and does not use more than the first "page" then the scroll bar doesn't show up... dunno if this is an update or if it's been like this for a while, but an easy fix is this:

    PHP Code:
    procedure FixBank;
    begin
      
    if BankScreen then
      begin
        
    if GetColor(489101) = 2830904 then exit; { <-- Added this }
        if 
    GetColor(489101) <> 1316634 then
        begin
          Mouse
    (485102710True);
          while 
    GetColor(489101) <> 1316634 do
            
    Wait(20);
          
    Wait(100 Random(200));
        
    end;
      
    end;
    end

  2. #2
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    Thanks! Toss in a begin..end nest and it'll be great.
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  3. #3
    Join Date
    Aug 2007
    Location
    Where do you live?
    Posts
    934
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    lol, didn't catch that at first

  4. #4
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Nava2 View Post
    Thanks! Toss in a begin..end nest and it'll be great.
    apparently you didnt seem to notice my fix in the public bugs?

  5. #5
    Join Date
    Aug 2007
    Location
    Where do you live?
    Posts
    934
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Sorry Xcan, didn't use the search button before posting this

  6. #6
    Join Date
    Oct 2006
    Location
    Ontario,Canada
    Posts
    1,718
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nava2: Ever going to add one of the fixes in the open svn?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •