Results 1 to 10 of 10
  1. #1
    DeepShyt's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    6

    What is wrong with my hack..

    Hi,
    I used Deadhell hack base, I used his method to make my hack work but unfortunately when i debug my Pc goes Crashed. Any Help/

  2. #2
    Dead(H)ell's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Earth
    Posts
    471
    Reputation
    37
    Thanks
    715
    My Mood
    Flirty
    ur system is shit this is the reason..no offence

  3. #3
    DeepShyt's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    6
    Quote Originally Posted by Dead(H)ell View Post
    ur system is shit this is the reason..no offence
    Nop. Before it used to work.. after than i used detected code it debuged well.. when i put your code my PC just crashed.

  4. #4
    Dead(H)ell's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Earth
    Posts
    471
    Reputation
    37
    Thanks
    715
    My Mood
    Flirty
    Quote Originally Posted by DeepShyt View Post
    Nop. Before it used to work.. after than i used detected code it debuged well.. when i put your code my PC just crashed.
    i didnt know my code was such a crasher lol it works fine here

  5. #5
    DeepShyt's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    6
    Quote Originally Posted by Dead(H)ell View Post


    i didnt know my code was such a crasher lol it works fine here
    sorry, if you though in different way... maybe my C++ program i will try to fix it atleast you came to my thread and Dicused about it Thanks for that.

  6. #6
    Dead(H)ell's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Earth
    Posts
    471
    Reputation
    37
    Thanks
    715
    My Mood
    Flirty
    Quote Originally Posted by DeepShyt View Post
    sorry, if you though in different way... maybe my C++ program i will try to fix it atleast you came to my thread and Dicused about it Thanks for that.
    uw and i could help on TV[team viewer] too if u want but ot now cuz i ve school 2moro

  7. #7
    DeepShyt's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    187
    Reputation
    10
    Thanks
    6
    Quote Originally Posted by Dead(H)ell View Post


    uw and i could help on TV[team viewer] too if u want but ot now cuz i ve school 2moro
    oh ok thanks for support.

  8. #8
    Dead(H)ell's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Location
    Earth
    Posts
    471
    Reputation
    37
    Thanks
    715
    My Mood
    Flirty
    Quote Originally Posted by DeepShyt View Post
    oh ok thanks for support.
    uw anytime

  9. The Following User Says Thank You to Dead(H)ell For This Useful Post:

    DeepShyt (03-25-2012)

  10. #9
    twixxxx's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    1
    My Mood
    Asleep
    i need help with my base.

    it always gets caught by X-Trap i have no idea why, perhaps my addresses are wrong??

    #include "windows.h"
    #define WeaponMgr 0xAB2940
    #define NoRecoil1 0x53C
    #define NoRecoil2 0x6A4
    #define NoRecoil3 0x1958
    #define NoRecoil4 0x1964
    #define NoRecoil5 0x1FC0
    #define NoRecoil6 0x2128
    #define NoRecoil7 0x2290
    using namespace std;

    DWORD WINAPI hack1(LPVOID param) {
    bool noreload = true;
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD Wapenclass = *(PDWORD)(CShell + WeaponMgr);

    int main();

    while(true) {
    for(int i=0 ; i<637 ; i++) {
    for(int y = 0; y<10; y++)
    {
    DWORD curwapen = *(DWORD*)(Wapenclass +(4*i));
    if (curwapen) {
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil1) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil2) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil3) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil4) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil5) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil6) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil7) = 0.0f;
    }
    }
    }
    }
    return true;
    }

    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    if (dwReason == DLL_PROCESS_ATTACH)
    {
    }
    if (GetModuleHandleA("CShell.dll") && GetModuleHandleA("ClientFx.Fxd") )
    {

    DisableThreadLibraryCalls(hDll);
    SetTimer(0,0,100,(TIMERPROC)hack1);
    }
    return TRUE;
    }

  11. #10
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    Quote Originally Posted by twixxxx View Post
    i need help with my base.

    it always gets caught by X-Trap i have no idea why, perhaps my addresses are wrong??

    #include "windows.h"
    #define WeaponMgr 0xAB2940
    #define NoRecoil1 0x53C
    #define NoRecoil2 0x6A4
    #define NoRecoil3 0x1958
    #define NoRecoil4 0x1964
    #define NoRecoil5 0x1FC0
    #define NoRecoil6 0x2128
    #define NoRecoil7 0x2290
    using namespace std;

    DWORD WINAPI hack1(LPVOID param) {
    bool noreload = true;
    DWORD CShell = (DWORD)GetModuleHandleA("CShell.dll");
    DWORD Wapenclass = *(PDWORD)(CShell + WeaponMgr);

    int main();

    while(true) {
    for(int i=0 ; i<637 ; i++) {
    for(int y = 0; y<10; y++)
    {
    DWORD curwapen = *(DWORD*)(Wapenclass +(4*i));
    if (curwapen) {
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil1) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil2) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil3) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil4) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil5) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil6) = 0.0f;
    *(float*)((((*(DWORD*)(CShell+WeaponMgr)) +(4*y))) + NoRecoil7) = 0.0f;
    }
    }
    }
    }
    return true;
    }

    BOOL WINAPI DllMain(HMODULE hDll, DWORD dwReason, LPVOID lpReserved)
    {
    if (dwReason == DLL_PROCESS_ATTACH)
    {
    }
    if (GetModuleHandleA("CShell.dll") && GetModuleHandleA("ClientFx.Fxd") )
    {

    DisableThreadLibraryCalls(hDll);
    SetTimer(0,0,100,(TIMERPROC)hack1);
    }
    return TRUE;
    }
    Don't bump old threads and post your problem there, open a new one

Similar Threads

  1. [Help] Whats wrong with my hack?
    By TGH Zero. in forum WarRock Hack Source Code
    Replies: 14
    Last Post: 11-21-2010, 07:35 AM
  2. what is wrong with this ??
    By floris12345! in forum Visual Basic Programming
    Replies: 5
    Last Post: 01-16-2008, 05:22 PM
  3. What is wrong with my form?
    By Synns in forum Visual Basic Programming
    Replies: 1
    Last Post: 12-18-2007, 04:27 PM
  4. what is wrong with this source?
    By Petros in forum C++/C Programming
    Replies: 6
    Last Post: 07-04-2007, 04:33 PM
  5. What's wrong with MPGH
    By scooby107 in forum WarRock - International Hacks
    Replies: 6
    Last Post: 04-30-2007, 07:45 PM