hello im trying to learn about making bots and until now i got this code:
this is a guide i found here: http://www.ownedcore.com/forums/worl...g-writing.htmlCode:using System;using System.Collections.Generic; using System.Linq; using System.Text; using Magic; namespace Memory_Edit_Test { class Program { static void Main(string[] args) { BlackMagic wow = new BlackMagic(); //Create new function to open wow process wow.OpenProcessAndThread(SProcess.GetProcessFromWindowTitle("World of Warcraft")); //This Opens "World of Warcraft" window uint playerbase = wow.ReadUInt(wow.ReadUInt(wow.ReadUInt(0x00CF7C00) + 0x34) + 0x24); //this is the player base string playername = wow.ReadASCIIString(0x00C923F8, 12); //reads player name uint Level = wow.ReadUInt(wow.ReadUInt(playerbase + 0x8) + (0x35 * 4)); // Reads players level float playerx = wow.ReadFloat(playerbase + 0x798); // Read players xlocation float playery = wow.ReadFloat(playerbase + 0x79C); // Read players ylocation float playerz = wow.ReadFloat(playerbase + 0x7A0); // Read players zlocation Console.WriteLine("Player Name is: " + playername); //writes to console to tell player name Console.WriteLine("Player level is:" + Level); //writes to console to tell player level Console.WriteLine("Player X cord is:" + playerx); //writes to console to tell players x cordinate Console.WriteLine("Player Y cord is:" + playery); //writes to console to tell players y cordinate wow.WriteInt(0x00CB97A4, 4);//makes character walk } } }
its all written in C# but i have a problem the playerbase address is outdated can somebody please tell me the current one or tell me how i find this
thanks alot
victornor