Signup Now
Page 2 of 2 FirstFirst 12
Results 11 to 13 of 13

Thread: AutoOpenBP

  1. #11
    Free User
    Join Date
    Oct 2015
    Posts
    10
    Reputation
    10
    Rep Power
    0
    Omg, atm its working, i will test for few hours, but REALLY THANKS!!!

  2. #12
    Free User
    Join Date
    Apr 2018
    Posts
    13
    Reputation
    10
    Rep Power
    0
    There is a problem that I can't resolve:
    _If some bps are full, there will not be windows size left to open the others.

    for some reason the script doesn't resize the bg windows before opening the next one, and will end without space.

  3. #13
    Free User
    Join Date
    Sep 2014
    Posts
    43
    Reputation
    19
    Rep Power
    0
    There is resize command at main function
    PHP Code:
    function OthersBP(BpType)
        while 
    windowcount(BpType) == and windowcount(mainbp) == do
            
    pausewalking(2000)
            
    openitem(BpType,mainbp,true)
            
    wait(200,400)
            
    pausewalking(0)
            
    resizewindows()
        
    end
    end 
    so it should work fine,
    You can try to add
    waitping()
    after
    resizewindows()
    PHP Code:
    function OthersBP(BpType)
        while 
    windowcount(BpType) == and windowcount(mainbp) == do
            
    pausewalking(2000)
            
    openitem(BpType,mainbp,true)
            
    wait(200,400)
            
    pausewalking(0)
            
    resizewindows()
            
    waitping()
        
    end
    end 
    Last edited by aweroth; 04-27-2018 at 11:33 AM.

 

 

Posting Permissions

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