aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-15 17:58:33 +0000
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-15 17:58:33 +0000
commit06924c215dcf8d4dd425cbbf178509bc222c2f7d (patch)
tree36db62761142f7a3430a5be26a335168d2da8d65 /Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut
parent1b6e5af70bf442c684b891003e516329b190c130 (diff)
downloadNorthstarMods-06924c215dcf8d4dd425cbbf178509bc222c2f7d.tar.gz
NorthstarMods-06924c215dcf8d4dd425cbbf178509bc222c2f7d.zip
more playtest fixes
Diffstat (limited to 'Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut')
-rw-r--r--Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut25
1 files changed, 0 insertions, 25 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut b/Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut
index ac08c7b55..e629e5aea 100644
--- a/Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut
+++ b/Northstar.Custom/mod/scripts/vscripts/_northstar_devcommands.gnut
@@ -4,7 +4,6 @@ global function NorthstarDevCommands_Init
void function NorthstarDevCommands_Init()
{
AddClientCommandCallback( "noclip", ClientCommandCallbackToggleNoclip )
- AddClientCommandCallback( "script", ClientCommandCallbackEvalScript )
AddClientCommandCallback( "kill", ClientCommandCallbackKill )
AddClientCommandCallback( "explode", ClientCommandCallbackExplode )
}
@@ -22,30 +21,6 @@ bool function ClientCommandCallbackToggleNoclip( entity player, array<string> ar
return true
}
-bool function ClientCommandCallbackEvalScript( entity player, array<string> args )
-{
- if ( args.len() < 1 || GetConVarInt( "sv_cheats" ) != 1 )
- return true
-
- // todo: rewrite this at some point to use a concommand because clientcommands can't just take in a single string with spaces, quotes etc
- // should just have the concommand call a clientcommand manually with properly formatted args
- string joinedArgs = args[0]
- for ( int i = 1; i < args.len(); i++ )
- joinedArgs += " " + args[i]
-
- try
- {
- compilestring( joinedArgs )()
- }
- catch (exception)
- {
- // should probably send this to the client at some point
- // no need to log here because compilestring errors already do that
- }
-
- return true
-}
-
bool function ClientCommandCallbackKill( entity player, array<string> args )
{
if ( IsAlive( player ) && GetConVarInt( "sv_cheats" ) == 1 )