@
Inventory count gets negative.
Scenario:
Was changing settings while I have 68 Slots, I counted from Potions, Rods & Beers a total of 18 Slots. So I used the 18 slots as "reserved slots" thus making it 50/50 (68-18).
I restarted the bot, didnt changed any value and hit F4.
Bot detects inventory is full.
Opened inventory, then scrolled down until it sees the "unopened slots" (those slots with white squares in middle denoting its closed).
Closes inventory, then detecting "undefined" and trying to use the rod and continue fishing.
Then bot updates the counter into what the image shown above.
My attempt was hoping it will detect that the inventory was full and do the drying process then resumes the fishing.
Edit:
Im very sure this is not the bot's issue but mine as Im very sure it has to do with my inventory settings & reservation of slots which I am not familiar with.
So, any tip? Has total of 68 slots (with value pack).
Then currently has 17 extra items in inventory including 8 rods, beer, pet food, dried fish, key, relic & lamp oil.
How much reserved slots will I put, 17 or 20 to make sure?
@
BUG REPORT
Version: 14
Status: Drying Fish
Scenario: Bot tries to Dry fish while player is equipped with fishing rod.
Possible solution: Allow the bot to do 2 checks, if check returns true on both check it will process the fish.
Example idea:
Code:
If IsEquippedRod = True And IsInventoryFull = True Then
UnEquipRod()
sleep(3000)
DryFish()
else
StopFishing()
End If