Offset Finding menu

Shout-Out

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 44
  1. #1
    RivaLfr's Avatar Contributor CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Sep 2010
    Posts
    258
    Thanks G/R
    2/25
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)

    Offset Finder

    Offset Finder






    Description

    This software can automatically find the offsets in the program with FindPattern.
    This software extracts the offset format AutoIt, C # and INI, and the ''dump button'' for all information on every offset and its current value...
    This software is compatible with World of Warcraft and any other programs that exist (aion, ...).


    Use

    Download and install FrameWork 3.5 : .NET Framework 3.5
    Virus scan: VirusTotal - Free Online Virus, Malware and URL Scanner

    Download Offset Finder : http://www.multiupload.nl/T0AJN5OF5X

    Add or Edit the pattern list

    Go to the dir ‘’PatternList’’, in the rar i have integret ‘’ Wow Offset.xml’’. Open this with Notepad++ for sample.


    Code:
    <?xml version="1.0"?>
    <PatternList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    
    <processName>Wow</processName> <!-- Name of .exe -->
    <baseModuleName>Wow.exe</baseModuleName> <!-- Module name (empty if no module) -->
    
        <Patterns> <!-- Start list Pattern -->
        
            <Pattern> <!-- Start Pattern 1 -->
                <offsetName>playerBase</offsetName> <!-- Offset Name -->
                <pattern>8B 0D FF FF FF FF 83 C4 04 3B CB 74 34 39 99 FF</pattern> <!-- Bytes search (Max 16) -->
                <mask>xx????xxxxxxxxx?</mask> <!-- Mask of bytes search: x = equal | ? = Any value -->
                <offsetLocation>2</offsetLocation> <!-- Bytes between the beginning of pattern (pattern base) and offset was found (sample -4 ou 7)-->
                <type>int</type> <!-- Type of the offset value: int ou int64 ou string ou float -->
            </Pattern> <!-- End Pattern 1 -->
            
            <Pattern> <!-- Start Pattern 2 -->
                <offsetName>targetGuid</offsetName>
                <pattern>8B 45 08 8B 35 FF FF FF FF 8B 3D FF FF FF FF 6A</pattern>
                <mask>xxxxx????xx????x</mask>
                <offsetLocation>5</offsetLocation>
                <type>int64</type>
            </Pattern> <!-- And Pattern 2 -->
            
        </Patterns> <!-- End list of Patterns -->
        
    </PatternList>


    Update:
    24/11/2010 - Add Module Support.
    - Edit Wow offset.xml
    11/10/2010- Add Create Pattern.
    08/10/2010 - Add Modules dump in Dump all Info and Add the Source code.

    Ps: For dump the descriptors use this program: http://www.mmowned.com/forums/world-...urce-code.html

    Ps2: More Patterns here: http://www.mmowned.com/forums/world-...rn-finder.html (thank SwInY)
    Last edited by RivaLfr; 01-25-2013 at 06:00 AM.

    Offset Finding
  2. Thanks SolonHH (1 members gave Thanks to RivaLfr for this useful post)
  3. #2
    namreeb's Avatar Legendary

    Reputation
    668
    Join Date
    Sep 2008
    Posts
    1,029
    Thanks G/R
    8/222
    Trade Feedback
    0 (0%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Interesting. Suggestion: use the XML format some other people are already using. Check out http://www.mmowned.com/forums/world-...rk-2010-a.html

  4. #3
    Floppixx's Avatar Member
    Reputation
    1
    Join Date
    Oct 2009
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does it work for private server´s ?

  5. #4
    eLaps's Avatar Active Member
    Reputation
    34
    Join Date
    Sep 2007
    Posts
    123
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Floppixx View Post
    Does it work for private server´s ?
    It must do since it's the same client.

  6. #5
    Steveiwonder's Avatar Active Member
    Reputation
    31
    Join Date
    Oct 2009
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this safe?

  7. #6
    bolototo's Avatar Banned
    Reputation
    0
    Join Date
    May 2009
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    merci pour cette appli ^^

  8. #7
    Syltex's Avatar Sergeant Major
    Reputation
    23
    Join Date
    Jul 2010
    Posts
    174
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Steveiwonder View Post
    Is this safe?
    If you know how to use offsets then you should know this program only uses memoryreading.
    Last edited by Syltex; 09-12-2010 at 04:05 PM.

  9. #8
    namreeb's Avatar Legendary

    Reputation
    668
    Join Date
    Sep 2008
    Posts
    1,029
    Thanks G/R
    8/222
    Trade Feedback
    0 (0%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Syltex View Post


    If you know how to use offsets then you should know this program only uses memoryreading.
    Duh, these magical things called offsets aren't used when writing memory! DUH!

  10. #9
    RivaLfr's Avatar Contributor CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Sep 2010
    Posts
    258
    Thanks G/R
    2/25
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Floppixx View Post
    Does it work for private server´s ?
    Work for all windows program if you have the list of pattern corresponding at your program.

    Originally Posted by Steveiwonder View Post
    Is this safe?
    Yes, and if you are afraid you're not obligated to connect you to the account, you can not install WoW and run wow.exe, you let the error message and you connect offsetfinding to wow.exe and it work.

  11. #10
    RivaLfr's Avatar Contributor CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Sep 2010
    Posts
    258
    Thanks G/R
    2/25
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    New update: Add Modules dump in Dump all Info and Add the Source code.

  12. #11
    Syltex's Avatar Sergeant Major
    Reputation
    23
    Join Date
    Jul 2010
    Posts
    174
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Isn't "Offset Finder" a better name?

  13. #12
    RivaLfr's Avatar Contributor CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Sep 2010
    Posts
    258
    Thanks G/R
    2/25
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Yes, it is more appropriate.

  14. #13
    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)
    Originally Posted by Syltex View Post
    Isn't "Offset Finder" a better name?
    NO! This program is obviously meant to make offset finding a scary, daring, but absolute blockbuster adventure. Offset Finding By RivaL will do fine.

    Plus, I bet "Offset Finder" has been used many, many, times before.


  15. #14
    Syltex's Avatar Sergeant Major
    Reputation
    23
    Join Date
    Jul 2010
    Posts
    174
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suicidity View Post
    Plus, I bet "Offset Finder" has been used many, many, times before.
    Hmm maybe "Offset Finder v1337 By tha RivaLfr"

  16. #15
    RivaLfr's Avatar Contributor CoreCoins Purchaser Authenticator enabled
    Reputation
    221
    Join Date
    Sep 2010
    Posts
    258
    Thanks G/R
    2/25
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Thank

Page 1 of 3 123 LastLast

Similar Threads

  1. Finding Pointers and Offsets
    By PharmerPhale in forum MMO Exploits|Hacks
    Replies: 5
    Last Post: 04-21-2009, 04:07 PM
  2. Finding offsets from an object
    By jockel in forum WoW Memory Editing
    Replies: 10
    Last Post: 03-22-2009, 08:05 PM
  3. [Guide] Finding Pointers and Offset Manually.
    By PopcornWoW in forum World of Warcraft Guides
    Replies: 1
    Last Post: 12-23-2007, 07:49 AM
  4. How to find WoW Memory Offset?
    By pegaa in forum World of Warcraft General
    Replies: 0
    Last Post: 08-03-2007, 12:02 AM
  5. How do you find memory offsets in the game?
    By koalaz2004 in forum World of Warcraft General
    Replies: 0
    Last Post: 08-18-2006, 09:40 PM
All times are GMT -5. The time now is 06:16 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search