Results 1 to 6 of 6
  1. #1
    ReZaJwZ's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Somewere
    Posts
    1,308
    Reputation
    14
    Thanks
    866
    My Mood
    Aggressive

    Post Operation 7 Addies ( EU ) / Hack codes

    Code:


    4 Byte: ADR_Uammo 0x00497F3A // Nop
    Float: ADR_Speed 0x00BFD9A8
    Float: ADR_Jump 0x00BFD9AC
    4 Byte: ADR_God 0x00C12FC8 // Freeze to 3
    Float: ADR_Z 0x00BFCE1C
    Float: ADR_Y 0x00BFCE20
    Float: ADR_X 0x00BFCE18
    Float: ADR_SPREAD1 0x00C0CE28
    Float: ADR_SPREAD2 0x00C0CE2C
    Float: ADR_SPREAD3 0x00C0CE30 // Buggy Spread
    4 Byte: ADR_ Rapidfire 0x63537273 // Not tested ( 8b 81 34 02 00 00 - mov eax,[ecx+00000234] )


    Teleport Hack:


    Code:
    float cX;
    float cY;
    float cZ;

    void Teleport()
    {
    if (GetAsyncKeyState(VK_NUMPAD1))//tasten ändern
    {
    cX = *(float*)(ADR_X);
    cY = *(float*)(ADR_Y);
    cZ = *(float*)(ADR_Z);
    }

    //teleport to saved:
    if (GetAsyncKeyState(VK_NUMPAD2))
    {
    *(float*)(ADR_X) = cX;
    *(float*)(ADR_Y) = cY;
    *(float*)(ADR_Z) = cZ;
    }
    }
    Rapidfire:


    Code:
    bool RapidFire;
    #define RapidFire_Addie 0x00000000
    void RapidFireON()
    {
    unsigned long Protection;
    unsigned char RapidFireON[6] = { 0x90, 0x90, 0x90, 0x90, 0x90, 0x90 };
    VirtualProtect((void*)RapidFire_Addie, 6, PAGE_READWRITE, &Protection);
    memcpy((void*)RapidFire_Addie, (const void*)RapidFireON,6);
    VirtualProtect((void*)RapidFire_Addie, 6, Protection, 0);//
    }

    void RapidFireOFF()
    {
    unsigned long Protection;
    unsigned char RapidFireOFF[6] = { 0x8b, 0x81, 0x34, 0x02, 0x00, 0x00 };
    VirtualProtect((void*)RapidFire_Addie, 6, PAGE_READWRITE, &Protection);
    memcpy((void*)RapidFire_Addie, (const void*)RapidFireOFF,6);
    VirtualProtect((void*)RapidFire_Addie, 6, Protection, 0);
    }
    Unlimited Ammo:


    Code:
    if(UnlAmmo == 1)
    {
    BYTE Nop[ ] = {0x90, 0x90};
    WriteProcessMemory(op7, (LPVOID*)(DWORD) (ADR_Uammo), &Nop, sizeof(Nop), NULL);
    }

    if(UnlAmmo == 0)
    {
    BYTE Nop2[ ] = {0x89, 0x10};
    WriteProcessMemory(op7, (LPVOID*)(DWORD) (ADR_Uammo), &Nop2, sizeof(Nop2), NULL);
    }
    Speedhack:


    Code:
    if(Speedhack == 1)
    {
    float fval = 150.0;
    Write_D3Dmem((void *)ADR_Speed, (void *)&fval, 4);
    }
    Super Jump:


    Code:
    if(SuperJump == 1)
    {
    float increaseval = 120.0;
    *(float*)ADR_Jump;
    float fval = *(float*)ADR_Jump + increaseval;
    if( GetAsyncKeyState( VK_SPACE ) & 1 )
    {
    Write_D3Dmem((void *)ADR_Jump, (void *)&fval, 4);
    }
    }
    No Spread:


    Code:
    if (NoSpread == 1)
    {
    *(float*)ADR_SPREAD1 = -30;
    *(float*)ADR_SPREAD2 = -30;
    *(float*)ADR_SPREAD3 = -30;
    }
    God Mode:


    Code:
    if(GodMode == 1)
    {
    *(int*)ADR_God = 3;
    }

    if (GodMode == 0)
    {
    *(int*)ADR_God = 0;
    }

    Write memory function:


    Code:
    //writemem function by Neo I.I.I and stefanlg

    void Write_D3Dmem( void* pxAddress, void* pxBuffer, int size )
    {
    unsigned long Protection;
    VirtualProtect((void*)pxAddress, size, PAGE_READWRITE, &Protection);
    memcpy((void*)pxAddress, (const void*)pxBuffer, size);
    VirtualProtect((void*)pxAddress, size, Protection, 0);
    }

    Have fun

  2. #2
    fearlesone's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    244561564
    Posts
    62
    Reputation
    10
    Thanks
    6
    My Mood
    Cheeky
    mmm k question lol how do ya compose it

  3. #3
    Tom's Avatar
    Join Date
    Sep 2007
    Gender
    male
    Location
    in my gf's pants
    Posts
    1,861
    Reputation
    37
    Thanks
    594
    My Mood
    Cool
    Thanks for the addies,so coders can make hacks

  4. #4
    Grab's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    gh
    Posts
    44
    Reputation
    10
    Thanks
    6
    My Mood
    Bored
    Run this addies with cheat engine and for xp ????

  5. #5
    ReZaJwZ's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Somewere
    Posts
    1,308
    Reputation
    14
    Thanks
    866
    My Mood
    Aggressive
    Quote Originally Posted by Grab View Post
    Run this addies with cheat engine and for xp ????
    You can try may it also works on XP

  6. #6
    Grab's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    gh
    Posts
    44
    Reputation
    10
    Thanks
    6
    My Mood
    Bored
    how i do this addies in cheat engine ???
    maybe mhh
    Process>>>Add addres manuel ??????>>>and wahts for Value

Similar Threads

  1. [Solved] How to use warrock ph addies/hacks/codes.
    By kilzack99 in forum WarRock Help
    Replies: 1
    Last Post: 10-28-2011, 10:34 AM
  2. [Source Code] Addies Operation 7 Fiaa (Eu) | Hack Codes
    By Wiirtuallca in forum Operation 7 Hacks
    Replies: 18
    Last Post: 08-05-2010, 10:37 PM
  3. How You all get hack codes
    By TheBlueMax in forum WarRock - International Hacks
    Replies: 14
    Last Post: 10-02-2007, 08:50 PM
  4. hack codes
    By tristan... in forum WarRock - International Hacks
    Replies: 4
    Last Post: 09-25-2007, 10:40 AM
  5. Need help with my warrock hack code
    By dikketr0l in forum Visual Basic Programming
    Replies: 6
    Last Post: 08-04-2007, 06:36 AM