i already have a working pixel scanning fishing bot.
but now im gonna do this with mem-reading.
i get all infos about the object i wanna fish,without the right time i can loot it.
So is there any flag . that shows me fish has bitten ?
i already have a working pixel scanning fishing bot.
but now im gonna do this with mem-reading.
i get all infos about the object i wanna fish,without the right time i can loot it.
So is there any flag . that shows me fish has bitten ?
Returns 1 if the bobber is bobbing, else 0.Code:wow.ReadShort(bobberObject + 0xBC);
EDIT: fixd.
Last edited by Cheatz0; 09-07-2009 at 01:29 PM.
thanks for your answer 100% bites just better than that 80-90% pixel bot![]()
Are just interacting with Bobber's guid then?
Viano
workflow:
using invoke SendMessage,hWndWoW, WM_KEYDOWN, VK_1, 0 to throw it
invoke FindLastObject
invoke FindFirstObject
go trought the objects and compare eObjType with 5.
if so
read out description
compare DISPLAYID with 029Ch aka bobber
if so compare
OBJECT_FIELD_CREATED_BY with myGuid
if so ITS MY BOBBER
entering a lil ReadProcessMemory loop
OBJ_BASE+OBCh
cmp the byte with 1 (lootable)
writing my Object guid to targetguid
using interact with object-Key to loot
i dont need to move the mouse.
while i am typing this here it also runs in the background.
writing my Object guid to targetguid
using interact with object-Key to loot
Will do this - no need to move mouse
mov eax,CurrenteGameObjAddress
lea eax,[eax].sGameObject.l_GUID
invoke WriteProcessMemory, hProcess, 01127770h, eax, 4, 0
mov eax,CurrenteGameObjAddress
lea eax,[eax].sGameObject.h_GUID
invoke WriteProcessMemory, hProcess, 01127774h, eax, 4, 0
invoke SendMessage,hWndWoW, WM_KEYDOWN, VK_L, 0;using "L"-Key to interact with object
invoke Sleep, 50
invoke SendMessage,hWndWoW, WM_KEYUP, VK_L, 0
Last edited by ninar1; 09-07-2009 at 04:38 PM.
just thinking about the temporary lure enchant
should i go through my buffs
spell=43699
or use GetWeaponEnchantInfo();
the easyest way would be just send keypress every 601 sec ,wait till enchant then go on fishing.
but i want to stop and continue the bot.
so i think GetWeaponEnchantInfo will do this