Results 1 to 13 of 13
  1. #1
    mjdandan26's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    2
    My Mood
    Asleep

    Post Tama po ba ginagawa ko?

    Code:
    #include <windows.h>
    #include <stdio.h>
    
    #define ADR_PLAYERPOINTER     0x00A86B88
    #define ADR_SERVERPOINTER     0x00A85B30
    
    #define ADR_GlassWall       0x00A84CC4
    #define ADR_SuperNoSpread   0x008AE9B8 
    #define OFS_NoRecoil1       0x00C444 
    #define OFS_NoRecoil2       0x00C448 
    #define OFS_NoRecoil3       0x00C44C
    #define ADR_NoSpawnWait     0x00B1B0A4
    #define ADR_DefuseAnyWhere  0x00910CA4
    #define ADR_FastStamina     0x0087CA6C
    
    DWORD *ingame= (DWORD*)ADR_PLAYERPOINTER;
    DWORD *outgame= (DWORD*)ADR_SERVERPOINTER;
    
    void GlassWall()
    {
    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_GlassWall = 1;
    else
    {
    *(int*)ADR_GlassWall = 0;
    }
    }
    void nr()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
    if (dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+OFS_NoRecoil1) = 0;
    *(float*)(dwPlayerPtr+OFS_NoRecoil2) = 0;
    *(float*)(dwPlayerPtr+OFS_NoRecoil3) = 0;
    }
    }
    void Auto()
    {
    *(float*)ADR_DefuseAnyWhere = 500;
    *(double*)ADR_SuperNoSpread = 0;
    }
    void HackThread()
    {
    for(;; )
    if(*ingame)
    {
    Auto();
    GlassWall();
    nr();
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    CreateThread (0, 0, (LPTHREAD_START_ROUTINE)CreateThread , 0, 0, 0) ;
    MessageBoxA(NULL, "Game Guard Error","WARNING!",MB_OK) ;
    return TRUE;
    }
    }
    Last edited by Mayion; 03-08-2014 at 12:18 AM. Reason: Code tags

  2. #2
    [PH]Coder's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Location
    #define In_The_House 0x0000
    Posts
    19
    Reputation
    37
    Thanks
    58
    My Mood
    Angelic
    Quote Originally Posted by mjdandan26 View Post
    #include <windows.h>
    #include <stdio.h>

    #define ADR_PLAYERPOINTER 0x00A86B88
    #define ADR_SERVERPOINTER 0x00A85B30
    #define ADR_HEALTHPOINTER 0x0031FB8
    #define ADR_WEAPONPOINTER 0x00AA4C18
    #define ADR_REMOTEPOINTER 0x00B020D0
    #define ADR_NoSpread1 0x00A8B21C
    #define ADR_NoSpread2 0x00A8B220
    #define ADR_AutoRepair 0x00A84C29
    #define ADR_AutoAmmo 0x00A84C47
    #define ADR_NoSpawnWait 0x00B1B0A4
    #define ADR_FastAmmo 0x00A8B17C
    #define ADR_FastFlag3 0x00A8B194
    #define ADR_Wuw 0x00A8D994
    #define ADR_WeaponReload 0x00A87008

    DWORD *ingame= (DWORD*)ADR_Playerpointer;
    DWORD *outgame= (DWORD*)ADR_Serverpointer;

    void Auto()
    {
    *(int*) ADR_ExtraClip1 = 1;
    *(int*) ADR_ExtraClip2 = 1;
    }

    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    Auto();



    YOUR WORK ARE WRONG!

    THIS IS THE RIGHT Coding :

    Code:
    #include <windows.h>
    #include <stdio.h>
    
    #define ADR_PLAYERPOINTER 0x0A86B88
    #define ADR_SERVERPOINTER 0x0A85B30
    #define ADR_GlassWall 0x0A84CC4
    
    DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
    DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
    
    void gwall()
    {
    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_GlassWall = 1;
    
    else
    {
    *(int*)ADR_GlassWall = 0;}}
    
    
    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    gwall();
    }
    if(*outgame)
    {
    }
    Sleep(200);
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL, "Your Name", "Made by:", MB_OK);
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
    }
    return TRUE;
    }

    Study it and Learn How to Code!


    IF I HELP YOU PLEASE DONT FORGET TO HIT "THANKS" BUTTON.


    MULTIPLAYER GAMEHACKING
    MPGH member since: January 31, 2014
    Every Coder StartFrom Nothing
    Keep Calm And Learn how to Code.

    [x][x][x][x][x][x][x][x][x][x][x][x][x]







    HIT "THANKS" BUTTON IF I HELP...



  3. The Following 2 Users Say Thank You to [PH]Coder For This Useful Post:

    CuteMurder52 (03-07-2014),[GM]Star (03-06-2014)

  4. #3
    emiedumalasa's Avatar
    Join Date
    May 2012
    Gender
    female
    Location
    Hackershero
    Posts
    683
    Reputation
    10
    Thanks
    794
    My Mood
    Angelic
    Quote Originally Posted by mjdandan26 View Post
    #include <windows.h>
    #include <stdio.h>

    #define ADR_PLAYERPOINTER 0x00A86B88
    #define ADR_SERVERPOINTER 0x00A85B30
    #define ADR_HEALTHPOINTER 0x0031FB8
    #define ADR_WEAPONPOINTER 0x00AA4C18
    #define ADR_REMOTEPOINTER 0x00B020D0
    #define ADR_NoSpread1 0x00A8B21C
    #define ADR_NoSpread2 0x00A8B220
    #define ADR_AutoRepair 0x00A84C29
    #define ADR_AutoAmmo 0x00A84C47
    #define ADR_NoSpawnWait 0x00B1B0A4
    #define ADR_FastAmmo 0x00A8B17C
    #define ADR_FastFlag3 0x00A8B194
    #define ADR_Wuw 0x00A8D994
    #define ADR_WeaponReload 0x00A87008

    DWORD *ingame= (DWORD*)ADR_Playerpointer;
    DWORD *outgame= (DWORD*)ADR_Serverpointer;

    void Auto()
    {
    *(int*) ADR_ExtraClip1 = 1;
    *(int*) ADR_ExtraClip2 = 1;
    }

    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    Auto();


    so where are the addys of extraclip?, you didn't declare it

  5. #4
    [PH]Coder's Avatar
    Join Date
    Jan 2014
    Gender
    female
    Location
    #define In_The_House 0x0000
    Posts
    19
    Reputation
    37
    Thanks
    58
    My Mood
    Angelic
    Quote Originally Posted by emiedumalasa View Post
    so where are the addys of extraclip?, you didn't declare it


    Agree.!


    MULTIPLAYER GAMEHACKING
    MPGH member since: January 31, 2014
    Every Coder StartFrom Nothing
    Keep Calm And Learn how to Code.

    [x][x][x][x][x][x][x][x][x][x][x][x][x]







    HIT "THANKS" BUTTON IF I HELP...



  6. #5
    F l a p J a c K ™'s Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    WarRock PH Force
    Posts
    1,737
    Reputation
    10
    Thanks
    1,472
    My Mood
    Bitchy
    Quote Originally Posted by [PH]Coder View Post

    YOUR WORK ARE WRONG!

    THIS IS THE RIGHT Coding :

    Code:
    #include <windows.h>
    #include <stdio.h>
    
    #define ADR_PLAYERPOINTER 0x0A86B88
    #define ADR_SERVERPOINTER 0x0A85B30
    #define ADR_GlassWall 0x0A84CC4
    
    DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
    DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
    
    void gwall()
    {
    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_GlassWall = 1;
    
    else
    {
    *(int*)ADR_GlassWall = 0;}}
    
    
    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    gwall();
    }
    if(*outgame)
    {
    }
    Sleep(200);
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL, "Your Name", "Made by:", MB_OK);
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
    }
    return TRUE;
    }

    Study it and Learn How to Code!


    IF I HELP YOU PLEASE DONT FORGET TO HIT "THANKS" BUTTON.
    give credits you fluppy bird

    A good coder is someone who always looks both ways before crossing a one-way street.
    ~Doug Linder

    Ramzking Injector: Press Here
    MPGH member since: 07-18-2012











  7. #6
    FT.Lovejay's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    2
    My Mood
    Stressed
    san po nira'runtime po yang code?! ^_^ and pano po gumawa/encode ng injectors?! thanks po! ^_^

  8. #7
    joshua09joshua09's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Marikina
    Posts
    101
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive
    Quote Originally Posted by [PH]Coder View Post

    YOUR WORK ARE WRONG!

    THIS IS THE RIGHT Coding :

    Code:
    #include <windows.h>
    #include <stdio.h>
    
    #define ADR_PLAYERPOINTER 0x0A86B88
    #define ADR_SERVERPOINTER 0x0A85B30
    #define ADR_GlassWall 0x0A84CC4
    
    DWORD *ingame = (DWORD*)ADR_PLAYERPOINTER;
    DWORD *outgame = (DWORD*)ADR_SERVERPOINTER;
    
    void gwall()
    {
    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_GlassWall = 1;
    
    else
    {
    *(int*)ADR_GlassWall = 0;}}
    
    
    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    gwall();
    }
    if(*outgame)
    {
    }
    Sleep(200);
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL, "Your Name", "Made by:", MB_OK);
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
    }
    return TRUE;
    }

    Study it and Learn How to Code!


    IF I HELP YOU PLEASE DONT FORGET TO HIT "THANKS" BUTTON.
    You only declare the glasswall Where is the NoRecoil? SNS? NoSpawnWait? DefuseAnywhere? FastStamina? Nagpapaturo sya lahat ng snippet ng nakalagay sa function nya XD

  9. #8
    suarnie's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    11
    My Mood
    Stressed
    tama ba ung code nyu jan.. sir.. ung post nyu..

  10. #9
    joshuasajor50's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    12
    My Mood
    Blah
    Quote Originally Posted by suarnie View Post
    tama ba ung code nyu jan.. sir.. ung post nyu..
    ha? indi ko gets?
    Last edited by joshuasajor50; 04-10-2014 at 07:14 AM.
    ojhem`s helping fan

     
    -This Is Me But Edited As Pain/Naruto Shipuden

    My Idol Jhem AWSOME
    *Im A Little Anoying
    *But Sweet

  11. #10
    joshuasajor50's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    12
    My Mood
    Blah
    Quote Originally Posted by joshua09joshua09 View Post
    You only declare the glasswall Where is the NoRecoil? SNS? NoSpawnWait? DefuseAnywhere? FastStamina? Nagpapaturo sya lahat ng snippet ng nakalagay sa function nya XD
    ahahaha the bully
    ojhem`s helping fan

     
    -This Is Me But Edited As Pain/Naruto Shipuden

    My Idol Jhem AWSOME
    *Im A Little Anoying
    *But Sweet

  12. #11
    joshua09joshua09's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Marikina
    Posts
    101
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive
    Turuan na yan ng dumami na mga coders XD i mean feeling coders XD I'm sorry

  13. #12
    suarnie's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    11
    My Mood
    Stressed
    outdated na yan... wla bang bagong updated.. offset at addys, pointer?

  14. #13
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,393
    My Mood
    Stressed
    Quote Originally Posted by suarnie View Post
    outdated na yan... wla bang bagong updated.. offset at addys, pointer?
    If you need Updated Addys.
    WarRock Addys

Similar Threads

  1. [Help] GUYS PANO PO BA MAG INJECT NG TAMA????
    By hammad22 in forum WarRock Philippines Hacks
    Replies: 5
    Last Post: 01-04-2013, 05:28 PM
  2. [Help] Tama ba tong Addies na toh?
    By Ghost304 in forum WarRock Philippines Hacks
    Replies: 8
    Last Post: 01-02-2013, 04:45 PM
  3. [Help Request] GUYS PANO PO BA MAG INJECT NG TAMA????
    By hammad22 in forum WarRock Help
    Replies: 0
    Last Post: 12-30-2012, 06:46 PM
  4. [Help] pa CP naman poh ung tama PLS .. d na ako marunong
    By alihpot in forum WarRock Philippines Hacks
    Replies: 9
    Last Post: 11-14-2012, 08:11 PM