mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 11:35:22 +09:00
20 lines
698 B
Lua
20 lines
698 B
Lua
--[[-- Commands Module - Toggle Friendly Fire
|
|
- Adds a command that toggle all friendly fire
|
|
@commands Toggle Friendly Fire
|
|
]]
|
|
|
|
local Commands = require("modules.exp_legacy.expcore.commands") --- @dep expcore.commands
|
|
require("modules.exp_legacy.config.expcore.command_general_parse")
|
|
|
|
-- For Modded Server Use
|
|
Commands.new_command('toggle-friendly-fire', {'expcom-ff.description'}, 'Toggle friendly fire')
|
|
:add_param('force', true, 'force')
|
|
:set_defaults{force=function(player)
|
|
return player.force
|
|
end}
|
|
:register(function(player, force)
|
|
force.friendly_fire = not force.friendly_fire
|
|
game.print{'expcom-ff.ff', player.name, force.friendly_fire}
|
|
return Commands.success
|
|
end)
|