Thread: Command finder?

Results 1 to 7 of 7
  1. #1
    GO3STK1LL3R's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    216
    Reputation
    10
    Thanks
    19
    My Mood
    Psychedelic

    Command finder?

    Has anyone here made or thought about a exe you would run(With all commands possible) and run them into the console of that server and once it has ran all of them it will tell you which commands work? This could be a good idea because you could exploit cracks they haven't patched. Just a idea.

  2. #2
    D3M0L1T10N's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    1,364
    Reputation
    19
    Thanks
    656
    what‏‏‏‏‏‏‏‏‏‏‏‏
    8:53 PM - Xenomorphic 1 hr 7 min cooldown: So is MPGH only exist so people can c+p from ************* and troll the gmod section?

    [IMG]https://i739.photobucke*****m/albums/xx38/jorroa5990/flatexch2_zpsec96a7e2.gif[/IMG]

  3. #3
    kila58's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    304
    Reputation
    43
    Thanks
    1,842
    My Mood
    Inspired
    Quote Originally Posted by D3M0L1T10N View Post
    what‏‏‏‏‏‏‏‏‏‏‏‏
    He is asking for a program that runs through all the commands and check how many of them work.
    The amount of commands in the source engine alone is immense, so good luck with that.

  4. The Following 2 Users Say Thank You to kila58 For This Useful Post:

    GO3STK1LL3R (08-12-2013),Margen67 (08-13-2013)

  5. #4
    Atheon's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    128
    Reputation
    69
    Thanks
    81
    My Mood
    Inspired
    Well I'm not able to test this but it should show every command that gets added with concommand.Add.

    Code:
    local commands, somethingelse = concommand.GetTable()
    PrintTable(commands)
    In the commands table the keys are equal to the commands name (such as "openmenu") and the value stored under that key is the function the command runs when used. So if you wanted to run the function associated with the command "openmenu" you could do this.

    Code:
    local commands, somethingelse = concommand.GetTable()
    for k,v in pairs(commands) do
    	if k == "openmenu" then
    		v()
    	end
    end
    Last edited by Atheon; 08-11-2013 at 05:31 PM.

  6. #5
    kila58's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    304
    Reputation
    43
    Thanks
    1,842
    My Mood
    Inspired
    Quote Originally Posted by Atheon View Post
    Well I'm not able to test this but it should show every command that gets added with concommand.Add.

    Code:
    local commands, somethingelse = concommand.GetTable()
    PrintTable(commands)
    In the commands table the keys are equal to the commands name (such as "openmenu") and the value stored under that key is the function the command runs when used. So if you wanted to run the function associated with the command "openmenu" you could do this.

    Code:
    local commands, somethingelse = concommand.GetTable()
    for k,v in pairs(commands) do
    	if k == "openmenu" then
    		v()
    	end
    end
    He wants it in exe or dll format I can imagine.

  7. #6
    GO3STK1LL3R's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    216
    Reputation
    10
    Thanks
    19
    My Mood
    Psychedelic
    Yes^^ too short

    ---------- Post added at 11:47 AM ---------- Previous post was at 11:47 AM ----------

    o.o what...

    Quote Originally Posted by Atheon View Post
    Well I'm not able to test this but it should show every command that gets added with concommand.Add.

    Code:
    local commands, somethingelse = concommand.GetTable()
    PrintTable(commands)
    In the commands table the keys are equal to the commands name (such as "openmenu") and the value stored under that key is the function the command runs when used. So if you wanted to run the function associated with the command "openmenu" you could do this.

    Code:
    local commands, somethingelse = concommand.GetTable()
    for k,v in pairs(commands) do
    	if k == "openmenu" then
    		v()
    	end
    end

  8. #7
    GO3STK1LL3R's Avatar
    Join Date
    Feb 2011
    Gender
    male
    Posts
    216
    Reputation
    10
    Thanks
    19
    My Mood
    Psychedelic
    Ddin't work

Similar Threads

  1. Run Commands!
    By AN1MAL in forum Spammers Corner
    Replies: 12
    Last Post: 01-01-2007, 01:51 PM
  2. supreme commander and command&conquer hacking
    By TheDisruptor in forum General Game Hacking
    Replies: 3
    Last Post: 11-26-2006, 10:50 PM
  3. Command & Conquer Generals
    By heero_yuy in forum General Game Hacking
    Replies: 2
    Last Post: 06-21-2006, 03:12 AM
  4. Warrock Command List
    By Dave84311 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-26-2006, 11:03 PM
  5. Demon of some commands
    By HolyFate in forum Gunz Hacks
    Replies: 12
    Last Post: 02-21-2006, 01:43 PM