Results 1 to 6 of 6
  1. #1
    +Boss_Bing+'s Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    77
    Reputation
    10
    Thanks
    2

    where to place the snippets?

    2nd day palang po as noob coder..
    itatanong ko lang po kung saan ilalagay yung mga snippets?

    for example:
    No fall damage
    Code:
    void NFD()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_PlayerPointer;
    if(dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+OFS_NFD) = -10000;
    }
    }
    saan ko po siya ilalagay sa base source? saan exact location isisingit iyang snippets?

    eto po example ng base source ko.

    Code:
    #include <windows.h>
    #include <stdio.h>
    
    
    #define ADR_Playerpointer 0x00ABF51C
    #define ADR_Serverpointer 0x009B93C0
    #define ADR_GlassWall 0x00946C7C
    #define ADR_SNS 0x007E75D0
    #define OFS_NoRecoil1 0x00C444
    #define OFS_NoRecoil2 0x00C448
    #define OFS_NoRecoil3 0x00C44C
    #define OFS_Nfd 0x00102E8
    #define ADR_STAMINA 0x007E50AC
    #define FullBright1 0x00946CE4
    #define FullBright2 0x00946CE0
    #define FullBright3 0x00946CDC
    
    
    DWORD *ingame= (DWORD*)ADR_Playerpointer;
    DWORD *outgame= (DWORD*)ADR_Serverpointer;
    
    void unlisp()
    {
    *(float*)ADR_STAMINA = 1000000;
    }
    
    void glasswall()
    {
    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_GlassWall = 1;
    else
    {
    *(int*)ADR_GlassWall = 0;
    }
    }
       
    
    
    void Automatic()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_Playerpointer;
    if(dwPlayerPtr != 0)
    *(float*)(dwPlayerPtr+OFS_NoRecoil1) = 0;
    *(float*)(dwPlayerPtr+OFS_NoRecoil2) = 0;
    *(float*)(dwPlayerPtr+OFS_NoRecoil3) = 0;
    *(int*)FullBright1 = 1092779973;
    *(int*)FullBright2 = 1092779973;
    *(int*)FullBright3 = 1092779973;
    *(float*)(dwPlayerPtr+OFS_Nfd) = -2000;
    }
    
    
    void SuperNoSpread()
    {
    if(GetKeyState(VK_DELETE))
    *(double*) ADR_SNS = 0;
    
    else
    {
    *(double*) ADR_SNS = 5;
    }
    }
    
    
    
    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    glasswall();
    unlisp();
    Automatic();
    SuperNoSpread();
    }
    //if(*outgame)
    {
    }
    Sleep(50);
    }
    }
    //--------------------------End HackThread--------------------------//
    
    //--------------------------End--------------------------//
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL,"MESSAGE","HACKED BY YOUR NAME",MB_OK);
    MessageBoxA(NULL,"BHPH™","CREDITS",MB_OK);
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
    }
    return TRUE;
    }
    yan po,saan ko po jan isisingit yung mga snippets na gusto ko idagdag?at bakit po hindi siya ma debug kapag inedit or dinagdagan ko yang base source? halimbawa dadagdagan ko ng codes,pag debug ko siya,failed lagi,pero kapag yang original na base source (not edited) ang ginamit ko,
    na dedebug naman po siya,at narerelease...


    help po sa mga masters jan...thanks a lot.

  2. #2
    FroZeNeYe's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    518
    Reputation
    10
    Thanks
    74
    My Mood
    Sleepy
    put that NFD code where the void place and put NFD inside(*ingame) just ike this

    if(*ingame)
    {
    NFD();
    }

  3. The Following User Says Thank You to FroZeNeYe For This Useful Post:

    +Boss_Bing+ (02-20-2013)

  4. #3
    +Boss_Bing+'s Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    77
    Reputation
    10
    Thanks
    2
    sir frozeneye would you please attache the code NFD code on the right location inside base source?
    paki edit po yung base source tapos paki post po para makita ko po

    for example
    Code:
    #include <windows.h>
    #include <stdio.h>
    
    
    #define ADR_Playerpointer 0x00ABF51C
    #define ADR_Serverpointer 0x009B93C0
    #define ADR_GlassWall 0x00946C7C
    #define ADR_SNS 0x007E75D0
    #define OFS_NoRecoil1 0x00C444
    #define OFS_NoRecoil2 0x00C448
    #define OFS_NoRecoil3 0x00C44C
    #define OFS_Nfd 0x00102E8
    #define ADR_STAMINA 0x007E50AC
    #define FullBright1 0x00946CE4
    #define FullBright2 0x00946CE0
    #define FullBright3 0x00946CDC
    
    
    DWORD *ingame= (DWORD*)ADR_Playerpointer;
    DWORD *outgame= (DWORD*)ADR_Serverpointer;
    
    void unlisp()
    {
    *(float*)ADR_STAMINA = 1000000;
    }
    
    void NFD()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_PlayerPointer;
    if(dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+OFS_NFD) = -10000;
    }
    }
    
    void glasswall()
    {
    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_GlassWall = 1;
    else
    {
    *(int*)ADR_GlassWall = 0;
    }
    }
       
    
    
    void Automatic()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_Playerpointer;
    if(dwPlayerPtr != 0)
    *(float*)(dwPlayerPtr+OFS_NoRecoil1) = 0;
    *(float*)(dwPlayerPtr+OFS_NoRecoil2) = 0;
    *(float*)(dwPlayerPtr+OFS_NoRecoil3) = 0;
    *(int*)FullBright1 = 1092779973;
    *(int*)FullBright2 = 1092779973;
    *(int*)FullBright3 = 1092779973;
    *(float*)(dwPlayerPtr+OFS_Nfd) = -2000;
    }
    
    
    void SuperNoSpread()
    {
    if(GetKeyState(VK_DELETE))
    *(double*) ADR_SNS = 0;
    
    else
    {
    *(double*) ADR_SNS = 5;
    }
    }
    
    
    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    glasswall();
    unlisp();
    Automatic();
    SuperNoSpread();
    }
    //if(*outgame)
    {
    }
    Sleep(50);
    }
    }
    //--------------------------End HackThread--------------------------//
    
    //--------------------------End--------------------------//
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL,"MESSAGE","HACKED BY YOUR NAME",MB_OK);
    MessageBoxA(NULL,"BHPH™","CREDITS",MB_OK);
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
    }
    return TRUE;

    please highlight the code... pasuyo po.

  5. #4
    KenshinCoder's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    389
    My Mood
    Relaxed
    #include <windows.h>
    #include <stdio.h>


    #define ADR_Playerpointer 0x00ABF51C
    #define ADR_Serverpointer 0x009B93C0
    #define ADR_GlassWall 0x00946C7C
    #define ADR_SNS 0x007E75D0
    #define OFS_NoRecoil1 0x00C444
    #define OFS_NoRecoil2 0x00C448
    #define OFS_NoRecoil3 0x00C44C
    #define OFS_Nfd 0x00102E8
    #define ADR_STAMINA 0x007E50AC
    #define FullBright1 0x00946CE4
    #define FullBright2 0x00946CE0
    #define FullBright3 0x00946CDC


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

    void unlisp()
    {
    *(float*)ADR_STAMINA = 1000000;
    }
    void NFD()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_Playerpointer;
    if(dwPlayerPtr != 0)
    {

    *(float*)(dwPlayerPtr+OFS_Nfd) = -10000;
    }
    }
    void glasswall()
    {
    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_GlassWall = 1;
    else
    {
    *(int*)ADR_GlassWall = 0;
    }
    }
    void Automatic()
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_Playerpointer;
    if(dwPlayerPtr != 0)
    *(float*)(dwPlayerPtr+OFS_NoRecoil1) = 0;
    *(float*)(dwPlayerPtr+OFS_NoRecoil2) = 0;
    *(float*)(dwPlayerPtr+OFS_NoRecoil3) = 0;
    *(int*)FullBright1 = 1092779973;
    *(int*)FullBright2 = 1092779973;
    *(int*)FullBright3 = 1092779973;
    *(float*)(dwPlayerPtr+OFS_Nfd) = -2000;
    }
    void SuperNoSpread()
    {
    if(GetKeyState(VK_DELETE))
    *(double*) ADR_SNS = 0;

    else
    {
    *(double*) ADR_SNS = 5;
    }
    }
    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    glasswall();
    unlisp();
    Automatic();
    SuperNoSpread();
    NFD();
    }
    //if(*outgame)
    {
    }
    Sleep(50);
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    MessageBoxA(NULL,"MESSAGE","HACKED BY YOUR NAME",MB_OK);
    MessageBoxA(NULL,"BHPH™","CREDITS",MB_OK);
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
    }
    return TRUE;
    }



    Here you go.. ENJOY HACKING.

    Debug Change to Release
    Last edited by KenshinCoder; 02-20-2013 at 02:16 AM.
    We Win not by Playing Fair, We Do whats necessary.

    -KenshinCoder






    FUCK YOU LEECHERS! DONT LEECH MY CHEAT OR I WILL BITE YOU TO DEATH.


    OUR PAGE CLICK THE LINK.
    https://www.facebook.com/KenSyncHacks?fref=ts

    RESPECT LIST:

    3dVision
    BlackhatPH
    MJCreado
    dungzkii
    Jheamuel123

  6. The Following User Says Thank You to KenshinCoder For This Useful Post:

    +Boss_Bing+ (02-20-2013)

  7. #5
    KenshinCoder's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    389
    My Mood
    Relaxed
    ok naba dude? xDD
    We Win not by Playing Fair, We Do whats necessary.

    -KenshinCoder






    FUCK YOU LEECHERS! DONT LEECH MY CHEAT OR I WILL BITE YOU TO DEATH.


    OUR PAGE CLICK THE LINK.
    https://www.facebook.com/KenSyncHacks?fref=ts

    RESPECT LIST:

    3dVision
    BlackhatPH
    MJCreado
    dungzkii
    Jheamuel123

  8. #6
    [W]eb[C]ombat's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    return TRUE;
    Posts
    390
    Reputation
    10
    Thanks
    1,202
    My Mood
    Sleepy
    Zzzzzzzzzzzzzz


Similar Threads

  1. Crossfire Login - Where to place your the buttons (Coordinates HERE!)
    By Aricx31 in forum CrossFire Mods & Rez Modding
    Replies: 12
    Last Post: 01-02-2013, 06:33 AM
  2. Where to get the latest Photoshop (cracked)
    By hotfudge2100 in forum Art & Graphic Design
    Replies: 4
    Last Post: 06-04-2009, 07:16 PM
  3. >.> where r all the hacks
    By Dragonfre in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 04-25-2009, 10:24 PM
  4. Where to get the Program!? hehe!:P
    By GreatSeb in forum General
    Replies: 17
    Last Post: 04-05-2009, 09:37 PM
  5. The Describing game where you describe the guy above you
    By nubster100 in forum Spammers Corner
    Replies: 2
    Last Post: 11-04-2008, 06:39 PM