2013-07-27 11:24:03 -04:00
|
|
|
function HandleRankCommand( Split, Player )
|
|
|
|
if Split[2] == nil or Split[3] == nil then
|
2013-07-31 12:10:59 -04:00
|
|
|
Player:SendMessage(cChatColor.Yellow .. "[INFO] " .. cChatColor.White .. "Usage: /rank [Player] [Group]")
|
2013-07-27 11:24:03 -04:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
local GroupsIni = cIniFile("groups.ini")
|
|
|
|
if( GroupsIni:ReadFile() == false ) then
|
|
|
|
LOG("Could not read groups.ini!")
|
|
|
|
end
|
|
|
|
if GroupsIni:FindKey(Split[3]) == -1 then
|
2013-07-31 12:10:59 -04:00
|
|
|
Player:SendMessage(cChatColor.Rose .. "[INFO] " .. cChatColor.White .. "Group does not exist")
|
2013-07-27 11:24:03 -04:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
local UsersIni = cIniFile("users.ini")
|
|
|
|
if( UsersIni:ReadFile() == false ) then
|
|
|
|
LOG("Could not read users.ini!")
|
|
|
|
end
|
|
|
|
UsersIni:DeleteKey(Split[2])
|
|
|
|
UsersIni:GetValueSet(Split[2], "Groups", Split[3])
|
|
|
|
UsersIni:WriteFile()
|
|
|
|
local loopPlayers = function( Player )
|
|
|
|
if Player:GetName() == Split[2] then
|
2013-07-31 12:10:59 -04:00
|
|
|
Player:SendMessage(cChatColor.Green .. "[INFO] " .. cChatColor.White .. "You were moved to group " .. Split[3] )
|
2013-07-27 11:24:03 -04:00
|
|
|
Player:LoadPermissionsFromDisk()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local loopWorlds = function ( World )
|
|
|
|
World:ForEachPlayer( loopPlayers )
|
|
|
|
end
|
|
|
|
cRoot:Get():ForEachWorld( loopWorlds )
|
2013-07-31 12:10:59 -04:00
|
|
|
Player:SendMessage(cChatColor.Green .. "[INFO] " .. cChatColor.White .. "Player " .. Split[2] .. " Was moved to " .. Split[3])
|
2013-07-27 11:24:03 -04:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2013-07-31 12:10:59 -04:00
|
|
|
function HandleGroupsCommand( Split, Player )
|
2013-08-02 02:48:47 -04:00
|
|
|
local GroupsIni = cIniFile("groups.ini")
|
2013-07-27 11:24:03 -04:00
|
|
|
if GroupsIni:ReadFile() == false then
|
2013-07-31 12:10:59 -04:00
|
|
|
Player:SendMessage(cChatColor.Rose .. "[INFO] " .. cChatColor.White .. "No groups found" )
|
2013-07-27 11:24:03 -04:00
|
|
|
end
|
|
|
|
Number = GroupsIni:NumKeys() - 1
|
|
|
|
Groups = {}
|
|
|
|
for i=0, Number do
|
|
|
|
table.insert( Groups, GroupsIni:KeyName(i) )
|
|
|
|
end
|
2013-07-31 12:10:59 -04:00
|
|
|
Player:SendMessage(cChatColor.Yellow .. "[INFO] " .. cChatColor.White .. "Found " .. #Groups .. " groups" )
|
|
|
|
Player:SendMessage(cChatColor.Gold .. table.concat( Groups, " " ) )
|
2013-07-27 11:24:03 -04:00
|
|
|
return true
|
|
|
|
end
|