Anyone knows how to retrieve the current game state. Not only IsInGame which is already solved, but I also need IsInCharSel, IsInLoginScreen, etc..?
Anyone knows how to retrieve the current game state. Not only IsInGame which is already solved, but I also need IsInCharSel, IsInLoginScreen, etc..?
I need help to update this offsets :
internal enum Arena : uint
{
Arena1GUID = 0xB36140,
Arena2GUID = Arena1GUID + 0x8,
Arena3GUID = Arena2GUID + 0x8,
Arena4GUID = Arena3GUID + 0x8,
Arena5GUID = Arena4GUID + 0x8
}
Open the previous version of WoW in IDA, go to 0xF36140, search via cross-references for a function name. Then open a new IDA instance with the latest WoW version, go to the function with the same name you've found in the other instance and follow the path you've found out the functionname - but in reversed order of course - and there you go: You'll have the addresses!
P.S. Needing help at something means that you need a guide and not that you get spoonfeeded. You should leave this section if you expected any offsets!
CGGameUI__Target: 009A4020 Rebased to ImageBase
-> CGameUI__Target = WoWBaseAddress + 5A4020
Special Thanks to dan934 and Frosttall
Getting combo points. targetSpecific is for Slice and Dice, etc
Code:PlayerComboPoint = 0xCC9FDD, PlayerComboPointTarget = 0xCCA040,Code:public uint GetComboPoints() { return GetComboPoints(true); } public uint GetComboPoints(Boolean targetSpecific) { ulong CPTarget = Connection.wow.ReadUInt64((uint)Connection.wow.MainModule.BaseAddress + (uint)Pointers.Player.PlayerComboPointTarget); if (targetSpecific && CPTarget != Connection.localPlayer.TargetGUID) return 0; return Connection.wow.ReadByte((uint)Connection.wow.MainModule.BaseAddress + (uint)Pointers.Player.PlayerComboPoint); }
Anyone got NameStore, NameMask, NameBase and NameString ?
EDIT: I'm quite sure that NameStore = 0xBF8508 + 0x8. What about the rest, did they change?
EDIT2: They did not, my code was wrong. Above offset is correct.
Last edited by jack445; 01-13-2013 at 12:04 PM.
enyone got LastTargetGUID and thanks in advance
Hi,
does someon have: PlayerBasePointer / PlayerBaseOffset1 / PlayerBaseOffset2?
Would be nice
Best regards