Hey Droidz,
for my framework, I set focus and mouseover units to make casting on off targets more easily possible.
Can you add the option to still write mouseover guid via wRobot API? I think ObjectManager.Me.FocusGuid Setter still works just fine.
Or is there at least a check like Usefuls.CanWriteToMemory?
Then MAYBE I can think of a workaround. But currently it breaks some of my stuff.
For Mouseover via ObjectManager.Me.MouseoverGuid, if you want:
private static void SetMouseoverGuid(ulong guid) { switch (Usefuls.WowVersion) { case 5875: Memory.WowMemory.Memory.WriteUInt64((uint)Memory.WowMemory.Memory.MainModuleAddress + 0x74E2C8, guid); break; case 8606: Memory.WowMemory.Memory.WriteUInt64((uint)Memory.WowMemory.Memory.MainModuleAddress + 0x86E950, guid); break; case 12340: Memory.WowMemory.Memory.WriteUInt64( 0x00BD07A0, guid); break; default: throw new Exception("Wow version is not supported!"); } }
Recommended Comments
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now