Fixed Load

This commit is contained in:
Cooldude2606
2018-01-06 14:21:00 +00:00
parent 24d474dbaa
commit 465c055649
3 changed files with 11 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ commands.add_command('report', 'Reports a player', {'player','reason',true}, fun
Admin.report(player,event.player_index,reason)
end)
commands.add_command('give_warnings', 'Gives a player a warnings', {'player','reason',true}, function(event,args)
commands.add_command('give-warnings', 'Gives a player a warnings', {'player','reason',true}, function(event,args)
local player = Game.get_player(args.player)
local reason = args.reason
if not player then player_return({'commands.invalid-player',args.player}) return commands.error end
@@ -24,7 +24,7 @@ commands.add_command('give_warnings', 'Gives a player a warnings', {'player','re
Admin.give_warning(player,event.player_index,reason)
end)
commands.add_command('temp_ban', 'Temp Ban A Player', {'player','reason',true}, function(event,args)
commands.add_command('temp-ban', 'Temp Ban A Player', {'player','reason',true}, function(event,args)
local player = Game.get_player(args.player)
local reason = args.reason
if not player then player_return({'commands.invalid-player',args.player}) return commands.error end
@@ -32,21 +32,21 @@ commands.add_command('temp_ban', 'Temp Ban A Player', {'player','reason',true},
Admin.temp_ban(player,event.player_index,reason)
end)
commands.add_command('clear_warings', 'Clears the warnings on a player', {'player'}, function(event,args)
commands.add_command('clear-warings', 'Clears the warnings on a player', {'player'}, function(event,args)
local player = Game.get_player(args.player)
local reason = args.reason
if not player then player_return({'commands.invalid-player',args.player}) return commands.error end
Admin.clear_warings(player,event.player_index)
end)
commands.add_command('clear_reports', 'Clears the reports from a player', {'player'}, function(event,args)
commands.add_command('clear-reports', 'Clears the reports from a player', {'player'}, function(event,args)
local player = Game.get_player(args.player)
local reason = args.reason
if not player then player_return({'commands.invalid-player',args.player}) return commands.error end
Admin.clear_reports(player,event.player_index)
end)
commands.add_command('clear_player', 'Clears reports and reports and removes temp-ban', {'player'}, function(event,args)
commands.add_command('clear-player', 'Clears reports and reports and removes temp-ban', {'player'}, function(event,args)
local player = Game.get_player(args.player)
local reason = args.reason
if not player then player_return({'commands.invalid-player',args.player}) return commands.error end

View File

@@ -30,6 +30,7 @@ require('Commands/kill')
require('Commands/repair')
require('Commands/tags')
require('Commands/tp') -- requires Admin/admin
require('Commands/admin') -- requires Admin/reports
-- guis dir
require('Guis/readme')

View File

@@ -60,11 +60,11 @@ groups['Admin']:edit('allow',false,{
['tasklist']=true,
['rank-changer']=true,
['admin-commands']=true,
['give_warnings']=true,
['temp_ban']=true,
['clear_warings']=true,
['clear_reports']=true,
['clear_player']=true
['give-warnings']=true,
['temp-ban']=true,
['clear-warings']=true,
['clear-reports']=true,
['clear-player']=true
})
groups['User']:edit('allow',false,{
['player-list']=true,