mirror of
https://github.com/etlegacy/wolfadmin.git
synced 2024-11-10 06:41:53 +00:00
Merge pull request #5 from rmarquis/develop/1.2.1
This commit is contained in:
commit
f5da5b151b
1 changed files with 6 additions and 21 deletions
|
@ -19,29 +19,14 @@ local auth = wolfa_requireModule("auth.auth")
|
|||
local commands = wolfa_requireModule("commands.commands")
|
||||
local settings = wolfa_requireModule("util.settings")
|
||||
|
||||
function commandShuffle(clientId, command, type)
|
||||
if type == "xp" then
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat -1 \"^dshuffle: ^9teams were shuffled by XP.\";")
|
||||
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "shuffle_teams")
|
||||
elseif type == "sr" then
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat -1 \"^dshuffle: ^9teams were shuffled by SR.\";")
|
||||
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "shuffle_teams_sr")
|
||||
elseif type == nil then
|
||||
if settings.get("fs_game") == "legacy" then
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat -1 \"^dshuffle: ^9teams were shuffled by SR.\";")
|
||||
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "shuffle_teams_sr")
|
||||
else
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat -1 \"^dshuffle: ^9teams were shuffled by XP.\";")
|
||||
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "shuffle_teams")
|
||||
end
|
||||
function commandShuffle(clientId, command)
|
||||
if settings.get("fs_game") == "legacy" then
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat -1 \"^dshuffle: ^9teams were shuffled.\";")
|
||||
else
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "csay "..clientId.." \"^dshuffle usage: "..commands.getadmin("shuffle")["syntax"].."\";")
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "cchat -1 \"^dshuffle: ^9teams were shuffled by XP.\";")
|
||||
end
|
||||
et.trap_SendConsoleCommand(et.EXEC_APPEND, "shuffle_teams")
|
||||
|
||||
return true
|
||||
end
|
||||
commands.addadmin("shuffle", commandShuffle, auth.PERM_SHUFFLE, "shuffle the teams to try and even them", "^2!shuffle ^9(^hxp|sr^9)", nil, (settings.get("g_standalone") == 0))
|
||||
commands.addadmin("shuffle", commandShuffle, auth.PERM_SHUFFLE, "shuffle the teams to try and even them", "^2!shuffle ^9", nil, (settings.get("g_standalone") == 0))
|
||||
|
|
Loading…
Reference in a new issue