From 59df0969a282b72bff574695845e86e198272850 Mon Sep 17 00:00:00 2001 From: BobTheBob <32057864+BobTheBob9@users.noreply.github.com> Date: Thu, 14 Apr 2022 00:37:27 +0100 Subject: move devcommands to northstar.customservers (#300) --- .../scripts/vscripts/_northstar_devcommands.gnut | 38 ---------------------- 1 file changed, 38 deletions(-) delete mode 100644 Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut (limited to 'Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut') diff --git a/Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut b/Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut deleted file mode 100644 index 850855a0f..000000000 --- a/Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut +++ /dev/null @@ -1,38 +0,0 @@ -untyped -global function NorthstarDevCommands_Init - -void function NorthstarDevCommands_Init() -{ - AddClientCommandCallback( "noclip", ClientCommandCallbackToggleNoclip ) - AddClientCommandCallback( "kill", ClientCommandCallbackKill ) - AddClientCommandCallback( "explode", ClientCommandCallbackExplode ) -} - -bool function ClientCommandCallbackToggleNoclip( entity player, array args ) -{ - if ( GetConVarInt( "sv_cheats" ) != 1 ) - return true - - if ( player.IsNoclipping() ) - player.SetPhysics( MOVETYPE_WALK ) - else - player.SetPhysics( MOVETYPE_NOCLIP ) - - return true -} - -bool function ClientCommandCallbackKill( entity player, array args ) -{ - if ( IsAlive( player ) ) - player.Die() - - return true -} - -bool function ClientCommandCallbackExplode( entity player, array args ) -{ - if ( IsAlive( player ) ) - player.Die( null, null, { scriptType = DF_GIB } ) - - return true -} -- cgit v1.2.3