Thread: Need Code Help.

Results 1 to 11 of 11
  1. #1
    [CF]Hackers's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Narnia
    Posts
    612
    Reputation
    10
    Thanks
    46

    Need Code Help.

    Hey, I have a hack, Which is all auto on, But when i inject it the message comes up, and i go in game, and it dont work.

    and i was wondering if anyone would tell me where i put

    if(GetAsyncKeyState(VK_F3) || GetAsyncKeyState(VK_NUMPAD0) &1) { myhack = true; Beep(512, 120); }
    For each of my feature.

    Do i put it after the
    )
    )
    )

    for before it?

    Thanks.




  2. #2
    Shane's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    18,826
    Reputation
    2537
    Thanks
    2,074
    My Mood
    Yeehaw
    You should ask someone that is usually in the source code section.
    Crossfire Minion: 28 October 2010
    Official Middleman: 20 September 2012
    Trusted Member: 15 February 2013
    Official Middleman: 11 April 2013
    Official Middleman: 10 January 2015
    ---------------------------------------------------
    Global Moderator: 25 December 2012
    Head Administrator: 21 March 2013


  3. #3
    [CF]Hackers's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Narnia
    Posts
    612
    Reputation
    10
    Thanks
    46
    Hm, Maybe, But it probably would of got moved to the Help Section.




  4. #4
    Takari's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Cross Fire Section
    Posts
    11,889
    Reputation
    574
    Thanks
    1,966
    My Mood
    Cool
    That's leeching and it should go after the while function .
    [IMG]https://i1114.photobucke*****m/albums/k538/ImminentJM/takari.png[/IMG]




     
    Goal:
    10,000 Posts - 10/13/2011
    Become Minion - Not Done
    Become Donator - 07/29/2011
    1000 Thanks - Done - 07/25/2011
    2000 Thanks - Not Done
    Thanks Archangel for my 1,000 Thanks.
    Thanks Keroaplt for my Signature.

  5. #5
    [CF]Hackers's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Narnia
    Posts
    612
    Reputation
    10
    Thanks
    46
    Quote Originally Posted by Helper View Post
    That's leeching and it should go after the while function .
    How is it leeching @Helper

    I didn't copy and paste it from somewhere, I got it off someone, And will give credits, So don't call me a leecher.

    Edit: This is my first hack, So leave me alone.




  6. #6
    Takari's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Cross Fire Section
    Posts
    11,889
    Reputation
    574
    Thanks
    1,966
    My Mood
    Cool
    Quote Originally Posted by [CF]Hackers View Post
    How is it leeching @Helper

    I didn't copy and paste it from somewhere, I got it off someone, And will give credits, So don't call me a leecher.

    Edit: This is my first hack, So leave me alone.
    I just told you that it's called leeching , and I gave you the answer
    [IMG]https://i1114.photobucke*****m/albums/k538/ImminentJM/takari.png[/IMG]




     
    Goal:
    10,000 Posts - 10/13/2011
    Become Minion - Not Done
    Become Donator - 07/29/2011
    1000 Thanks - Done - 07/25/2011
    2000 Thanks - Not Done
    Thanks Archangel for my 1,000 Thanks.
    Thanks Keroaplt for my Signature.

  7. #7
    [CF]Hackers's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Narnia
    Posts
    612
    Reputation
    10
    Thanks
    46
    Quote Originally Posted by Helper View Post


    I just told you that it's called leeching , and I gave you the answer
    @Helper You said "Thats Leeching" You didn't say "That's Called Leeching"

    And I will give credits to the people.

    I'm no noob.

    And thank you for your help.




  8. #8
    Takari's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Cross Fire Section
    Posts
    11,889
    Reputation
    574
    Thanks
    1,966
    My Mood
    Cool
    Quote Originally Posted by [CF]Hackers View Post
    @Helper You said "Thats Leeching" You didn't say "That's Called Leeching"

    And I will give credits to the people.

    I'm no noob.
    Okay forget about it.
    The hotkeys should go after the while function


    Let me explain it a bit better.
    Code:
    if(GetAsyncKeyState(VK_F3) || GetAsyncKeyState(VK_NUMPAD0) &1) { myhack = true; Beep(512, 120); }
    Code:
    if(GetAsyncKeyState(VK_F3)
    is the first hotkey that will turn myhack on.
    Code:
    GetAsyncKeyState(VK_NUMPAD0) &1)
    is the second hotkey that will turn myhack on.
    Code:
    myhack = true
    myhack is the function name and = true is to make it on. If you type = false you will turn it off , but probably it won't turn off because you need to store the classes.
    Code:
    Beep(512, 120)
    When you turn it on it will make a sound.

    @[CF]Hackers
    Last edited by Takari; 09-10-2011 at 10:14 AM.
    [IMG]https://i1114.photobucke*****m/albums/k538/ImminentJM/takari.png[/IMG]




     
    Goal:
    10,000 Posts - 10/13/2011
    Become Minion - Not Done
    Become Donator - 07/29/2011
    1000 Thanks - Done - 07/25/2011
    2000 Thanks - Not Done
    Thanks Archangel for my 1,000 Thanks.
    Thanks Keroaplt for my Signature.

  9. #9
    [CF]Hackers's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Narnia
    Posts
    612
    Reputation
    10
    Thanks
    46
    Quote Originally Posted by Helper View Post


    Okay forget about it.
    The hotkeys should go after the while function


    Let me explain it a bit better.
    Code:
    if(GetAsyncKeyState(VK_F3) || GetAsyncKeyState(VK_NUMPAD0) &1) { myhack = true; Beep(512, 120); }
    Code:
    if(GetAsyncKeyState(VK_F3)
    is the first hotkey that will turn myhack on.
    Code:
    GetAsyncKeyState(VK_NUMPAD0) &1)
    is the second hotkey that will turn myhack on.
    Code:
    myhack = true
    myhack is the function name and = true is to make it on. If you type = false you will turn it off , but probably it won't turn off because you need to store the classes.
    Code:
    Beep(512, 120)
    When you turn it on it will make a sound.
    So...

    if(onehit)
    {
    if (pWeaponMgr)
    {
    for(int i=0; i<445; i++)
    {
    if((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr))+(4*i)) ) != NULL)
    *(float*)((*(DWORD*)((*(DWORD*)(CShell+WeaponMgr)) +(4*i))) + WeaponDamage) = 99999;
    }
    }
    if(GetAsyncKeyState(VK_F3) || GetAsyncKeyState(VK_NUMPAD0) &1) { myhack = true; Beep(512, 120); }
    Would it be that @Helper?




  10. #10
    Takari's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Cross Fire Section
    Posts
    11,889
    Reputation
    574
    Thanks
    1,966
    My Mood
    Cool
    Quote Originally Posted by [CF]Hackers View Post
    So...



    Would it be that @Helper?
    Nope.
    Let me view your code .
    [IMG]https://i1114.photobucke*****m/albums/k538/ImminentJM/takari.png[/IMG]




     
    Goal:
    10,000 Posts - 10/13/2011
    Become Minion - Not Done
    Become Donator - 07/29/2011
    1000 Thanks - Done - 07/25/2011
    2000 Thanks - Not Done
    Thanks Archangel for my 1,000 Thanks.
    Thanks Keroaplt for my Signature.

  11. #11
    [CF]Hackers's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Narnia
    Posts
    612
    Reputation
    10
    Thanks
    46
    Quote Originally Posted by Helper View Post


    Nope.
    Let me view your code .
    Ill pm you it @helper.




Similar Threads

  1. Need Code Help.
    By [CF]Hackers in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 11
    Last Post: 09-08-2011, 02:31 PM
  2. I need Codes For warrock PH help me new Coder here
    By windowsxp925 in forum WarRock Philippines Hacks
    Replies: 13
    Last Post: 02-05-2011, 03:14 AM
  3. Need coding help
    By freetodownload in forum Combat Arms Discussions
    Replies: 1
    Last Post: 06-16-2010, 11:46 PM
  4. Bypass needed (not coding help)
    By IPAWN in forum C++/C Programming
    Replies: 22
    Last Post: 11-08-2009, 06:13 AM
  5. [Help] Coding help needed
    By desi4u in forum CrossFire Hacks & Cheats
    Replies: 20
    Last Post: 10-02-2009, 01:56 PM