Network: WoW Gold | WoW Accounts | MPS Games | FPSowned
MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides
Homepage »      Register »      Hall of Fame »      Ranks And Awards »      Advertise »      Marketplace »
 
Sign up



Do you like this excellent information? Then Donate HERE to remove ads and support the MMOwned community.


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > World of Warcraft > Bots and Programs > WoW Memory Editing

WoW Memory Editing WoW Memory Editing for learning purposes only.
This section is more advanced than others on MMOwned Read the section specific rules, infractions will be given out if u break them!That is including the expectations! - If you don't meet them then don't post

Reply
 
LinkBack Thread Tools
  #1  
Old 07-22-2009
Kryso is offline.
Sergeant
  
 
Join Date: Jul 2009
Posts: 38
Reputation: 9
Points: 194, Level: 1
Points: 194, Level: 1 Points: 194, Level: 1 Points: 194, Level: 1
Level up: 49%, 206 Points needed
Level up: 49% Level up: 49% Level up: 49%
Activity: 0.7%
Activity: 0.7% Activity: 0.7% Activity: 0.7%

[C#, Idea] Direct access to object manager

So I was thinking.. why make local copy of all objects in object manager each x seconds when we can directly interate through them? Yes, saving local copy every x seconds and then work with it is probably in most cases faster, but I dont really need to loop through whole array that often so it makes big difference.

Code:
public class BaseObjectCollection : IEnumerable<BaseObject> {
    internal BaseObjectCollection( uint firstNodeAddress ) {
        this.firstNodeAddress = firstNodeAddress;
    }

    private uint firstNodeAddress;

    public BaseObject FindByGuid( ulong guid ) {
        foreach ( BaseObject obj in this )
            if ( obj.Guid == guid )
                return obj;

        return null;
    }

    #region IEnumerable
    public IEnumerator<BaseObject> GetEnumerator() {
        return new BaseObjectCollectionEnumerator( firstNodeAddress );
    }

    IEnumerator IEnumerable.GetEnumerator() {
        return new BaseObjectCollectionEnumerator( firstNodeAddress );
    }
    #endregion
}

public class BaseObjectCollectionEnumerator : MemoryManager, IEnumerator<BaseObject> {
    private const uint nextNodeOffset = 0x3c;
    private const uint guidOffset = 0x30;
    private const uint typeOffset = 0x14;

    internal BaseObjectCollectionEnumerator( uint firstNodeAddress ) {
        this.firstNodeAddress = firstNodeAddress;
    }

    private uint firstNodeAddress;
    private uint lastNodeAddress;
    private BaseObject current;

    #region IEnumerator
    public void Reset() {
        current = null;
        lastNodeAddress = firstNodeAddress;
    }

    public bool MoveNext() {
        uint pCurrent;
        if ( current == null )
            pCurrent = firstNodeAddress;
        else
            pCurrent = reader.ReadUInt( ( IntPtr )( lastNodeAddress + nextNodeOffset ) );

        if ( pCurrent == 0 || pCurrent % 2 != 0 )
            return false;

        lastNodeAddress = pCurrent;

        ulong guid = reader.ReadULong( ( IntPtr )( pCurrent + guidOffset ) );
        BaseObjectType type = ( BaseObjectType )reader.ReadUInt( ( IntPtr )( pCurrent + typeOffset ) );

        switch ( type ) {
            case BaseObjectType.Container:
                current = new BaseObject( pCurrent );
                break;

            case BaseObjectType.Corpse:
                current = new BaseObject( pCurrent );
                break;

            case BaseObjectType.DynamicObject:
                current = new BaseObject( pCurrent );
                break;

            case BaseObjectType.GameObject:
                current = new BaseObject( pCurrent );
                break;

            case BaseObjectType.Item:
                current = new BaseObject( pCurrent );
                break;

            case BaseObjectType.Player:
                current = new Player( pCurrent );
                break;

            case BaseObjectType.Unit:
                current = new Unit( pCurrent );
                break;

            default:
                throw new Exception( "Unknown object type " + type );
        }
        return true;
    }

    public BaseObject Current {
        get { return current; }
    }

    object IEnumerator.Current {
        get { return current; }
    }
    #endregion

    #region IDisposable
    public void Dispose() {
        current = null;
    }
    #endregion
}

public enum BaseObjectType {
    Item = 1,
    Container = 2,
    Unit = 3,
    Player = 4,
    GameObject = 5,
    DynamicObject = 6,
    Corpse = 7
}
My projects is just at begining, so I have only defined BaseObject, Unit and Player, but I think everyone who reads this section can write those objects on its own. Also class MemoryManager is just little helper that allows me to read with "reader.xxx" instead of "WowClient.Reader.xxx" cuz I dont want to make reader static nor keep reference in every class.

Is there something that I forgot, that makes this way of accessing objects bad?
Reply With Quote


Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.

  #2  
Old 07-22-2009
Bareno's Avatar
Bareno is offline.
Contributor
  
 
Join Date: Sep 2006
Posts: 318
Reputation: 126
Points: 2,229, Level: 4
Points: 2,229, Level: 4 Points: 2,229, Level: 4 Points: 2,229, Level: 4
Level up: 19%, 571 Points needed
Level up: 19% Level up: 19% Level up: 19%
Activity: 1.4%
Activity: 1.4% Activity: 1.4% Activity: 1.4%

So, for the technically challenged, what would that mean for others? What could we do with this that we couldn't do already? >_>
Reply With Quote
  #3  
Old 07-22-2009
MaiN is offline.
Contributor
  
 
Join Date: Sep 2006
Location: Jaedenar O.o
Posts: 567
Reputation: 162
Points: 3,264, Level: 5
Points: 3,264, Level: 5 Points: 3,264, Level: 5 Points: 3,264, Level: 5
Level up: 58%, 336 Points needed
Level up: 58% Level up: 58% Level up: 58%
Activity: 8.6%
Activity: 8.6% Activity: 8.6% Activity: 8.6%

Why would you do this?
Doesn't it complicate stuff alot?
Storing the objects in a dictionary or list is still direct access, all you do is find all the base addresses for the objects, and store those.
In all your properties you then just implement the memory reading using that base object that you already stored.
That means you will only read the memory when it's necessary, and the initial loop of getting the baseaddresses is really fast (my tests said 1 ms).
__________________
http://www.main-dev.com/

I was here. ~Dragon[Sky]
I was here too. ~Kuiren
Reply With Quote
  #4  
Old 07-22-2009
ggg898 is offline.
Corporal
  
 
Join Date: Jan 2009
Posts: 33
Reputation: 10
Points: 348, Level: 1
Points: 348, Level: 1 Points: 348, Level: 1 Points: 348, Level: 1
Level up: 87%, 52 Points needed
Level up: 87% Level up: 87% Level up: 87%
Activity: 1.1%
Activity: 1.1% Activity: 1.1% Activity: 1.1%

I dont understand, looks to me that you do exactly what you trying to avoid, youre creating your baseobject for every object in the manager you are iterating over.

Dont worry (too much) bout performance when creating copies of the objects in the manager. They arent that many, you dont need to do it too often, and youre not on a c64 counting rasterinterrupt sweeps and timing them with NOPs anymore... When you start having hundreds of thousands of objects then you can start worrying and start using object caches.
Reply With Quote
  #5  
Old 07-22-2009
Kryso is offline.
Sergeant
  
 
Join Date: Jul 2009
Posts: 38
Reputation: 9
Points: 194, Level: 1
Points: 194, Level: 1 Points: 194, Level: 1 Points: 194, Level: 1
Level up: 49%, 206 Points needed
Level up: 49% Level up: 49% Level up: 49%
Activity: 0.7%
Activity: 0.7% Activity: 0.7% Activity: 0.7%

Yes thats direct access for objects (that i'm using too), but not the actual list. With this method I should have almost* always the actual array.

The BaseObject is just wrapper like you said

Code:
public class BaseObject : MemoryManager {
    internal BaseObject( uint address ) {
        this.address = address;
    }

    private uint address;

    internal uint Address {
        get { return address; }
    }

    public Serial Guid {
        get { return new Serial( reader.ReadULong( ( IntPtr )( address + 0x30 ) ) ); }
    }

    internal uint Fields {
        get { return reader.ReadUInt( ( IntPtr )( address + 0x8 ) ); }
    }

    public BaseObjectType Type {
        get { return ( BaseObjectType )reader.ReadUInt( ( IntPtr )( address + 0x14 ) ); }
    }
}

* I'm not sure how exactly wowclient handles object lists, if nodes after object removal got somehow erased or something - that would break this a little bit cuz I would loose reference to next node.
Reply With Quote
  #6  
Old 07-22-2009
amadmonk's Avatar
amadmonk is offline.
Site Donator
  
 
Join Date: Apr 2008
Posts: 305
Reputation: 62
Points: 1,616, Level: 3
Points: 1,616, Level: 3 Points: 1,616, Level: 3 Points: 1,616, Level: 3
Level up: 31%, 484 Points needed
Level up: 31% Level up: 31% Level up: 31%
Activity: 1.9%
Activity: 1.9% Activity: 1.9% Activity: 1.9%

You're early optimizing.
__________________
Don't believe everything you think.
Reply With Quote
  #7  
Old 07-23-2009
furang's Avatar
furang is offline.
Master Sergeant
  
 
Join Date: Jul 2009
Posts: 84
Reputation: 19
Points: 315, Level: 1
Points: 315, Level: 1 Points: 315, Level: 1 Points: 315, Level: 1
Level up: 79%, 85 Points needed
Level up: 79% Level up: 79% Level up: 79%
Activity: 5.1%
Activity: 5.1% Activity: 5.1% Activity: 5.1%

Does anyone happen to know offsets from ObjectManager (i hope i find it correctly ) to LocalGUID, FirstObject and NextObject?
Have to say i've searched for it. And found 0xC0, 0xAC and 0x30. Are they right?
And offsets to objects's XYZ. I've found 0x7D0 0x7D4 0x7D8 but it seems to be 0x7D4 0x7D8 0x7DC as i look it in wow process.
Reply With Quote
  #8  
Old 07-23-2009
Nesox's Avatar
Nesox is offline.
MaiN's Biatch
Legendary User
  
 
Join Date: Mar 2007
Location: VirtualAllocEx
Posts: 1,115
Nominated 26 Times in 3 Posts
Nominated TOTM/W Award(s): 1
Reputation: 727
Points: 36,171, Level: 28
Points: 36,171, Level: 28 Points: 36,171, Level: 28 Points: 36,171, Level: 28
Level up: 95%, 129 Points needed
Level up: 95% Level up: 95% Level up: 95%
Activity: 14.1%
Activity: 14.1% Activity: 14.1% Activity: 14.1%

They are correct
__________________
omg ive started a blog nao! what's wrong with MEH!? -> [Only registered and activated users can see links. ]
Reply With Quote
  #9  
Old 07-23-2009
furang's Avatar
furang is offline.
Master Sergeant
  
 
Join Date: Jul 2009
Posts: 84
Reputation: 19
Points: 315, Level: 1
Points: 315, Level: 1 Points: 315, Level: 1 Points: 315, Level: 1
Level up: 79%, 85 Points needed
Level up: 79% Level up: 79% Level up: 79%
Activity: 5.1%
Activity: 5.1% Activity: 5.1% Activity: 5.1%

Ok. it's nice to hear that. I'm not surprised.
But i wonder why i've got GUIDs with 0 0 0 coords. Like this
Quote:
GUID: 4780000100DFDA92 Location: 0.000000 0.000000 0.000000
GUID: 4780000100DFDAC9 Location: 0.000000 0.000000 0.000000
GUID: 4780000102057C57 Location: 0.000000 0.000000 0.000000
GUID: 4780000102058C5A Location: 0.000000 0.000000 0.000000
GUID: 4780000102154AA2 Location: 0.000000 0.000000 0.000000
GUID: 07800000018B69B3 Location: 10438.055664 782.408997 1322.679932
GUID: 4780000102B98A79 Location: 0.000000 0.000000 0.000000
GUID: F110003040000059 Location: 0.000000 0.000000 0.000000
GUID: F11000303F0003B6 Location: 0.000000 0.000000 0.000000
GUID: F13000081D001722 Location: 10389.803711 763.477112 1319.954102
GUID: F130002F80000678 Location: 10394.998047 743.602966 1319.880127
GUID: F11000806F0000B2 Location: 0.000000 0.000000 0.000000
GUID: F11000080D0000B3 Location: 0.000000 0.000000 0.000000
GUID: F1300021870012D9 Location: 10407.167969 713.794189 1321.617065
GUID: F130000E0500067D Location: 10436.689453 794.837341 1322.701904
Or maybe they are some kind of abstract objects (i'm not a wow player so i don't know if something like this exists) or maybe it's because of wrong ObjectManager manager pointer?
Reply With Quote
  #10  
Old 07-23-2009
flo8464's Avatar
flo8464 is online.
Knight
  
 
Join Date: Apr 2009
Posts: 219
Reputation: 11
Points: 946, Level: 2
Points: 946, Level: 2 Points: 946, Level: 2 Points: 946, Level: 2
Level up: 10%, 454 Points needed
Level up: 10% Level up: 10% Level up: 10%
Activity: 16.0%
Activity: 16.0% Activity: 16.0% Activity: 16.0%

Guess the coords of your items.
Reply With Quote
  #11  
Old 07-23-2009
Sel3n's Avatar
Sel3n is offline.
Site Donator
  
 
Join Date: Jul 2009
Posts: 105
Reputation: 10
Points: 403, Level: 1
Points: 403, Level: 1 Points: 403, Level: 1 Points: 403, Level: 1
Level up: 1%, 497 Points needed
Level up: 1% Level up: 1% Level up: 1%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
Even if abstrac object exists, there are coordinates (no?), I think it's because of wrong ObjectManager manager pointer too.
Reply With Quote
  #12  
Old 07-23-2009
furang's Avatar
furang is offline.
Master Sergeant
  
 
Join Date: Jul 2009
Posts: 84
Reputation: 19
Points: 315, Level: 1
Points: 315, Level: 1 Points: 315, Level: 1 Points: 315, Level: 1
Level up: 79%, 85 Points needed
Level up: 79% Level up: 79% Level up: 79%
Activity: 5.1%
Activity: 5.1% Activity: 5.1% Activity: 5.1%

I've sold almost all i had, but the number of "zero coords" GUID didn't become less. (And imho it's reasonable that items have the same coords, that you have).
I'm using 0x2C as offset from ThreadBase to TLS, and 0x10 as offset from TLS to ObjectManager. Maybe they are wrong?
Reply With Quote
  #13  
Old 07-23-2009
Nesox's Avatar
Nesox is offline.
MaiN's Biatch
Legendary User
  
 
Join Date: Mar 2007
Location: VirtualAllocEx
Posts: 1,115
Nominated 26 Times in 3 Posts
Nominated TOTM/W Award(s): 1
Reputation: 727
Points: 36,171, Level: 28
Points: 36,171, Level: 28 Points: 36,171, Level: 28 Points: 36,171, Level: 28
Level up: 95%, 129 Points needed
Level up: 95% Level up: 95% Level up: 95%
Activity: 14.1%
Activity: 14.1% Activity: 14.1% Activity: 14.1%

Dont use that old method
__________________
omg ive started a blog nao! what's wrong with MEH!? -> [Only registered and activated users can see links. ]
Reply With Quote
  #14  
Old 07-23-2009
Apoc's Avatar
Apoc is offline.
MMOwned WebDev
Legendary User
  
 
Join Date: Jan 2008
Posts: 1,909
Nominated 5 Times in 1 Post
Reputation: 1029
Points: 22,671, Level: 21
Points: 22,671, Level: 21 Points: 22,671, Level: 21 Points: 22,671, Level: 21
Level up: 17%, 1,329 Points needed
Level up: 17% Level up: 17% Level up: 17%
Activity: 35.7%
Activity: 35.7% Activity: 35.7% Activity: 35.7%

Stop using s_curMgr and all that crap. Learn how to use EnumVisibleObjects. It's far faster than the crap you guys are doing. (And more controlled)

Certain objects won't have locations; as they're unnecessary. (See; items)
__________________
[Only registered and activated users can see links. ]
Reply With Quote
Reply

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



All times are GMT -4. The time now is 10:59 AM.




Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.1

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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493