Signup Now
Results 1 to 5 of 5
  1. #1
    Free User
    Join Date
    Dec 2013
    Posts
    20
    Reputation
    10
    Rep Power
    0

    Open backpack problem

    If client minimalized bot doesnt open backpack properly. Using this action: Any solution???



    --Open BPs



    init start
    local mainbp = getlootingdestination('mainbp')
    local supplybp = getlootingdestination('supplybp')
    local lootbp = getlootingdestination('lootbp')
    local goldbp = getlootingdestination('goldbp')
    init end


    closewindows()
    openBackpacks(true, mainbp, supplybp, lootbp, goldbp)
    waitping()

  2. #2
    Free User
    Join Date
    Dec 2013
    Posts
    4
    Reputation
    11
    Rep Power
    0
    try using this. not sure if it will help though


    local lootbp = getlootingdestination('lootbp')
    local supplybp = getlootingdestination('supplybp')
    local goldbp = getlootingdestination('goldbp')

    wait(500,1000)
    while windowcount() < 4
    do
    closewindows()
    wait(500,1000)
    openitem($back.id, "back")
    wait(500,1000)
    openitem(supplybp, itemname($back.id), true)
    wait(500,1000)
    resizewindows()
    wait(500,1000)
    openitem(stackBp, itemname($back.id), true)
    wait(500,1000)
    resizewindows()
    wait(500,1000)
    openitem(goldBp, itemname($back.id), true)
    wait(500,1000)
    resizewindows()
    wait(500,1000)
    end

  3. #3
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,202
    Reputation
    141
    Rep Power
    10
    This is a known issue. You must focus on the client window before reopening backpacks. Try doing this:

    --Open BPs

    local mainbp = getlootingdestination('mainbp')
    local supplybp = getlootingdestination('supplybp')
    local lootbp = getlootingdestination('lootbp')
    local goldbp = getlootingdestination('goldbp')

    local wasminimized = $minimized

    restoreclient()
    closewindows()
    openBackpacks(true, mainbp, supplybp, lootbp, goldbp)
    waitping()

    if wasminimized then
    minimizeclient()
    end

  4. #4
    Free User
    Join Date
    Aug 2015
    Posts
    29
    Reputation
    10
    Rep Power
    0
    I have a problem with cavebot actions, the doll stands still and does nothing.

  5. #5
    Wind Tester
    Join Date
    Dec 2013
    Location
    Warsaw, Poland
    Posts
    2,579
    Reputation
    149
    Rep Power
    27

 

 

Posting Permissions

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