


svn updated bot svn/checkout updated if i try to start bot ore try to make a waypoint i get this error all time anyone can help me pls

Code: Select all
-- Check that an edit box in game doesn't have focus
if memoryReadUInt(getProc(), addresses.editBoxHasFocus_address) == 0 then
keyboardPress(settings.hotkeys.ESCAPE.key);
end
-- Check if edit box still has focus
if memoryReadUInt(getProc(), addresses.editBoxHasFocus_address) == 0 then
error("An edit box in game has focus. Please close it before restarting the bot.",0)
end
You said it was working. What did you do to make it 'fuck up' again?botje wrote:k, it makes no diffference im afraid
tested, still fails >.<
Botje
I think the next step is I need to know what exactly is the value of the editbox memory address. Maybe that can give me a clue on how to fix it.botje wrote:nope, seems random :/
Code: Select all
-- Check if edit box still has focus
if memoryReadUInt(getProc(), addresses.editBoxHasFocus_address) == 0 then
error("An edit box in game has focus. Please close it before restarting the bot.",0)
end
Code: Select all
-- Check if edit box still has focus
if memoryReadUInt(getProc(), addresses.editBoxHasFocus_address) == 0 then
print("editBoxHasFocus_address value =",memoryReadUInt(getProc(), addresses.editBoxHasFocus_address) or "nil")
error("An edit box in game has focus. Please close it before restarting the bot.",0)
end
Users browsing this forum: No registered users and 5 guests