Get Player Base NO TLS + Delphi code [2.3.3] menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    robotkid's Avatar Contributor
    Reputation
    83
    Join Date
    Nov 2007
    Posts
    117
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Get Player Base NO TLS + Delphi code [2.3.3]

    Hello everyone :wave:


    This is a simple way to get to the player's base (to read the stracture)
    without using TLS method or anything..there is a static pointer which
    gives us the base

    Just read this address with CE -> 0E60BB8...


    Adding 2508h will get you to the player's GUID
    Adding C13h you'll have the fly hack address (128 off/130 on)
    Adding 3890h will get you to the hunter type tracking address (possible values
    are here http://www.mmowned.com/forums/wow-me...ess-2-3-a.html)

    There is delphi code for a small program that enumerates ALL wow processes
    and lists their PID along with the base, fly hack, GUID addresses

    EDIT:
    Uploaded the attachment again cause PCex.pas unit was missing.
    Also i've added a CE file to load those hacks and more from the
    player's stracture as raindog has posted.


    Have fun
    jOHNIDIs [c]
    Attached Files Attached Files
    Last edited by robotkid; 01-30-2008 at 05:34 PM.

    Get Player Base NO TLS + Delphi code [2.3.3]
  2. #2
    Whalemarte's Avatar Member
    Reputation
    6
    Join Date
    Aug 2007
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Doesn't that static address change with each major revision though? The whole strength of TLS is that you only need to update one offset to get to the WoWModuleOffset

  3. #3
    robotkid's Avatar Contributor
    Reputation
    83
    Join Date
    Nov 2007
    Posts
    117
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes it changes but i offer an alternative quick easy way for it for this version
    In next revs it would worth to take a look at nearby addresses..it could be
    somewhere near..

  4. #4
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    not bad +rep


  5. #5
    robotkid's Avatar Contributor
    Reputation
    83
    Join Date
    Nov 2007
    Posts
    117
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suicidity View Post
    not bad +rep
    Thx dude

  6. #6
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Really cool, how did you find that Adress?
    +rep btw :-)

  7. #7
    robotkid's Avatar Contributor
    Reputation
    83
    Join Date
    Nov 2007
    Posts
    117
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xarg0 View Post
    Really cool, how did you find that Adress?
    +rep btw :-)
    Well i had found a similar address for 2.3.0 myself and was quite sure there
    was one for this one too..i wasn't into finding this address alone again since
    TLS existed..Then i unpacked the latest WEH to examine its code and
    among other things i discovered that it uses this static address..
    (btw this is my thread with unpacked WEH read to examine with a debugger
    http://www.mmowned.com/forums/wow-me...-unpacked.html)

    Im pretty sure this address should stick around this offset if wow.exe won't
    dramatically change.

    If the same stracture and logic will be used in future revs then the logic to
    find this is quite simple..

    First you find the GUID which is the first value of the player's stracture,
    then you substract 2508h (shouldn't change but if it will, it should be around
    there somewhere) At the moment you should be at the base..now open CE
    and search for this Address in hex That will lead you to the pointer
    which will hopefully be static

    A fast and easy way to find the GUID for those aren't familiar with these
    stractures you can find the MAX HP of the player and substract 70h.
    To do that, search for your max health, then gain/loose some stamina to
    change health value, search for new MAX HP rinse and repeat
    Last edited by robotkid; 01-30-2008 at 11:54 AM.

  8. #8
    radegast's Avatar Member
    Reputation
    5
    Join Date
    Jan 2008
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by robotkid View Post
    Hello everyone :wave:


    This is a simple way to get to the player's base (to read the stracture)
    without using TLS method or anything..there is a static pointer which
    gives us the base

    Just read this address with CE -> 0E60BB8...


    Adding 2508h will get you to the player's GUID
    Adding C13h you'll have the fly hack address (128 off/130 on)
    Adding 3890h will get you to the hunter type tracking address (possible values
    are here http://www.mmowned.com/forums/wow-me...ess-2-3-a.html)

    There is delphi code for a small program that enumerates ALL wow processes
    and lists their PID along with the base, fly hack, GUID addresses


    Have fun
    jOHNIDIs [c]
    nice work .. i have a question : PCex is a part of D7 or it is 3rd party code ?
    I use D6 Ent. and it's unable to compile .. if it's 3rd party, where can i get it ? i searched the web and nothing found ... thx for answer.

  9. #9
    robotkid's Avatar Contributor
    Reputation
    83
    Join Date
    Nov 2007
    Posts
    117
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by radegast View Post
    nice work .. i have a question : PCex is a part of D7 or it is 3rd party code ?
    I use D6 Ent. and it's unable to compile .. if it's 3rd party, where can i get it ? i searched the web and nothing found ... thx for answer.
    Dang you're right forgot to put that in the attachment
    I'll try to upload a working one :P

    EDIT:
    Done It should compile now

    P.S. Radegast? Isn't that a common Czech beer? :P
    But i assume you mean the god XD
    Last edited by robotkid; 01-30-2008 at 02:19 PM.

  10. #10
    Phygar's Avatar ( ͡° ͜ʖ ͡°)
    Reputation
    443
    Join Date
    Nov 2007
    Posts
    1,591
    Thanks G/R
    7/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So, I do this for flymode?

  11. #11
    radegast's Avatar Member
    Reputation
    5
    Join Date
    Jan 2008
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by robotkid View Post


    Dang you're right forgot to put that in the attachment
    I'll try to upload a working one :P

    EDIT:
    Done It should compile now

    P.S. Radegast? Isn't that a common Czech beer? :P
    But i assume you mean the god XD
    Thx for upgrade
    I tried to reply to your P.M. but as marked as n00b I couldn't ... so THX !!!
    And yes .. you're right, Radegast is a Czech beer (and old god too), but I prefer Pilsner

  12. #12
    robotkid's Avatar Contributor
    Reputation
    83
    Join Date
    Nov 2007
    Posts
    117
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bikeraman View Post
    So, I do this for flymode?
    Yes. That simple same applies for GUID
    You can save this as a file and you will never have to change
    anything again..at least for version 2.3.3

  13. #13
    =sinister='s Avatar Contributor
    Reputation
    154
    Join Date
    Jun 2006
    Posts
    277
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    robotkid, you are really my hero, your posts are easy to read and everything!

    --edit-- oh btw i get disconnected on fly hack =\
    Last edited by =sinister=; 01-30-2008 at 06:22 PM.

  14. #14
    robotkid's Avatar Contributor
    Reputation
    83
    Join Date
    Nov 2007
    Posts
    117
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by =sinister= View Post
    robotkid, you are really my hero, your posts are easy to read and everything!

    --edit-- oh btw i get disconnected on fly hack =
    Well the fly hack works on many servers but not for all..depends on the hack protection settings this server has :S

    Well i always try to be simple or at least understandable through my posts..
    You see when i started working with reverse engineering it was a pain in
    the arse you know Everybody think they are the super geek and post
    their mambo jumbo with their bad english and say at the bottom im not gonna
    feed you with the spoon or you should kill your self if you dont know how to
    do this :yuck: pfff

    Have fun

  15. #15
    Phygar's Avatar ( ͡° ͜ʖ ͡°)
    Reputation
    443
    Join Date
    Nov 2007
    Posts
    1,591
    Thanks G/R
    7/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, I just started to learn C#, and I wanted to know if anyone knew how to put memory actions into it, so if you pressed a button, or clicked a check box, it would turn on fly mode.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Code Release] C#, Out Of Process - Get Player Name
    By SwInY in forum WoW Memory Editing
    Replies: 4
    Last Post: 05-04-2011, 04:31 PM
  2. How to get the Player Base?
    By =sinister= in forum WoW Memory Editing
    Replies: 5
    Last Post: 03-31-2008, 02:21 AM
  3. Is there a way to get players to start with gold?
    By Wow Raiders in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 03-22-2008, 02:15 PM
  4. [Warlock] Get players killed by their own guards.
    By jacko666 in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 03-17-2008, 04:21 PM
  5. [Help] getting players
    By House.MD in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 02-16-2008, 09:36 AM
All times are GMT -5. The time now is 09:08 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search