Search:

Type: Posts; User: RobotGymnast

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    2,194

    errr.. depends how you define a loop.. you could...

    errr.. depends how you define a loop.. you could just write the loop in assembly instead, but honestly I can't think of a way to do that.. think about how you as a human would try to solve a proble...
  2. Replies
    3
    Views
    1,001

    thanks, I got it.. I essentially used that.. my...

    thanks, I got it.. I essentially used that.. my code is



    // check if a window is the one you're looking for
    BOOL CALLBACK checkWindow(HWND hwnd,LPARAM param)
    {
    // where to copy the window...
  3. Replies
    3
    Views
    1,001

    Finding windows

    I'm trying to get the process name of a window that changes, but always contains a certain substring.. is there any way to do this without knowing the process and only knowing part of the window?...
  4. Replies
    7
    Views
    2,782

    the space thing is working fine, but thanks for...

    the space thing is working fine, but thanks for the suggestion
  5. Replies
    7
    Views
    2,782

    yeah it is.. but actually I'm trying to get a...

    yeah it is.. but actually I'm trying to get a specific number of statements, so scanf works better.
    in general though, yeah getline would be better.
    thanks
  6. Replies
    7
    Views
    2,782

    oh I'm using it in C++.. whoops. yeah I sort of...

    oh I'm using it in C++.. whoops.
    yeah I sort of figured it out.. the MSDN entries on scanf hurt my head T_T.
    I think I got it though.. using stuff like either


    scanf("%s %s %s",...);
    or...
  7. Replies
    7
    Views
    2,782

    Reading white spaces? oh and scanf_s

    How do you get user input including white space? say, using scanf?
    Oh and I can't get scanf_s to work.. it never reads properly.. weird.
    And is there a way to only read a certain number of...
  8. Replies
    12
    Views
    1,452

    I don't care all too much about encapsulation.....

    I don't care all too much about encapsulation.. I've never encountered very many reasons to use it.. if I run into problems, I will
  9. Replies
    12
    Views
    1,452

    I use keys in outter code (it's not shown here,...

    I use keys in outter code (it's not shown here, but I do)
  10. Replies
    12
    Views
    1,452

    yeah I got it.. just make test an array and it...

    yeah I got it.. just make test an array and it works fine
  11. Replies
    12
    Views
    1,452

    char array

    I'm having problem with a char array.. here's my code.. nice and simple (I took out the unnecessary stuff), but this only gives a popup saying "a".. I've tried various other things, and keys[0] never...
  12. Replies
    6
    Views
    2,299

    got it. repetetive file plus bad code. sorry

    got it. repetetive file plus bad code. sorry
  13. Replies
    6
    Views
    2,299

    fread & fseek not advancing buffer

    Neither fread nor fseek in my code advance the cursor position the file, whether I opened it as r or r+, and I (obviously) require the cursor to change to read past the first few bytes.



    FILE*...
  14. Replies
    17
    Views
    3,509

    hmm.. interesting. I sort of meant this game in...

    hmm.. interesting. I sort of meant this game in particular, but it's not really fun to hack anyway (hacking's more recreational for me.. I only do stuff without security, e.g. offline games).
    ...
  15. Replies
    17
    Views
    3,509

    I generally use CE, but it's just weird because...

    I generally use CE, but it's just weird because that game has hack-protection.. nowadays it's done by searching for the byte signatures of old hacks
  16. Replies
    17
    Views
    3,509

    weird.. because I know some of these hacks...

    weird.. because I know some of these hacks usually needed a register change or breakpoint in the code.. not just on and off values... I wonder where he got these values
  17. Replies
    17
    Views
    3,509

    I know, it's really horrible code.. it's one of...

    I know, it's really horrible code.. it's one of the only publicly available DLL source codes for that game though.. it's outdated now anyway, I just keep it around as an example, but I haven't taken...
  18. Replies
    17
    Views
    3,509

    it wasn't code injection, it was just value...

    it wasn't code injection, it was just value editing.. here's the source code.. it's somewhat messy (you should've seen it before I cleaned it up)


    #include <windows.h>

    #define KLIPPETYK ...
  19. Replies
    17
    Views
    3,509

    (I was just using it as an example because that's...

    (I was just using it as an example because that's where I've seen it.. I'm not really using it for anything, I'm more just trying to do random stuff that's a bit more low-level, because it's new to...
  20. Replies
    17
    Views
    3,509

    err wow that's strange.. I've seen, especially in...

    err wow that's strange.. I've seen, especially in game hacking DLLs, people implement hacks that require flag changes.. the weird part was they were doing some sort of weird XOR thing that I couldn't...
  21. Replies
    17
    Views
    3,509

    I understand that for the most part, but how do...

    I understand that for the most part, but how do you only change them when execution hits a certain address, like in a multi-threaded application, how do you detect when execution has hit a certain...
  22. Replies
    17
    Views
    3,509

    Changing flags from a DLL?

    I would like to know how have a DLL that will change flags/registers when execution hits a certain location. I can change values; that's easy enough. What about flags and registers only when...
  23. Replies
    17
    Views
    2,190

    ah.... well I think this convo's officially dead....

    ah.... well I think this convo's officially dead. *unsubscribe*
  24. Replies
    17
    Views
    2,190

    hmm? I swear I tried them and they were...

    hmm? I swear I tried them and they were annoying.. whatev I'll give it a shot. thanks.
  25. Replies
    17
    Views
    2,190

    STL string...? whatev I'm sticking to char*.. it...

    STL string...? whatev I'm sticking to char*.. it works fine for me
Results 1 to 25 of 67
Page 1 of 3 1 2 3