mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 03:25:23 +09:00
47 lines
1.9 KiB
Lua
47 lines
1.9 KiB
Lua
--[[-- Commands Module - Cheat Mode
|
|
- Adds a command that allows players to enter cheat mode
|
|
@commands Cheat-Mode
|
|
]]
|
|
|
|
local Commands = require("modules.exp_legacy.expcore.commands") --- @dep expcore.commands
|
|
require("modules.exp_legacy.config.expcore.command_general_parse")
|
|
|
|
--- Toggles cheat mode for your player, or another player.
|
|
-- @command toggle-cheat-mode
|
|
-- @tparam[opt=self] LuaPlayer player player to toggle chest mode of, can be nil for self
|
|
Commands.new_command("toggle-cheat-mode", { "expcom-cheat.description-cheat" }, "Toggles cheat mode for your player, or another player.")
|
|
:add_param("player", true, "player")
|
|
:set_defaults{ player = function(player)
|
|
return player -- default is the user using the command
|
|
end }
|
|
:set_flag("admin_only")
|
|
:register(function(_, player)
|
|
player.cheat_mode = not player.cheat_mode
|
|
return Commands.success
|
|
end)
|
|
|
|
Commands.new_command("research-all", { "expcom-cheat.description-res" }, "Set all research for your force.")
|
|
:set_flag("admin_only")
|
|
:add_param("force", true, "force")
|
|
:set_defaults{ force = function(player)
|
|
return player.force
|
|
end }
|
|
:register(function(player, force)
|
|
force.research_all_technologies()
|
|
game.print{ "expcom-cheat.res", player.name }
|
|
return Commands.success
|
|
end)
|
|
|
|
Commands.new_command("toggle-always-day", { "expcom-cheat.description-day" }, "Toggles always day in surface.")
|
|
:set_flag("admin_only")
|
|
:add_param("surface", true, "surface")
|
|
:set_defaults{ surface = function(player)
|
|
-- Intentionally left as player.surface to allow use in remote view
|
|
return player.surface
|
|
end }
|
|
:register(function(player, surface)
|
|
surface.always_day = not surface.always_day
|
|
game.print{ "expcom-cheat.day", player.name, surface.always_day }
|
|
return Commands.success
|
|
end)
|