Search:

Type: Posts; User: Hitokiri~

Page 1 of 10 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    3
    Views
    1,815

    Platform Invoke it. I believe it's a __cdecl...

    Platform Invoke it. I believe it's a __cdecl calling convention.
  2. [Help] Hooks use relative jumps rather than absolute...

    Hooks use relative jumps rather than absolute jumps. ( For x86 at least ).
    You'll need to patch the correct address after you write it.
  3. And if the module loads at a none-static address...

    And if the module loads at a none-static address ?

    Proper method is to call GetModuleHandle for the address.
  4. [Help] https://msdn.microsoft.com/en-us/library/windows/h...

    https://msdn.microsof*****m/en-us/library/windows/hardware/ff567022(v=vs.85).aspx
    Check this out.
  5. Thread: Programs

    by Hitokiri~
    Replies
    4
    Views
    591

    Simplest beginner level program I can think of is...

    Simplest beginner level program I can think of is making a calculator.
    One that can calculate the:

    - Sum
    - Average
    - Maximum
    - Minimum

    Of any range of numbers you enter.
    In addition to...
  6. Replies
    15
    Views
    1,450

    'newCalc' merely fetches a number from the user....

    'newCalc' merely fetches a number from the user.
    The result may or may not be different each time it's called. ( It depends on what the user enters. )
  7. [Help] I'd recommend you look into virtualization.

    I'd recommend you look into virtualization.
  8. Replies
    10
    Views
    1,041

    [Source Code] Here's another app you can try out: /* For...

    Here's another app you can try out:



    /* For std::cin and std::cout */
    #include <iostream>

    /* For std::numeric_limits<> */
    #include <limits>
  9. [Help] He clearly said you need to change the virtual...

    He clearly said you need to change the virtual page to allow write access.
    I.E. Use ZwProtectVirtualMemory ( If you want low level calls ) before using ZwWriteVirtualMemory. ( Make sure both are...
  10. Replies
    3
    Views
    1,798

    No spread doesn't have an "offset". At least if...

    No spread doesn't have an "offset". At least if you're not host. It's a calculation done.
    Same for chams.
  11. Thread: Motivation

    by Hitokiri~
    Replies
    6
    Views
    732

    Get someone to pay you to make apps/cheats for...

    Get someone to pay you to make apps/cheats for them.
    Money is always the best motivator.
  12. Replies
    12
    Views
    1,477

    Do you people not remember there is a code tag? ...

    Do you people not remember there is a code tag?


    #include <ctime>
    #include <iostream>

    // Platform
    #include <conio.h>
    #include <Windows.h>
  13. Replies
    12
    Views
    1,477

    Yep, you're pretty much as good as Eithan.

    Yep, you're pretty much as good as Eithan.
  14. Replies
    14
    Views
    4,660

    [Help Request] In cheat engine's context, `game.exe` refers...

    In cheat engine's context,

    `game.exe` refers to the base address the game's module is mapped at. ( For x86 processes, it's 0x400000 and for x64 processes, it's 0x1400000. Assuming ofc it is mapped...
  15. Replies
    3
    Views
    625

    [Help] BOOL APIENTRY DllMain(HANDLE, DWORD r, LPVOID) {...

    BOOL APIENTRY DllMain(HANDLE, DWORD r, LPVOID)
    {
    if(r == DLL_PROCESS_ATTACH)
    do_hax_here();
    return TRUE;
    }


    Voila.
  16. Replies
    24
    Views
    3,068

    https://i3.kym-cdn.com/photos/images/newsfeed/000/9...

    https://i3.kym-cdn.com/photos/images/newsfeed/000/993/875/084.png

    Jokes aside, the hardest part of C++ is the syntax. Apart from that it's pretty much as straightforward as any other language.
    The...
  17. Replies
    2
    Views
    1,346

    [Solved] https://google.com Use this information wisely.

    https://google.com

    Use this information wisely.
  18. Replies
    2
    Views
    2,335

    [Help] For one .... That's a reliable command. Not a...

    For one .... That's a reliable command. Not a server command.
    Two, write to the reliable command buffer, increment the sequence number. Voila.
  19. Replies
    64
    Views
    21,318

    [Release] Yea I can totally see how that's logical. You...

    Yea I can totally see how that's logical.

    You NEVER hear about public hacks getting patched so why the fuck not waste hours on end reverse engineering a game for others who can't even appreciate...
  20. Replies
    5
    Views
    2,230

    Acquire the directx ownership in your thread,...

    Acquire the directx ownership in your thread, draw the text, release ownership.
  21. Replies
    2
    Views
    1,328

    [Source Code] __asm{ mov edi,edi push ebp mov ebp,esp pop...

    __asm{
    mov edi,edi
    push ebp
    mov ebp,esp
    pop ebp
    jmp orig
    nop
    nop
    nop
    nop
  22. [Source Code] So basically ReactOS...

    So basically ReactOS...
  23. Replies
    9
    Views
    2,570

    That bias when you can't even find the name...

    That bias when you can't even find the name hashing function :o
  24. Replies
    70
    Views
    23,693

    [Release] Fair enough.

    Fair enough.
  25. Replies
    22
    Views
    9,084

    [Discussion] If you dump the VAC 3 module you'll see how it...

    If you dump the VAC 3 module you'll see how it does it. It does in fact detect ring0 drivers.
Results 1 to 25 of 250
Page 1 of 10 1 2 3 4