Added /cheat-mode and /interface

This commit is contained in:
Cooldude2606
2019-03-06 23:17:52 +00:00
parent 402548dded
commit aac2ba82e6
5 changed files with 105 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
local Commands = require 'expcore.commands'
require 'expcore.common_parse'
Commands.new_command('toggle-cheat-mode','Toggles cheat mode for your player, or another player.')
:add_param('player',true,'player') -- player to toggle chest mode of, can be nil for self
:add_defaults{player=function(player)
return player -- default is the user using the command
end}
:add_tag('admin_only',true)
:register(function(player,action_player,raw)
action_player.cheat_mode = not action_player.cheat_mode
end)