mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 11:35:22 +09:00
12 lines
451 B
Lua
12 lines
451 B
Lua
local Commands = 'expcore.commands'
|
|
local move_items = ext_require('expcore.common','move_items')
|
|
require 'config.command_parse_roles'
|
|
|
|
Commands.new_command('clear-inventory','Clears a players inventory')
|
|
:add_param('player',false,'player-role-alive')
|
|
:add_alias('clear-inv','move-inventory','move-inv')
|
|
:register(function(player,action_player)
|
|
local inv = action_player.get_main_inventory()
|
|
move_items(inv.get_contents())
|
|
inv.clear()
|
|
end) |