Hi. I want to write fishing bot. I have a problem with getting offset of bobber. I read this forum a lot of time and found something like
andCode:public bool Bobbing { get { return (Memory.ReadShort(baseAddress + (uint)WoWGameObjectOffsets.WoWGameObject_Bobbing) == 1); } }
How to find baseAddress, (in 2-nd code Bobber)???Code:bool Bobbing { get {return ( ObjectManager.wow.ReadShort(Bobber + 0xBC) == 1) ? true : false; } }
Sorry for my bad English)))