MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides

Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned
Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > World of Warcraft > Bots and Programs > WoW Memory Editing
Reload this Page WoW Current Statics and Offsets
WoW Memory Editing WoW Memory Editing for learning purposes only.

Reply
 
LinkBack Thread Tools
Re: WoW Current Statics and Offsets
(#46)
Old
tttommeke is Offline
Banned
Rep Power: 0
Reputation: 1
tttommeke is a name known to all
 
Posts: 633
Join Date: Jul 2007
Re: WoW Current Statics and Offsets - 11-28-2007

Quote:
Originally Posted by Chazwazza View Post
Actually, finding your coordinates is one of the easier aspects, a decent navigation system though is hard to write from scratch. (I'm not talking about a waypoint system I'm talking about something more like LavNav, a dynamic nav system that uses a mesh rather than waypoints). Object avoidance is a PITA too.

Also, without injection it's hard to reliably interact with the client and manage your inventory, interact with NPCs, cast spells, watch for important events using WoW's event system, etc.



A quick way to fix targetting would be to enumerate the mob struct, find a suitable target (by searching for which mob has the closest coords) then setting your 'Target' offset in the player struct to the GUID of the mob you want to target in the mob struct. That should work.
it would only work when you have targetted another mob, when you change it it wouldn't port your targetscreen to him, you need to let WoW update it (so change your targetscreen).

Last edited by tttommeke; 11-28-2007 at 04:20 PM.
Reply With Quote

Donate to remove ads.
Re: WoW Current Statics and Offsets
(#47)
Old
hypnodok is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 0
Reputation: 1
hypnodok is an unknown quantity at this point
 
Posts: 2
Join Date: Nov 2007
Re: WoW Current Statics and Offsets - 11-29-2007

Say Ive got the following C# Code to read the memory based on offsets, why does it return 0000 (should be maximum health) , what am I doing wrong?
Reading static offsets works just fine, my memory reading class is not the problem.

Code:
        private void button1_Click(object sender, EventArgs e)
        {
            Process[] m_p = Process.GetProcessesByName("WoW");
            if (m_p[0] != null)
            {
                ProcessMemoryReader pmr = new ProcessMemoryReader();
                
                pmr.ReadProcess = m_p[0];
                pmr.OpenProcess();
                long offset = 0xA560;
                richTextBox1.AppendText("Base adress: "+pmr.ReadProcess.MainModule.BaseAddress.ToInt64().ToString("x")+"n");
                richTextBox1.AppendText("Offset :" + offset.ToString("x") + "n");
                
                long id = pmr.ReadProcess.MainModule.BaseAddress.ToInt64() + offset;
                richTextBox1.AppendText("Offset+Base: " + id.ToString("x")+"n");
                int readb;
                byte[] bytes = pmr.ReadProcessMemory((IntPtr)id, 4,out readb);
                string str = "";
                foreach (byte b in bytes)
                    str += b;
                richTextBox1.AppendText("Bytes read: "+readb.ToString("x")+"nData read:    "+str+"n");
                richTextBox1.ScrollToCaret();
                pmr.CloseHandle();   
            }
        }
Reply With Quote
Re: WoW Current Statics and Offsets
(#48)
Old
localhostage is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
localhostage is an unknown quantity at this point
 
Posts: 14
Join Date: Aug 2007
Re: WoW Current Statics and Offsets - 11-30-2007

Could anyone find the target X,Y,Z,health,mana etc.. offsets? If not could someone point me in the direction so I can find them and share?

This would be crucial information when writing a bot.

Thanks!


p.s. I'm not great with memory offsets but I'm one hell of a coder
Reply With Quote
Re: WoW Current Statics and Offsets
(#49)
Old
tttommeke is Offline
Banned
Rep Power: 0
Reputation: 1
tttommeke is a name known to all
 
Posts: 633
Join Date: Jul 2007
Re: WoW Current Statics and Offsets - 11-30-2007

Scan scan scan for them...
Reply With Quote
Re: WoW Current Statics and Offsets
(#50)
Old
dragospt is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
dragospt is an unknown quantity at this point
 
Posts: 10
Join Date: Jun 2007
Re: WoW Current Statics and Offsets - 12-01-2007

i am getting: pmr.ReadProcess.MainModule.BaseAddress = 'pmr.ReadProcess.MainModule' threw an exception of type 'System.ComponentModel.Win32Exception' - Access is denied

any idea what's wrong?
Reply With Quote
Re: WoW Current Statics and Offsets
(#51)
Old
tttommeke is Offline
Banned
Rep Power: 0
Reputation: 1
tttommeke is a name known to all
 
Posts: 633
Join Date: Jul 2007
Re: WoW Current Statics and Offsets - 12-01-2007

Your program isn't allowed to read in memory ?
Reply With Quote
Re: WoW Current Statics and Offsets
(#52)
Old
dragospt is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
dragospt is an unknown quantity at this point
 
Posts: 10
Join Date: Jun 2007
Re: WoW Current Statics and Offsets - 12-01-2007

I also tried something like this, but always gett 0 results.. I'm using visual studio 2008

Code:
            uint bytes = Convert.ToUInt32(tx_bytes.Text.Trim(),10);
            int address = Convert.ToInt32(tx_address.Text.Trim(), 16);
            String processName = tx_process.Text.Trim();

            ProcessMemoryReader pReader = new ProcessMemoryReader();

            System.Diagnostics.Process[] myProcesses = System.Diagnostics.Process.GetProcessesByName(processName);

            if (myProcesses.Length == 0)
            {
                MessageBox.Show("Process " + processName + " found!");
                return;
            }
            pReader.ReadProcess = myProcesses[0];

            // open process in read memory mode
            pReader.OpenProcess();

            byte[] memory;
            int bytesReaded;

            memory     = pReader.ReadProcessMemory((IntPtr)address, bytes, out bytesReaded);
            int value  = memory[0];
            tx_value.Text = value.ToString();

Last edited by dragospt; 12-01-2007 at 12:31 PM. Reason: code change
Reply With Quote
Re: WoW Current Statics and Offsets
(#53)
Old
dragospt is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
dragospt is an unknown quantity at this point
 
Posts: 10
Join Date: Jun 2007
Re: WoW Current Statics and Offsets - 12-01-2007

@tttommeke: I tried using hypnodok code for winmine (minesweepr windows game) and i didnt got any error, but when swishing to WoW, denied appeared. i don't understand why..

Is getting very frustrating, because i want to work on a bot and fail read data from memory
Reply With Quote
Re: WoW Current Statics and Offsets
(#54)
Old
hypnodok is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 0
Reputation: 1
hypnodok is an unknown quantity at this point
 
Posts: 2
Join Date: Nov 2007
Re: WoW Current Statics and Offsets - 12-02-2007

You really should not use my code because I have absolutely no clue what Im doing.
It works fine for reading static pointers but the way I calculate offsets is probably just straight up rubbish.
If anyone could point me and the others in this thread to the right direction I would very much appreciate it.
Reply With Quote
(#55)
Old
localhostage is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
localhostage is an unknown quantity at this point
 
Posts: 14
Join Date: Aug 2007
12-08-2007

i found Dynamic Z using TSearch @ A698BF0, next found dynamic health @ A69A548.

so i located base address by doing dynamic z - 0xBF0 which yields A698000 but to get to the dynamic health offset it wasn't 0xA548 it was 0x2548. has this changed or am i doing some wrong math here?
Reply With Quote
(#56)
Old
tttommeke is Offline
Banned
Rep Power: 0
Reputation: 1
tttommeke is a name known to all
 
Posts: 633
Join Date: Jul 2007
12-08-2007

It could be changed, not tested myself.
Reply With Quote
(#57)
Old
localhostage is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
localhostage is an unknown quantity at this point
 
Posts: 14
Join Date: Aug 2007
12-08-2007

Just tested on 2 clients, looks like health, mana and the other offsets beginging with A have changed into 2.

Also found 0x3268 which is Experience.

Still on the hunt for target base offset, target level, target health, etc..
Reply With Quote
(#58)
Old
tttommeke is Offline
Banned
Rep Power: 0
Reputation: 1
tttommeke is a name known to all
 
Posts: 633
Join Date: Jul 2007
12-08-2007

Target base, from target base -0x8 + 0x{HPOffset}, you can't find trough the player his target hp, you need to do it from the mob itself.
Reply With Quote
(#59)
Old
Froogle's Avatar
Froogle is Online
Not Alive

Rep Power: 5
Reputation: 506
Froogle is a glorious beacon of lightFroogle is a glorious beacon of lightFroogle is a glorious beacon of lightFroogle is a glorious beacon of lightFroogle is a glorious beacon of lightFroogle is a glorious beacon of light
 
Posts: 696
Join Date: Jan 2007
Location: On the sea!
12-08-2007

Quote:
Originally Posted by localhostage View Post
i found Dynamic Z using TSearch @ A698BF0, next found dynamic health @ A69A548.

so i located base address by doing dynamic z - 0xBF0 which yields A698000 but to get to the dynamic health offset it wasn't 0xA548 it was 0x2548. has this changed or am i doing some wrong math here?
I think you failed to see how offsets work, it is the offset added to the base address, not the last 4 or 3 digits.

A698000+0xA548=
A6A2548 <--- you must have been mistaken, offsets are added to the base address. (woops did some bad math earlier :0 fixed)


Wow sucks

Last edited by Froogle; 12-10-2007 at 06:05 PM.
Reply With Quote
(#60)
Old
localhostage is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 2
Reputation: 1
localhostage is an unknown quantity at this point
 
Posts: 14
Join Date: Aug 2007
12-10-2007

Quote:
Originally Posted by Froogle View Post
I think you failed to see how offsets work, it is the offset added to the base address, not the last 4 or 3 digits.

A698000+0xA548=
A692548 <--- you must have been mistaken, offsets are added to the base address.
Hey Froogle, thanks for the reply! I see my error now and what I did was just one of those coding.. gotchas!

I was doing 0xA698000 + 0xA548 which came out totally wrong.

Just want to note to anyone else who ran into this issue that 0xA698000 is not the same as A698000. lol, thanks!
Reply With Quote
Reply


Donate to remove ads.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On




Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318