1. I'm running the following code to execute a command
    Code:
    ConsoleSystem.Run(ConsoleSystem.Option.Unrestricted, "ownerid 456456635546 player_name");
    *Note: I've used a bogus Steam ID for this example

    How can I make the execution of that command reply to the console?

    The same command executed by hand replies with some information to the console.
     
  2. Code:
    ConsoleSystem.Run(ConsoleSystem.Option.Unrestricted, "ownerid", "456456635546 player_name");
    tho idk what player_name is, i assume it's a string so you'd probably wanna use
    Code:
    ConsoleSystem.Run(ConsoleSystem.Option.Unrestricted, "ownerid", "456456635546" + player_name);
    Edit: also I've never used this so I have no idea what ConsoleSystem.Option.Unrestricted is...
     
    Last edited by a moderator: Dec 10, 2017