using Robust.Shared.Console; using Robust.Shared.IoC; namespace Robust.Client.Console.Commands { #if CLIENT_SCRIPTING internal sealed class ScriptCommand : LocalizedCommands { public override string Command => "csi"; public override void Execute(IConsoleShell shell, string argStr, string[] args) { new ScriptConsoleClient().OpenCentered(); } } internal sealed class WatchCommand : LocalizedCommands { public override string Command => "watch"; public override void Execute(IConsoleShell shell, string argStr, string[] args) { new WatchWindow().OpenCentered(); } } #endif internal sealed partial class ServerScriptCommand : LocalizedCommands { [Dependency] private IScriptClient _scriptClient = default!; public override string Command => "scsi"; public override void Execute(IConsoleShell shell, string argStr, string[] args) { if (!_scriptClient.CanScript) { shell.WriteError("You do not have server side scripting permission."); return; } _scriptClient.StartSession(); } } }