Page 4 of 8 FirstFirst ... 23456 ... LastLast
Results 46 to 60 of 111
  1. #46
    swatfx's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    659
    Reputation
    20
    Thanks
    108
    My Mood
    Mellow
    Quote Originally Posted by kotentopf View Post
    ok but it is also crashing if im using the healthbar...

    at first i see now healtbar after login->CRASH
    maybe it will crash if u show it not in game?

    try only showing it in game

  2. #47
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by kotentopf View Post
    ok but it is also crashing if im using the healthbar...

    at first i see now healtbar after login->CRASH
    So you had it working before? And i only crash if I draw it wrong or something.
    Dont ban me

  3. #48
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    sory for the "w" i mean that i saw it not...

    it is also crashing if it is not showing up...
    i made:

    if(GetAsyncKeyState(VK_NUMPAD0)){
    DrawHealthbar(200,200,100,10,0xFF00FF00,0xFFFFFFFF ,pMain->goToInfoClass->iCurrentHealth,pMain->goToInfoClass->iMaxHealth);}

    Crash after Login(have not pressed the key! and if im not using this code, no crash...)
    Last edited by kotentopf; 08-21-2010 at 04:54 AM.

  4. #49
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by kotentopf View Post
    hmmm always if im use it the game is crashing..


    Main *pMain = (Main*)0x377CF260;//0x377AAE80;

    Directx.DrawString(200,200,0xFFFFFFFF,Directx.pFon t,(const char*) pMain->goToInfoClass->iWeaponSlotInUse);
    Try:
    char sKills[256];

    sprintf(sKills,"[ Weapon Slot: %d ]", pMain->goToInfoClass->iWeaponSlotInUse);
    Directx.DrawString(200,200,0xFFFFFFFF,Directx.pFon t,sKills);

  5. The Following User Says Thank You to ac1d_buRn For This Useful Post:

    ᶠᶸᶜᵏ (10-31-2010)

  6. #50
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by ac1d_buRn View Post


    Try:
    char sKills[256];

    sprintf(sKills,"[ Weapon Slot: %d ]", pMain->goToInfoClass->iWeaponSlotInUse);
    Directx.DrawString(200,200,0xFFFFFFFF,Directx.pFon t,sKills);
    No I'm betting he declares that globally before CShell is loaded which makes it null = D/C.

  7. #51
    cosconub's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    in the programming section MPGH Cash: $90,000,000,000
    Posts
    372
    Reputation
    -4
    Thanks
    39
    My Mood
    Psychedelic
    this is like gordons i use a simple PTC thanks for sharing crash

  8. #52
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by ac1d_buRn View Post


    Try:
    char sKills[256];

    sprintf(sKills,"[ Weapon Slot: %d ]", pMain->goToInfoClass->iWeaponSlotInUse);
    Directx.DrawString(200,200,0xFFFFFFFF,Directx.pFon t,sKills);
    Just so you know, that would Print 0
    Dont ban me

  9. #53
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    hmm this d/c me when i try to activate it

    EDIT :Nvm i got it to work
    Last edited by GodHack2; 08-22-2010 at 05:12 AM.





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  10. #54
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Make sure that CShell is loaded before initializing it or else it will crash when you try to use it.

  11. #55
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    founded one thing

    class Info
    {
    public:
    char unknown0[8];
    __int32 Unknown1; //0008
    __int32 iCurrentHealth; //000C
    __int32 iCurrentAP //0010<---- founded by kotentopf
    __int32 iMaxHealth; //0014
    char unknown3[4];
    WepInfo* goToWepInfo;//001C
    Something* goToSomething; //0020
    char unknown4[348];
    float fStamina; //0180
    char unknown5[8];
    __int32 iWeaponSlotInUse; //018C
    float fCameraSomething; //0190
    float fCameraSomething2; //0194
    float fCameraSomething3; //0198
    char unknown6[32];
    Stats* goToStats; //01BC
    };

  12. #56
    markoj's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    s
    Posts
    1,064
    Reputation
    60
    Thanks
    407
    My Mood
    Bored
    Quote Originally Posted by kotentopf View Post
    founded one thing

    class Info
    {
    public:
    char unknown0[8];
    __int32 Unknown1; //0008
    __int32 iCurrentHealth; //000C
    __int32 iCurrentAP //0010<---- founded by kotentopf
    __int32 iMaxHealth; //0014
    char unknown3[4];
    WepInfo* goToWepInfo;//001C
    Something* goToSomething; //0020
    char unknown4[348];
    float fStamina; //0180
    char unknown5[8];
    __int32 iWeaponSlotInUse; //018C
    float fCameraSomething; //0190
    float fCameraSomething2; //0194
    float fCameraSomething3; //0198
    char unknown6[32];
    Stats* goToStats; //01BC
    };
    Nice! Howd you find it, random guessing lol?
    Dont ban me

  13. #57
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    Quote Originally Posted by markoj View Post
    Nice! Howd you find it, random guessing lol?
    i made an copy of it into reclass and looking for changed values while im was not playing into a 8vs8 match. than i saw the AP ^^

  14. The Following User Says Thank You to kotentopf For This Useful Post:

    markoj (08-28-2010)

  15. #58
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by kotentopf View Post
    i made an copy of it into reclass and looking for changed values while im was not playing into a 8vs8 match. than i saw the AP ^^
    How'd you get relcass to work. I wanna tear this bitch apart.

  16. The Following User Says Thank You to Crash For This Useful Post:

    JDeezy (08-28-2010)

  17. #59
    Hahaz's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    Matrix World
    Posts
    1,170
    Reputation
    64
    Thanks
    4,091
    My Mood
    Bored
    FheRRaZ send me his menu:



    What u think?

  18. #60
    Braco22's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    150
    Reputation
    12
    Thanks
    607
    Quote Originally Posted by hahaz View Post
    FheRRaZ send me his menu:



    What u think?
    Mind sharing the name tags?

Page 4 of 8 FirstFirst ... 23456 ... LastLast

Similar Threads

  1. [Help]Problem with Player Stats?
    By mastermods in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 7
    Last Post: 08-26-2010, 05:26 AM
  2. How to add Soldier Stats to Signature
    By SXE BOI in forum CrossFire Tutorials
    Replies: 0
    Last Post: 06-30-2010, 05:59 PM
  3. PLAYER STATS
    By xkostasx7 in forum Call of Duty Modern Warfare 2 Help
    Replies: 5
    Last Post: 02-04-2010, 09:45 AM
  4. [Release] Player Stats Hack | Level 70 HACK |
    By Gravemind1 in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 64
    Last Post: 01-16-2010, 05:30 PM
  5. [Release] Player Stats Hack 2.0 | Level 70 HACK | TIME PLAYED HACK
    By Gravemind1 in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 235
    Last Post: 01-13-2010, 06:07 PM