diff --git a/scripts/server/command.js b/scripts/server/command.js index 9dc2c03a..e18ff6f1 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -118,7 +118,8 @@ function loadCommandData() { commandData("ccode", executeClientCodeCommand, "", getStaffFlagValue("developer"), true, true), commandData("gmx", restartGameModeCommand, "", getStaffFlagValue("developer"), true, true), commandData("saveall", saveAllServerDataCommand, "", getStaffFlagValue("developer"), true, true), - commandData("docmd", simulatePlayerCommand, " [params]", getStaffFlagValue("developer"), true, true), + commandData("docmd", simulateCommandForPlayer, " [params]", getStaffFlagValue("developer"), true, true), + commandData("docmdall", simulateCommandForAllPlayers, " [params]", getStaffFlagValue("developer"), true, true), ], discord: [], faction: [], @@ -197,6 +198,7 @@ function loadCommandData() { commandData("enter", enterExitPropertyCommand, "", getStaffFlagValue("none"), true, true), commandData("exit", enterExitPropertyCommand, "", getStaffFlagValue("none"), true, false), commandData("cursor", toggleMouseCursorCommand, "", getStaffFlagValue("none"), true, false), + commandData("mousecam", toggleMouseCameraCommand, "", getStaffFlagValue("none"), true, false), ], moderation: [ commandData("kick", kickClientCommand, " [reason]", getStaffFlagValue("basicModeration"), true, true), @@ -208,6 +210,8 @@ function loadCommandData() { commandData("gethere", getPlayerCommand, "", getStaffFlagValue("basicModeration"), true, true), commandData("gotopos", gotoPositionCommand, " [int] [vw]", getStaffFlagValue("basicModeration"), true, true), commandData("gotoveh", gotoVehicleCommand, "", getStaffFlagValue("basicModeration"), true, true), + commandData("gotobiz", gotoBusinessCommand, "", getStaffFlagValue("basicModeration"), true, true), + commandData("gotohouse", gotoHouseCommand, "", getStaffFlagValue("basicModeration"), true, true), commandData("gotojob", gotoJobLocationCommand, " ", getStaffFlagValue("basicModeration"), true, true), //commandData("gotoloc", gotoLocationCommand, "", getStaffFlagValue("basicModeration"), true, true), commandData("fr", teleportForwardCommand, "", getStaffFlagValue("basicModeration"), true, true),