Screenshot Thread menu

User Tag List

Page 79 of 116 FirstFirst ... 29757677787980818283 ... LastLast
Results 1,171 to 1,185 of 1737
  1. #1171
    Master674's Avatar Elite User
    Reputation
    487
    Join Date
    May 2008
    Posts
    578
    Thanks G/R
    2/23
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    removed

    msg2short
    Last edited by Master674; 11-01-2011 at 05:14 AM.

    Screenshot Thread
  2. #1172
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1514
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/335
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Removed

    Message also too short
    Last edited by Jadd; 11-01-2011 at 05:19 AM.

  3. #1173
    Master674's Avatar Elite User
    Reputation
    487
    Join Date
    May 2008
    Posts
    578
    Thanks G/R
    2/23
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jadd View Post
    Looks like everyone's using the same teleport method now...
    Yeah ;D i dont think that they could fix it so easily .. could give problems with other players movement.

  4. #1174
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1514
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/335
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Master674 View Post
    Yeah ;D i dont think that they could fix it so easily .. could give problems with other players movement.
    I'm not so sure about that... They could easily limit or make checks for that.. uhh.. one "key variable" which would **** both of us over lol

  5. #1175
    Master674's Avatar Elite User
    Reputation
    487
    Join Date
    May 2008
    Posts
    578
    Thanks G/R
    2/23
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jadd View Post
    I'm not so sure about that... They could easily limit or make checks for that.. uhh.. one "key variable" which would **** both of us over lol
    Yeah, lets hope nobody makes that gap public.. and by that i mean not even a "beta" test.

  6. #1176
    streppel's Avatar Active Member
    Reputation
    78
    Join Date
    Mar 2007
    Posts
    196
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hm....i don't do any wow stuff but i might know how you did that stuff...anyways keep it up both of you,i really enjoy seeing games being hacked by people that are far more knowledged then i am

  7. #1177
    sitnspinlock's Avatar Elite User CoreCoins Purchaser
    Reputation
    398
    Join Date
    Sep 2010
    Posts
    439
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    completely unrelated but here is a windows 8 bsod while working on some of my drivers

    guess you could call it the 'hipster bsod'

    social media self obsessed facebook dwellers have somehow taken over windows, but I guess m$ aims to
    please the masses.

    inb4 l2 minidump

    Last edited by sitnspinlock; 11-04-2011 at 10:43 PM.

  8. #1178
    DrakeFish's Avatar Lazy Leecher

    Reputation
    634
    Join Date
    Nov 2008
    Posts
    569
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's not complete yet, but this is something I've been working on for the past days for injected .NET DLLs. The example is pretty simple, but it shows the main purpose of the lib.
    The code is able to create both HWBP and Software BP based hooks in the process, I will also be adding OnWrite/OnReadWrite hooks possibility. It is also possible to edit Context, execution will resume with it.

    Here's the code for my simple example hook:
    Code:
    static void InitHook()
    {
         ManagedHooker.AddHWBPHook(SendMessageHookHandler, (IntPtr)0x4CC8C0, ManagedHooker.HWBPType.Execution, ManagedHooker.HWBPSize.Size_1);
    }
    
    static void SendMessageHook(ref Imports.EXCEPTION_RECORD ExceptionRecord, ref Imports.CONTEXT Context)
    {
        string[] lua = new string[]
        {
            "print('------- SendMessage Hook ---------');",
            "print('EAX ECX EDX EBX EDI EBP');",
            String.Format("print('{0} {1} {2} {3} {4} {5}');", Context.Eax.ToString("X8"), Context.Ecx.ToString("X8"), Context.Edx.ToString("X8"), Context.Ebx.ToString("X8"), Context.Edi.ToString("X8"), Context.Ebp.ToString("X8")),
            "print('-----------------------------------------');",
        };
    
        string sLua = "";
        foreach (string s in lua)
            sLua += s; // no need for \n
    
        DoStringHandler(sLua, "test.lua", 0); 
    }
    Here you can see the result in-game:
    Screenshot Thread-capture-jpg

    I didn't try hooking something called every frames yet (such as EndScene), but there is currently no performance drop from hooking SendMessage.
    Last edited by DrakeFish; 11-05-2011 at 12:12 AM.

  9. #1179
    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)
    It'd be cool if it wasn't a hardware breakpoint. Hardware breakpoints are easy, and easy to detect.


  10. #1180
    DrakeFish's Avatar Lazy Leecher

    Reputation
    634
    Join Date
    Nov 2008
    Posts
    569
    Thanks G/R
    0/14
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suicidity View Post
    It'd be cool if it wasn't a hardware breakpoint. Hardware breakpoints are easy, and easy to detect.
    As I said, it is possible to use Software BPs, or anything else actually. HWBPs are not required.

  11. #1181
    Master674's Avatar Elite User
    Reputation
    487
    Join Date
    May 2008
    Posts
    578
    Thanks G/R
    2/23
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)




    its NOT clientside. Its done on live 4.2.2 server. culino did this on ptr b4 so i tried it again and lols thats the result.
    Last edited by Master674; 11-06-2011 at 01:06 PM.

  12. #1182
    LogicWin's Avatar Master Sergeant
    Reputation
    51
    Join Date
    Mar 2011
    Posts
    103
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Master674 View Post


    its NOT clientside. Its done on live 4.2.2 server. culino did this on ptr b4 so i tried it again and lols thats the result.
    Is those deathknight swords?

  13. #1183
    Master674's Avatar Elite User
    Reputation
    487
    Join Date
    May 2008
    Posts
    578
    Thanks G/R
    2/23
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its frostmourne yeah.

  14. #1184
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1514
    Join Date
    May 2008
    Posts
    2,433
    Thanks G/R
    81/335
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)








    Last edited by Jadd; 07-01-2012 at 06:25 PM.

  15. #1185
    Nyarly's Avatar ★ Elder ★ Lorekeeper of Exploration
    Reputation
    1091
    Join Date
    Aug 2007
    Posts
    1,648
    Thanks G/R
    367/315
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Did you do this one too : http://i1190.photobucket.com/albums/...611_155808.jpg ?
    By far the best

Similar Threads

  1. Screenshot Thread for Diablo 3
    By UnknOwned in forum Diablo 3 Memory Editing
    Replies: 136
    Last Post: 09-03-2018, 01:06 PM
  2. Aion Screenshot Thread
    By JD in forum Aion Exploits|Hacks
    Replies: 0
    Last Post: 11-17-2009, 11:19 AM
  3. Screenshot Thread for AoC
    By Cryt in forum Age of Conan Exploits|Hacks
    Replies: 0
    Last Post: 05-23-2008, 07:32 AM
  4. Why my server is better than yours (a screenshots thread)
    By Liania in forum World of Warcraft General
    Replies: 15
    Last Post: 02-14-2007, 11:00 PM
All times are GMT -5. The time now is 03:48 PM. 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