summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/me.lua
blob: 783c155568f9d760e7158c3e412ecab5a0ca87e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function HandleMeCommand( Split, Player )
  table.remove(Split, 1);
	local Message = "";
	for i, Text in ipairs(Split) do
		Message = Message .. " " .. Text;
	end
	if  (Split[1] == nil) then
		Player:SendMessage(cChatColor.Yellow .. "[INFO] " .. cChatColor.White .. "Usage: /me <action>")
		return true
	end
	if (Split[1] ~= nil) then
		cRoot:Get():GetServer():BroadcastChat(Player:GetName() .. "" .. Message);
		return true
	end
end