Thread: oengine trainer

Results 1 to 3 of 3
  1. #1
    ragman1234's Avatar
    Join Date
    Mar 2007
    Posts
    67
    Reputation
    10
    Thanks
    0

    oengine trainer

    I said, the adresses are always the same. So if you take them from oengine and code your trainer, the trainer isn't detected.
    __________________

    This is my personal UCE and will never go public
    does anyone no how to do this if so plzz tell me

  2. #2
    kanym's Avatar
    Join Date
    Apr 2007
    Posts
    62
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by ragman1234 View Post
    does anyone no how to do this if so plzz tell me
    with oengine open a warrock ct file, take the address and copy in YOUR trainer..
    with your, he wanna says "ur creation", imo

  3. #3
    Naeron's Avatar
    Join Date
    Feb 2007
    Posts
    163
    Reputation
    11
    Thanks
    6
    Here is an example in C, but it works only for 2 byte adresses:

    #include <windows.h>

    void WriteMem(char* window, LPCVOID address, int value)
    {
    HWND hWnd = FindWindow(0, window);
    DWORD PID;
    GetWindowThreadProcessId(hWnd, &PID);
    HANDLE Process = OpenProcess(PROCESS_ALL_ACCESS, FALSE, PID);
    BYTE newdata[]={value};
    DWORD size = sizeof(newdata);
    WriteProcessMemory(Process, (LPVOID)address, &newdata, size, 0);
    CloseHandle(Process);
    }

    int main(int argc, char *argv[])
    {
    HANDLE WarRock = FindWindow(NULL, "WarRock");
    if (WarRock == NULL)
    {
    MessageBox(NULL, "Process could not be attached!\nPlease run WarRock at first and then the hack...", "WarRock is not running!", MB_ICONERROR);
    return 0;
    }
    else{
    WriteMem("WarRock", (LPCVOID)0x/* Put your adress in here */, /* and the value here */);
    }
    return 0;
    }

Similar Threads

  1. Is there anyway to make engines like oengine make trainers
    By Twisted_scream in forum WarRock - International Hacks
    Replies: 7
    Last Post: 04-30-2007, 12:38 PM
  2. (SEARCHING)WarRock Trainer
    By User Namem in forum Hack Requests
    Replies: 11
    Last Post: 02-02-2006, 07:48 PM
  3. C++ Trainer Skeleton
    By Dave84311 in forum C++/C Programming
    Replies: 40
    Last Post: 01-27-2006, 09:23 PM
  4. Trainer?
    By outrage20 in forum Gate To Heaven Hacks
    Replies: 1
    Last Post: 01-17-2006, 05:52 AM
  5. MPGH Warrock Trainer v1.010206
    By Dave84311 in forum WarRock - International Hacks
    Replies: 21
    Last Post: 01-10-2006, 06:41 PM