Hello there!
I am trying to make a simple program in c# that reads the playername and level with black magic.
I have followed a guide I read, which means I did not write the code(just some changes). I can not figure out why it wont work. All help is appreciated
Code:BlackMagic wow = new BlackMagic(); wow.OpenProcessAndThread(SProcess.GetProcessFromProcessName("World of Warcraft"));//Getting procces from name Wow(Multilanguage) listBox1.Items.Add("Wow is hooked!");//Writes Hooked WOW IntPtr baseWoW = wow.MainModule.BaseAddress;//Gets Base Address listBox1.Items.Add("Gathering character information...");//Adds the information to the Listbox //Variables string playername = wow.ReadASCIIString((uint)baseWoW + 0x8B3FB0, 256);//Player Name //Writes listBox1.Items.Add("Player Name: " + playername);