Click To Move (Help!)
I hate to start a new Thread but I can not get CTM to work. I have looked over many threads and this is what I have.
The 1st thread I found was http://www.mmowned.com/forums/world-...g-writing.html.
The code given for CTM is this,
Code:
wow.WriteFloat(0x00CB9814, x here); // x pos from prompt
wow.WriteFloat(0x00CB9818, y here); // y pos from prompt
wow.WriteInt(0x00CB97A4, 4);//makes character walk
I know for a fact that the offsets are out of date. I found this out when the code did not work the 1st time. So I went looking for update.
I found this thread http://www.mmowned.com/forums/world-...mp-thread.html
It had a combination of different offsets codes for CTM.
Code:
005D75D0 CGPlayer_C__CTMAttackUnit
005D3E80 CGPlayer_C__CTMClickTerrain
005D3E10 CGPlayer_C__CTMFace
005D3EE0 CGPlayer_C__CTM
005CFB70 CGPlayer_C__ClickToMove
005BE3B0 ClickToMove__CanUseAction
005C3C30 ClickToMove__GetInteractDistanceOfAction
005BE3A0 GetClickToMoveState
005BE430 GetClickToMoveStruct
By: Apoc
and
Code:
00B9252C CTM_Type
00B92530 CTM_GUID
00B9259C CTM_Xpos
By: DrakeFish
My problem is that the 1st example does not give a lot of info on CTM. So I have no idea what the real name of x, y and move are. Unless I am missing the offset codes above. I have also looked over http://www.mmowned.com/forums/world-...explained.html
Code:
public enum ClickToMoveType
{
FaceTarget = 0x1,
Face = 0x2,
/// <summary>
/// Will throw a UI error. Have not figured out how to avoid it!
/// </summary>
Stop_ThrowsException = 0x3,
Move = 0x4,
NpcInteract = 0x5,
Loot = 0x6,
ObjInteract = 0x7,
FaceOther = 0x8,
Skin = 0x9,
AttackPosition = 0xA,
AttackGuid = 0xB,
ConstantFace = 0xC,
None = 0xD,
Attack = 0x10,
Idle = 0x13,
}
At this point I have no idea what is going on. The offset values do not even look anything like the other offset values.
So my question to you is am I looking at the right 3.3.3a offset codes for CTM and/or am I missing some offset codes? How can I use CTM like in example 1 at the top, but with up to date offset codes. I have spent days working on this and have made no progress.
System:
Windows 7
C# 2010
Thanks for all your help!