Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    +Boss_Bing+'s Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    77
    Reputation
    10
    Thanks
    2

    cant create my own hack (error debug)

    mga sir,idol,master,help naman po hindi po ako makapag create ng hack ko,kasi failed lagi sa debug.

    Code:
    1>------ Build started: Project: boss, Configuration: Debug Win32 ------
    1>  bossbing.cpp
    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(49): error C2065: 'ADR_STAMINA' : undeclared identifier
    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(68): error C2065: 'OFS_NoRecoil1' : undeclared identifier
    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(69): error C2065: 'OFS_NoRecoil2' : undeclared identifier
    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(70): error C2065: 'OFS_NoRecoil3' : undeclared identifier
    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(74): error C2065: 'OFS_Nfd' : undeclared identifier
    ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
    hindi ko po makita kung saan ang error,at yung identifier po ng bawat error..

    eto po yung codes ko.

    Code:
    #include <windows.h>
    #include <stdio.h>
    
    (may addies list)
    
    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;
    }
    help naman po kung pano ma icorrect yung mga errors..

    ---------- Post added at 03:10 PM ---------- Previous post was at 03:02 PM ----------

    eto pa yung natitirang error na fix na yung una,, thanks to BHPH.

    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(68): error C2065: 'OFS_NoRecoil1' : undeclared identifier
    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(69): error C2065: 'OFS_NoRecoil2' : undeclared identifier
    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(70): error C2065: 'OFS_NoRecoil3' : undeclared identifier
    1>c:\documents and settings\boss bing\my documents\visual studio 2010\projects\boss\boss\bossbing.cpp(74): error C2065: 'OFS_Nfd' : undeclared identifier


    ato naman po yung nasa source code

    Code:
    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;
    (

  2. #2
    MJCreado's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Germany
    Posts
    557
    Reputation
    58
    Thanks
    810
    My Mood
    Bored
    Code:
    #define OFS_NoRecoil1 0x00000C444
    #define OFS_NoRecoil2 0x00000C44C
    #define OFS_NoRecoil3 0x00000C448
    #define OFS_Nfd 0x00102E8

  3. #3
    .Joker's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Gotham
    Posts
    1,205
    Reputation
    10
    Thanks
    732
    My Mood
    Psychedelic
    You should have updated addies, and Visual C++ is case sensitive.

  4. #4
    iiNOOBz's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    #include <me.NOObz>
    Posts
    13
    Reputation
    10
    Thanks
    35
    My Mood
    Hot
    Quote Originally Posted by MJCreado View Post
    Code:
    #define OFS_NoRecoil1 0x00000C444
    #define OFS_NoRecoil2 0x00000C44C
    #define OFS_NoRecoil3 0x00000C448
    #define OFS_Nfd 0x00102E8
    AND AFTER THAT CHANGE DEBUG TO RELEASE PARA HINDI MA GAMEGUARD
    Thanks For Helping!


    CODING

  5. #5
    +Boss_Bing+'s Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    77
    Reputation
    10
    Thanks
    2
    can someone tell me bakit po hindi gumagana ang release ko? succesfull debug at release naman po.. working naman ang mga addies..
    bakit kapag inject ko yung dll ko at pag open ko ng warrock parang naglalaro lang ako ng normal (no cheat game).

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

    (YOUR ADDIES HERE, BE SURE IT'S UPDATED!)

    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*)ADR_FullBright1 = 1092779973;
    *(int*)ADR_FullBright2 = 1092779973;
    *(int*)ADR_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);
    }
    }
    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;
    }




    PUT CREDITS IF I HELP
    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

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

    +Boss_Bing+ (02-21-2013)

  8. #7
    [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
    Quote Originally Posted by iiNOOBz View Post
    AND AFTER THAT CHANGE DEBUG TO RELEASE PARA HINDI MA GAMEGUARD

    Warrock PH Coders United members..

    Pag-sabihan niyo tong @
    iiNOOBz


  9. #8
    FroZeNeYe's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    518
    Reputation
    10
    Thanks
    74
    My Mood
    Sleepy
    it's need a requirements to dude to work the hack

  10. #9
    iiNOOBz's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    #include <me.NOObz>
    Posts
    13
    Reputation
    10
    Thanks
    35
    My Mood
    Hot
    Quote Originally Posted by [W]eb[C]ombat View Post



    Warrock PH Coders United members..

    Pag-sabihan niyo tong @
    iiNOOBz
    PROBLEM PO ? AHIHIIH xD ! MALI LANG UNG MAG KA QUOTE KO AHIHIHIH
    Thanks For Helping!


    CODING

  11. #10
    underpresure's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    Umbrella Corporation
    Posts
    491
    Reputation
    10
    Thanks
    245
    My Mood
    Twisted
    @iiNOOBz

    Ang mean nya ay dapat mo pong unawain ang errors sa coding mo ^^


    I WAS KNOWN FOR:
    [ Public Release ]
    NoScreenShake + NoMuzzleFlash + AntiMine + AntiM14[] - HideIGN[√new]

    [ Private Hack ]
    NRHeavyTroop[] - PlayerFreeze[] - NoGravityGrenade[] - HideVehicle[√new]

    +++++         HACKING IS NOT A CRIME, IT IS A TALENT         +++++

    Being insecure is a sign of not being completly satisfied with yourself.
    You feel as if someone can easily take your spot!

  12. The Following User Says Thank You to underpresure For This Useful Post:

    +Boss_Bing+ (02-21-2013)

  13. #11
    .Joker's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Gotham
    Posts
    1,205
    Reputation
    10
    Thanks
    732
    My Mood
    Psychedelic
    HAHAHA 'para hindi ma gameguard'

  14. #12
    KenshinCoder's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    280
    Reputation
    10
    Thanks
    389
    My Mood
    Relaxed
    Quote Originally Posted by 3dVision View Post
    HAHAHA 'para hindi ma gameguard'
    nyahahahah,
    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

  15. #13
    [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....


  16. #14
    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 [W]eb[C]ombat View Post
    Zzzzzzzzzzzzzz....
    Spam Master @[W]eb[C]ombat

    /

  17. #15
    +Boss_Bing+'s Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    77
    Reputation
    10
    Thanks
    2
    hi to all, thanks for your help guys, specially to BHPH,
    nakagawa na po ako ng sarili ko pong hack..

    i created two release for my self,one simple hack and one abusive.
    i did this to explore the games,at maramdaman kung ano pakiramdam ng isang cheater sa warrock
    and ofcourse gagamitin ko lang ito para sa AI channel,para makabawi naman ako sa warrock dahil sa dami ng load na nabili ko noon.

    again,maraming salamat po ulit sa mga nag effort na turuan ako,it takes 5 days for me to understand this.
    from zero knowledge to new coder hindi ko po magagawa ito kung hindi dahil sa tulong nyo.

    after 5 days ng pag aaral sa tulong ng mga idol ko dito, nakagawa na ako ng sarili kong injector


    thank you,thank you,thank you,thank you, po...

    special thanks to BHPH,3dvision,kenshincoder,frozeneye..
    Last edited by +Boss_Bing+; 02-22-2013 at 08:19 PM.

Page 1 of 2 12 LastLast

Similar Threads

  1. [Tutorial] How to creating your own hacks in Ava and other games
    By Blackhandal in forum Alliance of Valiant Arms (AVA) Tutorials
    Replies: 5
    Last Post: 11-07-2012, 07:40 AM
  2. [Release] Server HostData - Create your own Server Hack
    By Jorndel in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 23
    Last Post: 09-26-2012, 10:38 AM
  3. [Help] Creating your own hack
    By enzodb1997 in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 2
    Last Post: 08-30-2012, 09:55 AM
  4. how to creat your own cheat/hacks
    By jokong105 in forum CrossFire PH Help
    Replies: 10
    Last Post: 04-24-2012, 12:53 AM
  5. I GOT ERROR WIT "HOW TO MAKE YOUR OWNS HACKS"
    By LiL-kILLER in forum Combat Arms Hacks & Cheats
    Replies: 47
    Last Post: 07-17-2009, 01:25 PM