BadScript 2
Loading...
Searching...
No Matches
BadRemoteConsoleSystemSettings.cs
Go to the documentation of this file.
1using CommandLine;
2
4
9{
13 [Value(0, Default = "localhost", HelpText = "The Host to connect to", Required = true)]
14 public string Host { get; set; } = "localhost";
15
19 [Value(1, Default = 1337, HelpText = "The Host port to connect to", Required = true)]
20 public int Port { get; set; } = 1337;
21
25 [Option('s', "script", Default = false, HelpText = "If true, the client will use the script commands")]
26 public bool UseScriptCommands { get; set; }
27}
bool UseScriptCommands
Indicates if the script commands should be used.
Contains the 'run' console command implementation.