Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    Memory-writing functions


    Novoc
     Share

    Recommended Posts

    • Replies 207
    • Created
    • Last Reply

    Top Posters In This Topic

    • 2 weeks later...
    Just something I wrote up, handy.

     

    Wrote it to simply write Jumps, use for w/e.

     

    WriteMemory - write an byte-array to memory-address.

    WriteJump - both arguments are addresses, where to jump from and where to jump to.

    WriteNop - address and how many to write.

     

    [ Hidden part. View original post. ]

    lol

    Link to comment
    Share on other sites

    Lol didn't reply yet!

    One of this tutorials should work now xD

    Link to comment
    Share on other sites

    void memory()
    {
    HWND hWnd = FindWindow(0, "WarRock");
    GetWindowThreadProcessId(hWnd, &proc_id);
    hProcess = OpenProcess(PROCESS_ALL_ACCESS|PROCESS_VM_OPERATION|PROCESS_VM_READ|PROCESS_VM_WRITE|PRO
    CESS_QUERY_INFORMATION, FALSE, proc_id);
    }
    void Writelong(long addy, long value)
    {
    memory();
    WriteProcessMemory(hProcess, (LPVOID*)(DWORD) addy, &value, sizeof(value), NULL);
    }
    void WritePointerFloat(long addy, short offset, float value)
    {
    long maddy;
    long saddy;
    memory();
    ReadProcessMemory(hProcess, (LPVOID*)(DWORD) addy, &maddy, sizeof(maddy), NULL);
    saddy = maddy + offset;
    WriteProcessMemory(hProcess, (LPVOID*)(DWORD) saddy, &value, sizeof(value), NULL);
    }

     

    There is on WritePointerFloat and Writelong

     

    But as write on WriteMemory ?

     

    There is that in this theme ungun me

    Edited by lumota
    Link to comment
    Share on other sites

    • 2 weeks later...
    Just something I wrote up, handy.

     

    Wrote it to simply write Jumps, use for w/e.

     

    WriteMemory - write an byte-array to memory-address.

    WriteJump - both arguments are addresses, where to jump from and where to jump to.

    WriteNop - address and how many to write.

     

    [ Hidden part. View original post. ]

    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.

    ×
    ×
    • Create New...