Added command parse for roles

This commit is contained in:
Cooldude2606
2019-04-09 21:48:09 +01:00
parent 9df2a958f8
commit 7cfcedd97b
5 changed files with 56 additions and 24 deletions

View File

@@ -1,9 +1,10 @@
local Commands = require 'expcore.commands'
local Roles = require 'expcore.roles'
require 'config.command_parse_general'
require 'config.command_parse_role'
Commands.new_command('kill','Kills yourself or another player.')
:add_param('player',true,'player-alive') -- the player to kill, must be alive to be valid
:add_param('player',true,'player-role-alive') -- the player to kill, must be alive to be valid
:set_defaults{player=function(player)
-- default is the player unless they are dead
if player.character and player.character.health > 0 then
@@ -18,13 +19,7 @@ end}
if player == action_player then
action_player.character.die()
elseif Roles.player_allowed(player,'command/kill/always') then
local player_highest = Roles.get_player_highest_role(player)
local action_player_highest = Roles.get_player_highest_role(action_player)
if player_highest.index < action_player_highest.index then
action_player.character.die()
else
return Commands.error{'expcore-roles.command-error-higher-role',action_player.name}
end
action_player.character.die()
else
return Commands.error{'expcore-commands.unauthorized'}
end