how can i create waypoints in C# for a bot? i want a simple way and im using blackmagic dll if its important to know and i get the position of XYZ with :
Code:
float playerx = WoW.ReadFloat(Pbase + 0x798); // Read players xlocation
float playery = WoW.ReadFloat(Pbase + 0x79C); // Read players ylocation
float playerz = WoW.ReadFloat(Pbase + 0x7A0); // Read players zlocation
xlabel.Text = "Player X position: " + playerx; // Sets players xlocation label
ylabel.Text = "Player Y position: " + playery; // Sets players ylocation label
zlabel.Text = "Player Z position: " + playerz; // Sets players zlocation label
and this for moving
Code:
WoW.WriteFloat(0xB9259C, playery + 10); // Add 10 feet onto current x pos
WoW.WriteFloat(0xB925A0, playery + 10); // Add 10 feet onto current y pos
WoW.WriteInt(0xB9252C, 4); // Set Click to move state 4=Walk
i dont want here some answers that here is not my section and btw i searched alots of times didnt find something usefull 