Results 1 to 13 of 13
  1. #1
    Amatowarrior's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    629
    Reputation
    14
    Thanks
    102
    My Mood
    Inspired

    Question [Noob]Problem with my hacks

    EDIT: COMPLETELY SOLVED (Thanks Ac1d and CodeDemon)
    /Request Close
    Last edited by Amatowarrior; 09-27-2010 at 07:53 PM.
    Tools UNDETECTED - PATCHED [I will only have recent versions up!]
    Tapper V1.15: https://www.mpgh.net/forum/164-combat...r-v1-15-a.html
    Amato Inject V1.15: https://www.mpgh.net/forum/292-combat...t-v1-15-a.html

    Mods
    L96A1 - Arctic Wolf
    Super M416 CQB
    Super M16A3
    MW2 M92FS (M9)
    Starcraft 2 L96A1

    PVT VIP
    Aimbot: 65% (Have full source code)
    OPK: 100% (Uses Enemy Class)
    Telekill: 100% (Uses Enemy Class)
    Ghost Mode: 80% (In Semi-Stages)
    Super Bullets: 100% (Thanks Deadlinez/hahaz!)
    Menu Sprite: 100% (Thanks whit!)



  2. #2
    Mr.Magicman's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Sitting in my cave full of thoughts learning Asembly
    Posts
    2,102
    Reputation
    16
    Thanks
    649
    My Mood
    Cold
    make a thread and make sure the chams var is being alterd

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

    Amatowarrior (09-27-2010)

  4. #3
    Amatowarrior's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    629
    Reputation
    14
    Thanks
    102
    My Mood
    Inspired
    Quote Originally Posted by Mr.Magicman View Post
    make a thread and make sure the chams var is being alterd
    It's altered, just gotta make a thread for it, I guess.
    Tools UNDETECTED - PATCHED [I will only have recent versions up!]
    Tapper V1.15: https://www.mpgh.net/forum/164-combat...r-v1-15-a.html
    Amato Inject V1.15: https://www.mpgh.net/forum/292-combat...t-v1-15-a.html

    Mods
    L96A1 - Arctic Wolf
    Super M416 CQB
    Super M16A3
    MW2 M92FS (M9)
    Starcraft 2 L96A1

    PVT VIP
    Aimbot: 65% (Have full source code)
    OPK: 100% (Uses Enemy Class)
    Telekill: 100% (Uses Enemy Class)
    Ghost Mode: 80% (In Semi-Stages)
    Super Bullets: 100% (Thanks Deadlinez/hahaz!)
    Menu Sprite: 100% (Thanks whit!)



  5. #4
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    You cant just have a function do anything without it being called. You have to call the function in a thread and then hook the thread.

    You're sig is trollin' /

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

    Amatowarrior (09-27-2010)

  7. #5
    Amatowarrior's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    629
    Reputation
    14
    Thanks
    102
    My Mood
    Inspired
    Quote Originally Posted by CodeDemon View Post
    You cant just have a function do anything without it being called. You have to call the function in a thread and then hook the thread.

    You're sig is trollin' /
    I dont know how to do that, i'm a noob in C++, I'm learning by lookin at bases

    EDIT: I got it semi-working, stuff like FPS works now, but when I go ingame, I lag out when the map loads. Is it my Sleep? Or that I have 21 Hacks on /

    EDIT2: I tried again with no hacks on and I still froze
    Last edited by Amatowarrior; 09-27-2010 at 01:19 PM.
    Tools UNDETECTED - PATCHED [I will only have recent versions up!]
    Tapper V1.15: https://www.mpgh.net/forum/164-combat...r-v1-15-a.html
    Amato Inject V1.15: https://www.mpgh.net/forum/292-combat...t-v1-15-a.html

    Mods
    L96A1 - Arctic Wolf
    Super M416 CQB
    Super M16A3
    MW2 M92FS (M9)
    Starcraft 2 L96A1

    PVT VIP
    Aimbot: 65% (Have full source code)
    OPK: 100% (Uses Enemy Class)
    Telekill: 100% (Uses Enemy Class)
    Ghost Mode: 80% (In Semi-Stages)
    Super Bullets: 100% (Thanks Deadlinez/hahaz!)
    Menu Sprite: 100% (Thanks whit!)



  8. #6
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Code:
    DWORD WINAPI dwFunkyThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(200);
    
    CALLHACKSHERE();
    
    return 0;
    
    }
    Then create the thread in DLL Main on process attach,

    Code:
    CreateThread(NULL, NULL, dwFunkyThread, NULL, NULL, NULL);
    Now that wasnt hard, was it? /

  9. #7
    Amatowarrior's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    629
    Reputation
    14
    Thanks
    102
    My Mood
    Inspired
    Quote Originally Posted by CodeDemon View Post
    Code:
    DWORD WINAPI dwFunkyThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(200);
    
    CALLHACKSHERE();
    
    return 0;
    
    }
    Then create the thread in DLL Main on process attach,

    Code:
    CreateThread(NULL, NULL, dwFunkyThread, NULL, NULL, NULL);
    Now that wasnt hard, was it? /
    I did that before you posted, now read the edits /
    Tools UNDETECTED - PATCHED [I will only have recent versions up!]
    Tapper V1.15: https://www.mpgh.net/forum/164-combat...r-v1-15-a.html
    Amato Inject V1.15: https://www.mpgh.net/forum/292-combat...t-v1-15-a.html

    Mods
    L96A1 - Arctic Wolf
    Super M416 CQB
    Super M16A3
    MW2 M92FS (M9)
    Starcraft 2 L96A1

    PVT VIP
    Aimbot: 65% (Have full source code)
    OPK: 100% (Uses Enemy Class)
    Telekill: 100% (Uses Enemy Class)
    Ghost Mode: 80% (In Semi-Stages)
    Super Bullets: 100% (Thanks Deadlinez/hahaz!)
    Menu Sprite: 100% (Thanks whit!)



  10. #8
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    How are you rendering your hacks? Post the whole function.

  11. #9
    Amatowarrior's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    629
    Reputation
    14
    Thanks
    102
    My Mood
    Inspired
    EDIT: Read top of thread
    Last edited by Amatowarrior; 09-27-2010 at 04:12 PM.
    Tools UNDETECTED - PATCHED [I will only have recent versions up!]
    Tapper V1.15: https://www.mpgh.net/forum/164-combat...r-v1-15-a.html
    Amato Inject V1.15: https://www.mpgh.net/forum/292-combat...t-v1-15-a.html

    Mods
    L96A1 - Arctic Wolf
    Super M416 CQB
    Super M16A3
    MW2 M92FS (M9)
    Starcraft 2 L96A1

    PVT VIP
    Aimbot: 65% (Have full source code)
    OPK: 100% (Uses Enemy Class)
    Telekill: 100% (Uses Enemy Class)
    Ghost Mode: 80% (In Semi-Stages)
    Super Bullets: 100% (Thanks Deadlinez/hahaz!)
    Menu Sprite: 100% (Thanks whit!)



  12. #10
    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
    Me guessing you have a shit load of sleep functions.
    Sleep(200): at the end of the hacks and thats all you need

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

    Amatowarrior (09-27-2010)

  14. #11
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    it might also be your ptc function post it here





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  15. #12
    Amatowarrior's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    629
    Reputation
    14
    Thanks
    102
    My Mood
    Inspired
    Quote Originally Posted by GodHack2 View Post
    it might also be your ptc function post it here
    Can't be, I tried again with only 5 hacks and it worked fine, with 41 hacks (PVT) everyone freezes like i'm tapping, I take hitmarkers but no damage, and I crash after 2 minutes, the more hacks I remove, the better it gets, i'm removing all the hacks that are pointless or I don't like.

    Quote Originally Posted by ac1d_buRn View Post
    Me guessing you have a shit load of sleep functions.
    Sleep(200): at the end of the hacks and thats all you need
    I never had a sleep except for when the game hooked, that was the problem, so I added one in my main void, annnnnnnd It worked. NO LAG WITH GREEN FPS HOLY SHIVIC (42 Hacks on at the same time)! Thanks for the info.
    /Solved, Request Close
    Last edited by Amatowarrior; 09-27-2010 at 07:54 PM.
    Tools UNDETECTED - PATCHED [I will only have recent versions up!]
    Tapper V1.15: https://www.mpgh.net/forum/164-combat...r-v1-15-a.html
    Amato Inject V1.15: https://www.mpgh.net/forum/292-combat...t-v1-15-a.html

    Mods
    L96A1 - Arctic Wolf
    Super M416 CQB
    Super M16A3
    MW2 M92FS (M9)
    Starcraft 2 L96A1

    PVT VIP
    Aimbot: 65% (Have full source code)
    OPK: 100% (Uses Enemy Class)
    Telekill: 100% (Uses Enemy Class)
    Ghost Mode: 80% (In Semi-Stages)
    Super Bullets: 100% (Thanks Deadlinez/hahaz!)
    Menu Sprite: 100% (Thanks whit!)



  16. #13
    Ali's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Qc, Canada
    Posts
    11,450
    Reputation
    342
    Thanks
    3,518
    My Mood
    Cool
    /Closed, requested by OP .

Similar Threads

  1. Got a problem with a hack? Need some help? Then add me on xfire!
    By FatEmoLLaMa in forum Combat Arms Help
    Replies: 3
    Last Post: 10-02-2009, 05:39 PM
  2. Having problems with the hack? Post them here.
    By Ryguy in forum Combat Arms Hacks & Cheats
    Replies: 333
    Last Post: 12-23-2008, 10:20 PM
  3. Problem with STW Hack
    By m3ltino in forum WarRock - International Hacks
    Replies: 2
    Last Post: 05-25-2008, 04:02 PM
  4. Problem with my hack.
    By Obey in forum Visual Basic Programming
    Replies: 2
    Last Post: 04-25-2008, 09:18 AM
  5. Problem with a hack
    By Nikko42 in forum WarRock - International Hacks
    Replies: 8
    Last Post: 09-02-2007, 09:57 PM

Tags for this Thread