Search:

Type: Posts; User: Harava

Page 1 of 5 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    12
    Views
    3,023

    [Help Request] Why oh why would you use GetAsyncKeyState? Just...

    Why oh why would you use GetAsyncKeyState? Just use a global keyboard hook:



    #include <cstdio>
    #include <windows.h>

    #pragma comment(lib, "User32")

    HHOOK hHook = NULL;
  2. Replies
    5
    Views
    1,025

    [Help] Process.exe+0x123456 means that the variable is...

    Process.exe+0x123456 means that the variable is at the base of the process + a certain offset. Since you have a dll, your code is going to be running in the address space of GTA, so you can just do ...
  3. Thread: helps

    by Harava
    Replies
    3
    Views
    872

    [Help] Ahahaha, this guy is busting my balls here. He...

    Ahahaha, this guy is busting my balls here. He just wants to build 45 degree roofs!

    /ahah /lolol
  4. [Help Request] Read this thread...

    Read this thread very carefully, then look up every function on msdn. If you don't understand it after that, repeat.
  5. Thread: C++ TRAINER

    by Harava
    Replies
    4
    Views
    1,055

    [Help] Why not toggle it like this: s = !s;

    Why not toggle it like this:


    s = !s;
  6. Replies
    85
    Views
    66,979

    [Outdated] Nope that does not help. The hack doesn't have...

    Nope that does not help. The hack doesn't have support and never will have support for windows XP because why the hell would you still be running XP?
  7. Replies
    85
    Views
    66,979

    [Outdated] Confirmed. I have a inconsistent pointer (...

    Confirmed. I have a inconsistent pointer ( FUUUUUUUUUUUUCK ).

    This means that the hack will work on some systems, and won't on others. There's no guarantee and no way to know in advance. I'll get...
  8. Replies
    85
    Views
    66,979

    [Outdated] With a wee bit of thought and effort one can...

    With a wee bit of thought and effort one can unpack it all by themselves. It's mainly just there to stop noobs getting past the limits on some features.
  9. Replies
    85
    Views
    66,979

    [Outdated] CSPHv3.2 - CS Portable Multi Hack ( CSP 2.70 )

    So I did get around to update the hack after all!

    I was in the dark for quite some time about all things CSP, and reading back there seems to have happened quite a lot. This is how I understood...
  10. Replies
    12
    Views
    2,578

    [Request] And this is why I will never use Java. Fuck safe...

    And this is why I will never use Java. Fuck safe execution, if I need a VM I'll make it myself. ;)
  11. [Outdated] Releasing soon: ...

    Releasing soon:

    https://i61.tinypic.com/2h2dr40.png
  12. [Outdated] Guess I should get to work... Still hung over,...

    Guess I should get to work... Still hung over, I'll need a while. ;)
  13. Replies
    6
    Views
    934

    Think about it. If you edit a value in memory of...

    Think about it. If you edit a value in memory of the game, and the game then goes on to send the modified value to the server, then you have essentially edited a packet. So if packet editing was...
  14. Replies
    6
    Views
    934

    You don't seem to know what you are talking about...

    You don't seem to know what you are talking about in any case.

    Packet editing is not "insane shit" and it is not illegal! ( Well at least not any more illegal than editing a client/using any hack...
  15. Replies
    5
    Views
    967

    Lol. #include int n1, n2;...

    Lol.



    #include <stdio.h>

    int n1, n2;
    char op;

    int Calc(){if(op=='+')return n1+n2; if(op=='-')return n1-n2; if(op=='/')return n1/n2; if(op=='*')return n1*n2; return -1;}
  16. Thread: Debug Assembly

    by Harava
    Replies
    2
    Views
    2,103

    [Help] Nothing happened because you have the wrong...

    Nothing happened because you have the wrong syntax for g. If you want to start at 100 and execute to 103, its "g=100 103". "g 100 (103)" is just saying execute till 100, so nothing at all gets run.
    ...
  17. [Solved] Replace system("pause"); with something...

    Replace


    system("pause");

    with something else, like getchar() for example.
  18. Replies
    11
    Views
    1,086

    [Help Request] e97adf1d8b4e925ce4d92114c018be4c

    e97adf1d8b4e925ce4d92114c018be4c
  19. Replies
    11
    Views
    1,086

    [Help Request] BULL-SHIT. C++ is compatible with C. Even...

    BULL-SHIT.

    C++ is compatible with C. Even MSVC.

    Op just did not get the configuration for VC2010 right in codeblocks.
    Set the paths for the compiler and it will work just fine.
  20. Replies
    16
    Views
    1,588

    [Help] To save a .c file, make a regular text file,...

    To save a .c file, make a regular text file, paste the code and then "save as" and change the extension to C.
    That will compile even with TCC if you change <cstdio> to <stdio.h>. You need to use the...
  21. Replies
    16
    Views
    1,588

    [Help] Here is how it's done in C: #include...

    Here is how it's done in C:



    #include <cstdio>
    #include <windows.h>

    #pragma comment(lib, "USER32")

    /*
  22. [Release] Lol what is this even... I reversed the app, it's...

    Lol what is this even... I reversed the app, it's just a exe that loads a bat from resources and then runs it. I'm guessing the threadstarter only made the bats... Below is the ( half of the )...
  23. Replies
    1
    Views
    673

    [Help Request] Cheat engine tells you exactly how to read multi...

    Cheat engine tells you exactly how to read multi level pointers:

    https://i62.tinypic.com/w9e73m.png

    Offsets in brackets are meant to be added to the pointer and then the value the pointer now...
  24. [Release] Solhack - Infinite Ammo / Noreload & Nocooldown ( Soldat 1.6.7 )

    ███████╗ ██████╗ ██╗ ██╗ ██╗ █████╗ ██████╗██╗ ██╗
    ██╔════╝██╔═══██╗██║ ██║ ██║██╔══██╗██╔════╝██║ ██╔╝
    ███████╗██║ ██║██║ ███████║███████║██║ █████╔╝
    ╚════██║██║ ██║██║ ...
  25. [Help] First of all, cracking is pretty much a synonym...

    First of all, cracking is pretty much a synonym for reverse engineering IMO. You can't crack anything if you don't understand what is going on in the application.

    Q: What should I start with?
    ...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4