Page 1 of 7 123 ... LastLast
Results 1 to 15 of 96
  1. #1
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy

    Post Advanced Warfare External Console ( SP/MP ) - By Kenshin13

    After two-three years I've finally decided to forgive MPGH for screwing me over a while back and actually make my first official release - without some of the feisty features I had initially planned to add since I'm too lazy.

    Let me stress this for the idiots who just come here, download stuff and don't read the thread then complain:
    READ THE FOLLOWING CAREFULLY. ASK IDIOTIC QUESTIONS AND I WON'T EVEN BOTHER TO RESPOND TO YOU.

    First off, what is this? As the thread name implies, it's an external console. I.E. This application does everything you'd expect a CoD console to do such as those seen in MW2 etc. except far more.

    What exactly are the specific features of it?

    - Execute commands directly via Cbuf_AddText ( See here )
    - Execute commands via SV_GameSendServerCommand() ( See here )
    - Dump all DVARS/CVARS in the game with information on each of them.
    - Updating functionality. Uses a small file ( vdef.dat ) for future updates. Just download the new update file and drop it in your folder

    So let's give you an idiot's approach to starting this:

    -> Download the attached file.
    -> Open the executable
    -> Start CoD:AW
    -> ...?
    -> Profit.

    The available command triggers for this are the following: ( N.B. Any command entered that doesn't start with one of the following acronyms followed by a space gets redirected to the Cbuf_AddText console )
    Code:
    svc - SV_GameSendServerCommand()
    cbuf - Cbuf_AddText()
    cls - Clears console output window.
    exit - As the name suggests, exits the console.
    var_dmp - Dumps all variables ( cvars/dvars ) to "[ GAME_VERSION -- SinglePlayer / MultiPlayer ]_CvarDump.txt" in the current directory.
    Now for most of you, you'd only be using Cbuf_AddText functionality. What can you do with this specific function?

    - You can execute scripts as the game does
    - You can modify cvars/dvars directly
    - You can execute some commands that get redirected to the game ( Eg. "say Hi. This message was sent from my external console" )
    - Execute Cmd_Functions ( such as vid_restart etc. )

    Here's some examples for this command:

    Code:
    // This sends the chat message "Hello World!" to whatever game you are currently in
    cbuf say "Hello World!"
    
    // This edits the cvar com_maxFPS to 100
    cbuf com_maxfps 9999
    
    // This executes your config_mp.cfg file
    cbuf exec "config_mp.cfg"
    
    // This restarts your video screen
    cbuf vid_restart
    For SV_GameSendServerCommand() here are some examples: ( REQUIRES HOST - This affects ALL players in the game )
    Code:
    // Prints red text in the killfeed saying "Hello World!"
    svc f "^1Hello World!"
    
    // Prints red text in the center of the screen saying "Hello World!"
    svc g "^1Hello World!"
    
    // FPS optimizer. I call this one "cartoon mode"
    svc z a
    
    // Resets the cartoon mode above
    svc z b
    
    // Sets a vision
    svc J < vision name >
    // Where < vision name is one of:
    // aftermath  - After nuke
    // black_bw  - Completely black
    // cheat_bw  - Greyscale
    // default_night  - Light night
    // default_night_mp - Dark night
    // near_death  - Blood red
    // default   - Resets to normal vision
    
    // This is called "SetClientDvar()" which you can use to do all sort of nifty tricks on clients. Eg. toggle promod mode etc.
    svc q < Dvar Index > "< Dvar Value >"
    // The dvar index is an integer from an array index.
    // This is actually not hard coded and you'll need to find it yourself.
    // The offset of the function used to convert dvar names to function ids for v1.13 is 0x140341F10
    // Pattern: 44 8B 0D ?? ?? ?? ?? 33 C0 45 85 C9 74 17
    Dvar dumping basically just dumps all registered cvars in the game in the following format:
    Code:
    Dvar Name: [ xxxxxxxxxxxxxxxx ]
    Dvar Permssions: [ xxxxxxxxxxxxxxxx ]
    Dvar Type: [ xxxxxxxxxxxxxxxx ]
    Dvar Base: [ xxxxxxxxxxxxxxxx ]
    Dvar Offset Value: [ xxxxxxxxxxxxxxxx ]
     

    Cartoon Mode

    Console startup

    Cbuf_AddText example using "say" command

    Killfeed print example ( iprintln )

    Centered print example ( iprintlnbold )



     





    Enjoy skids.
    Last edited by akim14; 04-06-2015 at 07:59 AM.

  2. The Following 41 Users Say Thank You to Hitokiri~ For This Useful Post:

    aimbot12_15 (03-27-2015),alfamega1017 (03-31-2015),Alvah020 (03-30-2015),anan4040 (03-30-2015),Arctic_Gamerz (04-03-2015),aresdGHERhgerdherhrh (05-30-2015),Aurifiy (03-25-2015),Axweeel (03-25-2015),barenhacks (03-31-2015),bronx751 (01-29-2017),Cotter1key (05-31-2015),CrimePlays (04-04-2015),Dave's Mexican (03-25-2015),dogson (03-28-2015),Doubletrouble56 (06-16-2015),Ray (03-30-2015),eliteprogamer100 (03-28-2015),fowlerc23 (03-28-2015),GalaxyYT (05-12-2020),ginuz (03-25-2015),Herokaine (03-28-2015),Izochor (03-26-2015),jowush247 (03-26-2015),karper (04-02-2015),killmall1990 (04-24-2015),kosworld214 (03-31-2015),luckymat2 (09-27-2015),Minnesota Dabs (03-25-2015),MorbidJunkie (04-06-2015),nex1z (04-02-2015),plumbass1 (03-25-2015),rajab (04-25-2015),rudsec (03-25-2015),SammyDoge1 (03-25-2015),SeNsoR.H4x (03-25-2015),smokeyxkovx (03-15-2022),SnakeVenom1 (03-29-2015),Stanleypla (07-04-2015),TailsDoll553 (07-23-2015),vallejee (04-01-2015),xiLLestMoDzx (05-03-2015)

  3. #2
    Dave's Mexican's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C:\Program Files (x86)\Steam\SteamApps\common
    Posts
    792
    Reputation
    29
    Thanks
    1,330
    My Mood
    Fine
    its finally out!
    good job
    this is going to bee the #1 cheat nabs are going to use this point forward
    Last edited by Dave's Mexican; 03-25-2015 at 04:58 AM.





    Quote Originally Posted by Dave84311
    Shuttup mexican
    Quote Originally Posted by Royce
    stupid mexican
    Quote Originally Posted by Hitokiri~
    Shut up stupid mexican.
    Quote Originally Posted by Hypnotized
    Why aren't you cutting my lawn?
    Quote Originally Posted by _Tavi
    Mexican
    Quote Originally Posted by Hitokiri~
    Get back to cutting my damn grass retard.


  4. #3
    Threadstarter
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Quote Originally Posted by im Fred View Post
    its finally out!
    good job
    this is going to bee the #1 cheat nabs are going to use this point forward
    If they're smart enough. I won't keep my hopes up.

  5. #4
    Dave's Mexican's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C:\Program Files (x86)\Steam\SteamApps\common
    Posts
    792
    Reputation
    29
    Thanks
    1,330
    My Mood
    Fine
    Quote Originally Posted by Hitokiri~ View Post


    If they're smart enough. I won't keep my hopes up.
    after someone makes a tutorial of course





    Quote Originally Posted by Dave84311
    Shuttup mexican
    Quote Originally Posted by Royce
    stupid mexican
    Quote Originally Posted by Hitokiri~
    Shut up stupid mexican.
    Quote Originally Posted by Hypnotized
    Why aren't you cutting my lawn?
    Quote Originally Posted by _Tavi
    Mexican
    Quote Originally Posted by Hitokiri~
    Get back to cutting my damn grass retard.


  6. #5
    Josh1969WTH's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    12
    My Mood
    Amused
    Can be ban for this ?

  7. #6
    Dave's Mexican's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C:\Program Files (x86)\Steam\SteamApps\common
    Posts
    792
    Reputation
    29
    Thanks
    1,330
    My Mood
    Fine
    Quote Originally Posted by Josh1969WTH View Post
    Can be ban for this ?
    yes but right now the chance is very low but it will increse over time





    Quote Originally Posted by Dave84311
    Shuttup mexican
    Quote Originally Posted by Royce
    stupid mexican
    Quote Originally Posted by Hitokiri~
    Shut up stupid mexican.
    Quote Originally Posted by Hypnotized
    Why aren't you cutting my lawn?
    Quote Originally Posted by _Tavi
    Mexican
    Quote Originally Posted by Hitokiri~
    Get back to cutting my damn grass retard.


  8. #7
    Threadstarter
    殺す必要がある唯一のものは殺されるために準備され人 々である。
    Premium Member
    Hitokiri~'s Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Cancer.
    Posts
    1,201
    Reputation
    24
    Thanks
    937
    My Mood
    Bitchy
    Quote Originally Posted by im Fred View Post


    yes but right now the chance is very low but it will increse over time
    Yep, should be a while.

  9. #8
    SammyDoge1's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Tried looking behind you...?
    Posts
    2,207
    Reputation
    62
    Thanks
    2,147
    My Mood
    Tired
    ehehe i can see some good use in this, cheers!





  10. #9
    akim14's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    896
    Reputation
    293
    Thanks
    5,054
    My Mood
    Doh
    Approved
    [IMG]
    MPGH Member since 10. 21. 2009
    CoD section Minion 22. 01. 2015 - 23. 02. 2017
    GTA section Minion 15. 07.2015 - 23. 02. 2017
    Minion+ 27. 01. 2016 - 23. 02. 2017
    Skype Impersonator: mpgh.akim14. (always use skype buton on my profile and contact me here)

  11. #10
    overkilln00b's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    1
    Its awesome release, just for know, with this tool and the right command, i could activate a sort of esp-uav that show me always the right place of enemies? Or this is a tool that can permits to create an hack for that?

  12. #11
    SeNsoR.H4x's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Location
    Belgium
    Posts
    133
    Reputation
    10
    Thanks
    828
    My Mood
    Drunk
    Thx for this

    And very good job...

  13. #12
    Crezino's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Location
    127.0.0.1
    Posts
    221
    Reputation
    10
    Thanks
    46
    My Mood
    Shocked
    Nice to see releases again by kenshin.

  14. #13
    rudsec's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Location
    Location.map
    Posts
    182
    Reputation
    52
    Thanks
    285
    My Mood
    Yeehaw
    Amazing, but is it suppose to crash when dumping

  15. #14
    overkilln00b's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    1
    in the Cvar/dvar dump there is this

    Dvar Name: [ aim_autoaim_enabled ]
    Dvar Permissions: [ 0x00000100 ]
    Dvar Type: [ 116 ]
    Dvar Base: [ 0x14A9B00B0 ]
    Dvar Offset Value: [ 0x14A9B00C0 ]
    with that we could enable an aimbot?

  16. #15
    Dave's Mexican's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    C:\Program Files (x86)\Steam\SteamApps\common
    Posts
    792
    Reputation
    29
    Thanks
    1,330
    My Mood
    Fine
    Quote Originally Posted by overkilln00b View Post
    in the Cvar/dvar dump there is this



    with that we could enable an aimbot?

    //u r a stupid fgt





    Quote Originally Posted by Dave84311
    Shuttup mexican
    Quote Originally Posted by Royce
    stupid mexican
    Quote Originally Posted by Hitokiri~
    Shut up stupid mexican.
    Quote Originally Posted by Hypnotized
    Why aren't you cutting my lawn?
    Quote Originally Posted by _Tavi
    Mexican
    Quote Originally Posted by Hitokiri~
    Get back to cutting my damn grass retard.


Page 1 of 7 123 ... LastLast

Similar Threads

  1. Best console for Advanced Warfare
    By Minnesota Dabs in forum Call of Duty Advanced Warfare Discussions
    Replies: 5
    Last Post: 11-27-2014, 11:17 PM
  2. Modern warfare 2 console
    By Ownage1 in forum Call of Duty Modern Warfare 2 Help
    Replies: 19
    Last Post: 03-16-2010, 07:18 PM
  3. [Release] Modern warfare 2 console
    By Hjalmar in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 2
    Last Post: 03-14-2010, 04:46 PM
  4. [Release] Modern Warfare 2 Console .182
    By Bluthera in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 214
    Last Post: 03-06-2010, 01:17 AM
  5. Modern Warfare 2 Console Help
    By MasterJ in forum Call of Duty Modern Warfare 2 Help
    Replies: 7
    Last Post: 02-11-2010, 12:44 AM