I'm running the following code to execute a command
*Note: I've used a bogus Steam ID for this exampleCode:ConsoleSystem.Run(ConsoleSystem.Option.Unrestricted, "ownerid 456456635546 player_name");
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.
Command execution does not reply to console?
Discussion in 'Rust Development' started by greyhound, Dec 10, 2017.
-
Code:
ConsoleSystem.Run(ConsoleSystem.Option.Unrestricted, "ownerid", "456456635546 player_name");
Code:ConsoleSystem.Run(ConsoleSystem.Option.Unrestricted, "ownerid", "456456635546" + player_name);
Last edited by a moderator: Dec 10, 2017