Pattern for Wotlk (build 8962)? menu

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 28 of 28
  1. #16
    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)
    My eyes, omg they burn so hard at the sight of that Autoit code, it burns like hell >.< (yes this is stolen from a Metallica song)
    autoit structs are realy ugly, do me a favor and learn a real C like language (yes even C# is better than autoit), for the sake of human coders all non c syntax non script langueages should be burnt to the ground (for a script it's ok to not have c like syntax ).
    I hacked 127.0.0.1

    Pattern for Wotlk (build 8962)?
  2. #17
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xarg0 View Post
    My eyes, omg they burn so hard at the sight of that Autoit code, it burns like hell >.< (yes this is stolen from a Metallica song)
    autoit structs are realy ugly, do me a favor and learn a real C like language (yes even C# is better than autoit), for the sake of human coders all non c syntax non script langueages should be burnt to the ground (for a script it's ok to not have c like syntax ).
    "yes even C# is better than autoit" <-- How dare you do C# so little justice and compare it to a language so full of fail. C# is ****en awesome, AutoIt fails harder than kynox (<3).

  3. #18
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cypher View Post
    "yes even C# is better than autoit" <-- How dare you do C# so little justice and compare it to a language so full of fail. C# is ****en awesome, AutoIt fails harder than kynox (<3).
    hahaha, that made my day

  4. #19
    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)
    C# is evil, because microsoft made it :>
    I hacked 127.0.0.1

  5. #20
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xarg0 View Post
    C# is evil, because microsoft made it :>

    You're a retard.

  6. #21
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cypher View Post

    You're a retard.
    but is it true? :lol:

  7. #22
    Shynd's Avatar Contributor
    Reputation
    97
    Join Date
    May 2008
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    /* 46f7a5 */ \xEB\x02\x33\xC0\x8B\xD\x00\x00\x00\x00\x64\x8B\x15\x00\x00\x00\x00\x8B\x34\x8A\ x8B\xD\x00\x00\x00\x00\x89\x81\x00\x00\x00\x00 xxxxxx????xxx????xxxxx????xx???

  8. #23
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shynd View Post
    /* 46f7a5 */ xEBx02x33xC0x8BxDx00x00x00x00x64x8Bx15x00x00x00x00x8Bx34x8Ax8BxDx00x00x00x00x89x 81x00x00x00x00 xxxxxx????xxx????xxxxx????xx???
    AH shynd u da mon! altho u missed out one '?' in the mask it was 31 characters long but there was 32 opcodes also i found it with Olly,

    Code:
                /*
                0046F7A5  |. EB 02                            JMP SHORT WoW.0046F7A9
                0046F7A7  |> 33C0                           XOR EAX,EAX0046F7A9  |> 8B0D 44972E01          MOV ECX,DWORD PTR DS:[12E9744]
                0046F7AF  |. 64:8B15 2C000000      MOV EDX,DWORD PTR FS:[2C]
                0046F7B6  |. 8B348A                        MOV ESI,DWORD PTR DS:[EDX+ECX*4]
                0046F7B9  |. 8B0D 08421C01           MOV ECX,DWORD PTR DS:[11C4208]  ;Offset 0x20
                0046F7BF  |. 8981 2C280000           MOV DWORD PTR DS:[ECX+282C],EAX
                */
    it return's the adress 46F7A5 now ive recalculated the offsets
    the offset for the pointer is at 0x20 i think
    Code:
    ObjectManager.Pointer = Memory.ReadUInt(hProcess, (ObjectManager.CodeAddress + 0x20)); //0x16 for 2.4.3?
    
    MOV ECX,DWORD PTR DS:[11C4208]
    havent got evrything in place yet im gonna do that tomorrow really tired now cu :wave: and +Rep for the help

  9. #24
    dalgreens's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nesox View Post
    [/code]

    it return's the adress 46F7A5 now ive recalculated the offsets
    the offset for the pointer is at 0x20 i think
    Code:
    ObjectManager.Pointer = Memory.ReadUInt(hProcess, (ObjectManager.CodeAddress + 0x20)); //0x16 for 2.4.3?
    
    MOV ECX,DWORD PTR DS:[11C4208]
    havent got evrything in place yet im gonna do that tomorrow really tired now cu :wave: and +Rep for the help
    I thought the 2.4.3 offset was 0x12.

  10. #25
    Shynd's Avatar Contributor
    Reputation
    97
    Join Date
    May 2008
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    He's talking about something else.

  11. #26
    dalgreens's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Shynd, any reason why you haven't been updating your blog/journal? It's a great resource for those just learning.

  12. #27
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dalgreens View Post
    I thought the 2.4.3 offset was 0x12.
    im talking about wrath of the lich king

  13. #28
    Shynd's Avatar Contributor
    Reputation
    97
    Join Date
    May 2008
    Posts
    393
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dalgreens View Post
    Shynd, any reason why you haven't been updating your blog/journal? It's a great resource for those just learning.
    Haven't really had time, lately. I keep meaning to get back into it but I've just been really busy. I have a bot-like tool idea that I might start making and journal, soon, if I get a bit more free time.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Web] Account registration for WotLK alpha server (MaNGOS, RoSpora)
    By Dythzer in forum WoW EMU General Releases
    Replies: 66
    Last Post: 06-29-2010, 06:44 AM
  2. [Repack] Mangos Server for WotLK Beta Build 9095
    By zackorion15 in forum WoW EMU General Releases
    Replies: 51
    Last Post: 11-11-2008, 10:52 AM
  3. JC Bug Get The Four New Epic Patterns For 5gold
    By Uputz in forum World of Warcraft Exploits
    Replies: 18
    Last Post: 03-26-2008, 12:56 PM
All times are GMT -5. The time now is 06:31 PM. 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