Results 1 to 5 of 5
  1. #1
    sprintrox's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0

    Obtaining server stuff

    so is there some type script I could use in a garrys mod server that could either, download some server side lua files, or reply with some type of extra information able to get an advantage of a script.

    or can I log what console commands I send when I press E on things or buy stuff, and get a list of all those commands.
    Last edited by sprintrox; 06-23-2014 at 07:31 PM.

  2. #2
    tehhkp's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    4
    1. Decrypt lua cache or detour when you join a server and save the files,
    2. Detour RunConsoleCommand:
    local oldrcc = RunConsoleCommand
    function RunConsoleCommand(arg1,arg2,arg3,arg4,arg5)
    if arg2 == nil then arg2 = "" end
    if arg3 == nil then arg3 = "" end
    if arg4 == nil then arg4 = "" end
    if arg5 == nil then arg5 = "" end
    print(arg1 .. " " .. arg2 .. " " .. arg3 .. " " .. arg4 .. " " .. arg5 .. " ") -- probably wont exceed 5 args
    return oldrcc(arg1,arg2,arg3,arg4,arg5)
    end
    That should work^
    Also for ConCommand()
    _R.Player.ConCommand = function(arg) print(arg) end <-- should work
    EDIT: Forgot to return the old concommand^ should be an easy fix

  3. #3
    Trollaux's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2,074
    Reputation
    137
    Thanks
    792
    use hera o thx
    d e a d b o y s
    Quote Originally Posted by Dave84311 View Post
    What do you call a troll with shitty jokes?
    Trollaux
    Quote Originally Posted by Kyeran View Post
    Foot job with lots of oil.
    Quote Originally Posted by Kyeran View Post
    If she's 12, I'm 12.

  4. #4
    TroubleMakers's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    65
    Reputation
    10
    Thanks
    27
    My Mood
    Bashful
    Quote Originally Posted by tehhkp View Post
    1. Decrypt lua cache or detour when you join a server and save the files,
    2. Detour RunConsoleCommand:
    local oldrcc = RunConsoleCommand
    function RunConsoleCommand(arg1,arg2,arg3,arg4,arg5)
    if arg2 == nil then arg2 = "" end
    if arg3 == nil then arg3 = "" end
    if arg4 == nil then arg4 = "" end
    if arg5 == nil then arg5 = "" end

    print(arg1 .. " " .. arg2 .. " " .. arg3 .. " " .. arg4 .. " " .. arg5 .. " ") -- probably wont exceed 5 args
    return oldrcc(arg1,arg2,arg3,arg4,arg5)
    end
    That should work^
    Also for ConCommand()
    _R.Player.ConCommand = function(arg) print(arg) end <-- should work
    EDIT: Forgot to return the old concommand^ should be an easy fix
    Do you realise this is retarded? (arg1,arg2,arg3,arg4,arg5)
    Code:
    local RCC = RunConsoleCommand
    
    RunConsoleCommand = function(...)
        print(...)
        RCC(...)
    end
    Last edited by TroubleMakers; 06-24-2014 at 05:05 AM.

  5. #5
    sprintrox's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    could someone make me a lua file of this, my notepad+ is acting up right now.

Similar Threads

  1. [Help Request] private server stuff PLEASE HELP
    By Timbabwe in forum Realm of the Mad God Private Servers Help
    Replies: 5
    Last Post: 02-19-2014, 06:47 AM
  2. Replies: 0
    Last Post: 01-17-2012, 08:40 AM
  3. Deleting stuff from the server (bullets left, team score, rank scale)
    By 3ja3ka3 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 15
    Last Post: 08-13-2011, 05:11 AM
  4. Trading stuff on a rs private server for rsgp
    By Beamdagger in forum Trade Accounts/Keys/Items
    Replies: 4
    Last Post: 04-02-2011, 03:23 PM
  5. How to dupe maple coins and stuff at v62 server
    By JoI_killer in forum MapleStory Help
    Replies: 1
    Last Post: 03-13-2011, 11:57 AM