Signup Now
Results 1 to 3 of 3
  1. #1
    Free User jakub's Avatar
    Join Date
    Dec 2013
    Location
    Poland
    Posts
    132
    Reputation
    32
    Rep Power
    21

    Unhappy List of bugs

    1) Action which is being executed doesnt stop if you disable cavebot. Its very annoying when you for example make infinite loop.

    2) bot crashed after trying to execute this:
    Code:
    while windowcount() ~= 2 do
    reopenwindows('small')
    end
    
    3) found out it should be like this:
    Code:
    while windowcount() ~= 2 do
    reopenwindows('small')
        while $openingbps do
            wait(300, 500)
        end
    wait(300, 500)
    end
    but it reopens them few times, so its also a bug
    4)
    Code:
    openitem('bag,'bag')
    does not work
    5) I cannot set the bot to loot first and then atk (after succesfully looting)
    Last edited by jakub; 12-22-2013 at 01:25 PM.

  2. #2
    Administrator Lucas Terra's Avatar
    Join Date
    Dec 2013
    Location
    Brazil
    Posts
    2,202
    Reputation
    141
    Rep Power
    10
    Quote Originally Posted by jakub View Post
    1) Action which is being executed doesnt stop if you disable cavebot. Its very annoying when you for example make infinite loop.

    2) bot crashed after trying to execute this:
    Code:
    while windowcount() ~= 2 do
    reopenwindows('small')
    end
    
    3) found out it should be like this:
    Code:
    while windowcount() ~= 2 do
    reopenwindows('small')
        while $openingbps do
            wait(300, 500)
        end
    wait(300, 500)
    end
    but it reopens them few times, so its also a bug
    4)
    Code:
    openitem('bag,'bag')
    does not work
    5) I cannot set the bot to loot first and then atk (after succesfully looting)
    You must be very careful with loops. You make an infinite loop, the bot crashes. I will try to implement some kind of protection over infinite loops.

    3) Try to make it open manually:
    while windowcount() < 2 do
    closewindows()
    openitem($back.id, 'back') wait(1000, 2000)
    resizewindows()
    openitem('brown bag', '0', true) wait(1000, 2000)
    resizewindows()
    end


    4) It should be 'brown bag'.

    5) This will work on the next release.

  3. #3
    Free User jakub's Avatar
    Join Date
    Dec 2013
    Location
    Poland
    Posts
    132
    Reputation
    32
    Rep Power
    21
    thank you

 

 

Posting Permissions

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