From ffdf44de4aed8e34cdc1d749193271ac80facaf3 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_cheatcommands.nut | 69 ++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut (limited to 'Northstar.CustomServers/mod') diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut b/Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut new file mode 100644 index 00000000..619bfcaf --- /dev/null +++ b/Northstar.CustomServers/mod/scripts/vscripts/_northstar_cheatcommands.nut @@ -0,0 +1,69 @@ +untyped +global function NorthstarCheatCommands_Init + +void function NorthstarCheatCommands_Init() +{ + AddClientCommandCallback( "noclip", ClientCommandCallbackToggleNoclip ) + AddClientCommandCallback( "notarget", ClientCommandCallbackToggleNotarget ) + AddClientCommandCallback( "demigod", ClientCommandCallbackToggleDemigod ) + AddClientCommandCallback( "kill", ClientCommandCallbackKill ) + AddClientCommandCallback( "explode", ClientCommandCallbackExplode ) +} + +bool function ClientCommandCallbackToggleNoclip( entity player, array args ) +{ + if ( !GetConVarBool( "sv_cheats" ) ) + return true + + print( player + " TOGGLED NOCLIP" ) + + if ( player.IsNoclipping() ) + player.SetPhysics( MOVETYPE_WALK ) + else + player.SetPhysics( MOVETYPE_NOCLIP ) + + return true +} + +bool function ClientCommandCallbackToggleNotarget( entity player, array args ) +{ + if ( !GetConVarBool( "sv_cheats" ) ) + return true + + print( player + " TOGGLED NOTARGET" ) + + player.SetNoTarget( !player.GetNoTarget() ) + player.SetNoTargetSmartAmmo( player.GetNoTarget() ) + return true +} + +bool function ClientCommandCallbackToggleDemigod( entity player, array args ) +{ + if ( !GetConVarBool( "sv_cheats" ) ) + return true + + print( player + " TOGGLED DEMIGOD" ) + + if ( IsDemigod( player ) ) + DisableDemigod( player ) + else + EnableDemigod( player ) + + 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