Page 1 of 3 123 LastLast
Results 1 to 15 of 32
  1. #1
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored

    [Source]PushToConsole Commands

    Hey guys,
    I just looked at some stuff, here's some PushToConsole commands for NumPad Hacks.

    FPS:
    [PHP]if(GetAsyncKeyState(VK_NUMPAD5)<0){
    this->PushToConsole("ShowPerformanceStatistics 1");
    }[/PHP]

    No Sway
    [PHP]if(GetAsyncKeyState(VK_NUMPAD2)<0){
    this->PushToConsole("WeaponSway 0");
    }[/PHP]

    VJump
    [PHP]if(GetAsyncKeyState(VK_UP)<0){
    PushToConsole("CamMaxPosYOffset 200.000000");
    PushToConsole("DuckDownCamOffSet 1000.000000");
    }
    if(GetAsyncKeyState(VK_DOWN)<0){
    PushToConsole("CamMaxPosYOffset -1000.000000");
    PushToConsole("DuckDownCamOffSet -13.000000");
    }[/PHP]

    Tracers
    [PHP]if(GetAsyncKeyState(VK_SUBTRACT)<0){
    if(tracers){
    PushToConsole("ShowFirePath 0");
    tracers = false;
    } else {
    PushToConsole("ShowFirePath 1");
    tracers = true;
    }
    }[/PHP]

    No Spread
    [PHP]if(GetAsyncKeyState(VK_ADD)<0){
    if(spread){
    PushToConsole("PerturbRotationEffect 3.000000");
    PushToConsole("PerturbIncreaseSpeed 3.000000");
    PushToConsole("PerturbDecreaseSpeed 9.000000");
    PushToConsole("PerturbWalkPercent 0.500000");
    spread = false;
    } else {
    PushToConsole("PerturbRotationEffect 0.000000");
    PushToConsole("PerturbIncreaseSpeed 0.000000");
    PushToConsole("PerturbWalkPercent 0.000000");
    PushToConsole("PerturbFiringIncreaseSpeed 0.000000");
    spread = true;
    }
    }[/PHP]

    Glow
    [PHP]if(GetAsyncKeyState(VK_NUMPAD8)<0){
    this->PushToConsole("ScreenGlowEnable 1");
    }[/PHP]

    Skeleton:
    [PHP]if(GetAsyncKeyState(VK_NUMPAD6)<0){
    this->PushToConsole("ModelDebug_DrawSkeleton 1");
    }[/PHP]

    WireFrame:
    [PHP]if(GetAsyncKeyState(VK_NUMPAD4)<0){
    this->PushToConsole("WireFrame 1");
    }[/PHP]

    FullBright
    [PHP]if(GetAsyncKeyState(VK_NUMPAD3)<0){
    this->PushToConsole("FullBright 1");
    }[/PHP]

    Boxes/Chams
    [PHP]if(GetAsyncKeyState(VK_NUMPAD1)<0){
    if(boxes){
    PushToConsole("ModelDebug_DrawBoxes 0");
    PushToConsole("SkelModelStencil 0");
    boxes = false;
    } else {
    PushToConsole("ModelDebug_DrawBoxes 1");
    PushToConsole("SkelModelStencil 1");
    boxes = true;
    }
    }[/PHP]

    Fly:
    [PHP]if( GetAsyncKeyState( FLYKEY ) < 0 )
    {

    this->PushToConsole( "PlayerGravity 800" );
    }else{
    this->PushToConsole( "PlayerGravity -800" );
    }[/PHP]

    Show FPS:
    [PHP]PushToConsole("ShowFps 1");



    Sleep(iRenderSpeed);[/PHP]

    SpeedHack
    [PHP]if( GetAsyncKeyState( VK_SHIFT ) < 0 )
    {
    this->PushToConsole("BaseMoveAccel 4000.000000");
    this->PushToConsole("StartAccel 4000.000000");
    this->PushToConsole("MaxAccel 4000.000000");
    this->PushToConsole("AccelInc 4000.000000");
    this->PushToConsole("WalkVel 4000.000000");
    this->PushToConsole("FRunVel 4000.000000");
    this->PushToConsole("BRunVel 4000.000000");
    this->PushToConsole("SRunVel 4000.000000");




    }else{

    this->PushToConsole("BaseMoveAccel 3000.000000");
    this->PushToConsole("StartAccel 500.000000");
    this->PushToConsole("MaxAccel 3000.000000");
    this->PushToConsole("AccelInc 6000.000000");
    this->PushToConsole("WalkVel 70.000000");
    this->PushToConsole("FRunVel 285.000000");
    this->PushToConsole("BRunVel 285.000000");
    this->PushToConsole("SRunVel 285.000000");

    }[/PHP]

    GlitchKey/SuperSpeed
    [PHP]if( GetAsyncKeyState( 0x58 ) < 0 )
    {
    this->PushToConsole("BaseMoveAccel 90000.000000");
    this->PushToConsole("StartAccel 90000.000000");
    this->PushToConsole("MaxAccel 90000.000000");
    this->PushToConsole("AccelInc 90000.000000");
    this->PushToConsole("WalkVel 90000.000000");
    this->PushToConsole("FRunVel 90000.000000");
    this->PushToConsole("BRunVel 90000.000000");
    this->PushToConsole("SRunVel 90000.000000");
    }
    [/PHP]

    SuperJump
    [PHP]if( GetAsyncKeyState( VK_END ) < 0 )
    {
    this->PushToConsole("JumpVel 330.000000");
    }[/PHP]

    SuperJump X2
    [PHP]if( GetAsyncKeyState( VK_NEXT ) < 0 )
    {
    this->PushToConsole("JumpVel 660.000000");
    }
    }
    }[/PHP]

    SuperJump X3
    [PHP]if( GetAsyncKeyState( VK_PRIOR ) < 0 )
    {
    this->PushToConsole("JumpVel 990.000000");
    }[/PHP]

    Thanks to Ragerz for his source.
    Hope this was resourceful!

  2. The Following 12 Users Say Thank You to Invidus For This Useful Post:

    ac1d_buRn (06-23-2010),Crackerhead (07-14-2010),CRUSTY (06-05-2010),Drake (06-02-2010),J (06-19-2010),lakha (09-13-2010),mwb1234 (06-13-2010),o-o (09-04-2010),ostisgood (06-23-2010),rayhvh (06-29-2010),rocker340 (06-05-2010),silly3648 (06-01-2010)

  3. #2
    flayer669's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    220
    Reputation
    19
    Thanks
    33
    My Mood
    Dead
    Quote Originally Posted by ilikewaterha View Post
    Hey guys,
    I just looked at some stuff, here's some PushToConsole commands for NumPad Hacks.

    FPS:
    [PHP]if(GetAsyncKeyState(VK_NUMPAD5)<0){
    this->PushToConsole("ShowPerformanceStatistics 1");
    }[/PHP]

    No Sway
    [PHP]if(GetAsyncKeyState(VK_NUMPAD2)<0){
    this->PushToConsole("WeaponSway 0");
    }[/PHP]

    VJump
    [PHP]if(GetAsyncKeyState(VK_UP)<0){
    PushToConsole("CamMaxPosYOffset 200.000000");
    PushToConsole("DuckDownCamOffSet 1000.000000");
    }
    if(GetAsyncKeyState(VK_DOWN)<0){
    PushToConsole("CamMaxPosYOffset -1000.000000");
    PushToConsole("DuckDownCamOffSet -13.000000");
    }[/PHP]

    Tracers
    [PHP]if(GetAsyncKeyState(VK_SUBTRACT)<0){
    if(tracers){
    PushToConsole("ShowFirePath 0");
    tracers = false;
    } else {
    PushToConsole("ShowFirePath 1");
    tracers = true;
    }
    }[/PHP]

    No Spread
    [PHP]if(GetAsyncKeyState(VK_ADD)<0){
    if(spread){
    PushToConsole("PerturbRotationEffect 3.000000");
    PushToConsole("PerturbIncreaseSpeed 3.000000");
    PushToConsole("PerturbDecreaseSpeed 9.000000");
    PushToConsole("PerturbWalkPercent 0.500000");
    spread = false;
    } else {
    PushToConsole("PerturbRotationEffect 0.000000");
    PushToConsole("PerturbIncreaseSpeed 0.000000");
    PushToConsole("PerturbWalkPercent 0.000000");
    PushToConsole("PerturbFiringIncreaseSpeed 0.000000");
    spread = true;
    }
    }[/PHP]

    Glow
    [PHP]if(GetAsyncKeyState(VK_NUMPAD8)<0){
    this->PushToConsole("ScreenGlowEnable 1");
    }[/PHP]

    Skeleton:
    [PHP]if(GetAsyncKeyState(VK_NUMPAD6)<0){
    this->PushToConsole("ModelDebug_DrawSkeleton 1");
    }[/PHP]

    WireFrame:
    [PHP]if(GetAsyncKeyState(VK_NUMPAD4)<0){
    this->PushToConsole("WireFrame 1");
    }[/PHP]

    FullBright
    [PHP]if(GetAsyncKeyState(VK_NUMPAD3)<0){
    this->PushToConsole("FullBright 1");
    }[/PHP]

    Boxes/Chams
    [PHP]if(GetAsyncKeyState(VK_NUMPAD1)<0){
    if(boxes){
    PushToConsole("ModelDebug_DrawBoxes 0");
    PushToConsole("SkelModelStencil 0");
    boxes = false;
    } else {
    PushToConsole("ModelDebug_DrawBoxes 1");
    PushToConsole("SkelModelStencil 1");
    boxes = true;
    }
    }[/PHP]

    Fly:
    [PHP]if( GetAsyncKeyState( FLYKEY ) < 0 )
    {

    this->PushToConsole( "PlayerGravity 800" );
    }else{
    this->PushToConsole( "PlayerGravity -800" );
    }[/PHP]

    Show FPS:
    [PHP]PushToConsole("ShowFps 1");



    Sleep(iRenderSpeed);[/PHP]

    SpeedHack
    [PHP]if( GetAsyncKeyState( VK_SHIFT ) < 0 )
    {
    this->PushToConsole("BaseMoveAccel 4000.000000");
    this->PushToConsole("StartAccel 4000.000000");
    this->PushToConsole("MaxAccel 4000.000000");
    this->PushToConsole("AccelInc 4000.000000");
    this->PushToConsole("WalkVel 4000.000000");
    this->PushToConsole("FRunVel 4000.000000");
    this->PushToConsole("BRunVel 4000.000000");
    this->PushToConsole("SRunVel 4000.000000");




    }else{

    this->PushToConsole("BaseMoveAccel 3000.000000");
    this->PushToConsole("StartAccel 500.000000");
    this->PushToConsole("MaxAccel 3000.000000");
    this->PushToConsole("AccelInc 6000.000000");
    this->PushToConsole("WalkVel 70.000000");
    this->PushToConsole("FRunVel 285.000000");
    this->PushToConsole("BRunVel 285.000000");
    this->PushToConsole("SRunVel 285.000000");

    }[/PHP]

    GlitchKey/SuperSpeed
    [PHP]if( GetAsyncKeyState( 0x58 ) < 0 )
    {
    this->PushToConsole("BaseMoveAccel 90000.000000");
    this->PushToConsole("StartAccel 90000.000000");
    this->PushToConsole("MaxAccel 90000.000000");
    this->PushToConsole("AccelInc 90000.000000");
    this->PushToConsole("WalkVel 90000.000000");
    this->PushToConsole("FRunVel 90000.000000");
    this->PushToConsole("BRunVel 90000.000000");
    this->PushToConsole("SRunVel 90000.000000");
    }
    [/PHP]

    SuperJump
    [PHP]if( GetAsyncKeyState( VK_END ) < 0 )
    {
    this->PushToConsole("JumpVel 330.000000");
    }[/PHP]

    SuperJump X2
    [PHP]if( GetAsyncKeyState( VK_NEXT ) < 0 )
    {
    this->PushToConsole("JumpVel 660.000000");
    }
    }
    }[/PHP]

    SuperJump X3
    [PHP]if( GetAsyncKeyState( VK_PRIOR ) < 0 )
    {
    this->PushToConsole("JumpVel 990.000000");
    }[/PHP]

    Thanks to Ragerz for his source.
    Hope this was resourceful!
    nice all of them been released before anyways
    Subscribe

    www.Youtube.com/XanaxEdits

    [IMG]https://img.photobucke*****m/albums/v739/gore_ridden/stroke.gif[/IMG]




    :yourock1:

  4. #3
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    Really? And you didn't have to quote the whole post..

  5. #4
    silly3648's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    www.mpgh.net =)
    Posts
    207
    Reputation
    10
    Thanks
    53
    My Mood
    Angelic
    hmmm nice i might use some of these like no spread and no sway thanks !
    Computer Science student, College.

    Known Languages: Java, Python
    Learning : C++, C#
    Currently hacking in : C#

    +++LATEST+++
    gimp

    photoshop



    ~HELPFUL CODERS~
    god601
    helicopter12

  6. #5
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    No problems!!! Enjoy!
    You can add your own hotkeys too

  7. #6
    flayer669's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    220
    Reputation
    19
    Thanks
    33
    My Mood
    Dead
    Quote Originally Posted by ilikewaterha View Post
    No problems!!! Enjoy!
    You can add your own hotkeys too
    Vjump is wrong the cam is set under ground might get the right values and post them
    Subscribe

    www.Youtube.com/XanaxEdits

    [IMG]https://img.photobucke*****m/albums/v739/gore_ridden/stroke.gif[/IMG]




    :yourock1:

  8. #7
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    They ARE the right values?

  9. #8
    flayer669's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    220
    Reputation
    19
    Thanks
    33
    My Mood
    Dead
    Well it didnt work for me sends me under the ground :P so i might try it later is 4am here time to sleep lol
    Subscribe

    www.Youtube.com/XanaxEdits

    [IMG]https://img.photobucke*****m/albums/v739/gore_ridden/stroke.gif[/IMG]




    :yourock1:

  10. #9
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    Depends if you press the Up or Down.
    Can't you see they are two different values?

  11. #10
    Xlilzoosk8rX's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    the-ville, PA
    Posts
    358
    Reputation
    24
    Thanks
    53
    may i ask why all you key values are
    GetAsyncKeyState (VK_KEY)

    except for Superspeed / Glitch it is formatted
    GetAsyncKeyState (0x58)

    any specific reason?

  12. #11
    Synns's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    5,174
    Reputation
    170
    Thanks
    2,557
    My Mood
    Bitchy
    Quote Originally Posted by Xlilzoosk8rX View Post
    may i ask why all you key values are
    GetAsyncKeyState (VK_KEY)

    except for Superspeed / Glitch it is formatted
    GetAsyncKeyState (0x58)

    any specific reason?
    There is no VK_W, VK_S, VK_A, etc...

    Virtual Key Codes

    0x58 is X.

  13. #12
    mwb1234's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    460
    Reputation
    7
    Thanks
    65
    Quote Originally Posted by Longevity View Post
    There is no VK_W, VK_S, VK_A, etc...

    Virtual Key Codes

    0x58 is X.
    Long I have a way to get VK_W and all alphabet. I used the Art of Trainer making guide to make a header that defines VK_A-VK_Z as their Hexadecimal #'s and they work fine . Just thought I would tell you

  14. #13
    'JlStepper's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    47
    Reputation
    10
    Thanks
    2
    My Mood
    Amused
    Thanks, gonna learn a little from this.

  15. #14
    Invidus's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    2,167
    Reputation
    23
    Thanks
    650
    My Mood
    Bored
    Don't say thanks, press thanks

  16. The Following 2 Users Say Thank You to Invidus For This Useful Post:

    fvestrgenrl (06-15-2010),mwb1234 (06-13-2010)

  17. #15
    rocker340's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    in my house
    Posts
    304
    Reputation
    12
    Thanks
    76
    how about i say it and press it haha
    ThanksSSSS!

Page 1 of 3 123 LastLast

Similar Threads

  1. [Release] PushToConsole Commands [Mega Thread]
    By DeadLinez in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 90
    Last Post: 01-10-2013, 08:15 PM
  2. PushToConsole commands
    By Zoom in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 26
    Last Post: 10-18-2010, 05:30 PM
  3. PushToConsole Commands
    By OverDrivejt in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 57
    Last Post: 08-31-2010, 01:35 PM
  4. Help With Visual Basic 2008 And The PushToConsole Command
    By CrossFireHacker V1 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 08-23-2010, 04:21 AM
  5. PushToConsole commands for pick-up hack?
    By deathninjak0 in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 18
    Last Post: 07-14-2010, 08:01 AM