!<id> <pm>
pls help!
function totable(t,match) 	local cmd = {} 	if not match then 		match = "[%S]+" 	else 		match = "["..match.."]+" 	end 	for word in string.gmatch(t,match) do 		table.insert(cmd,word) 	end 	return cmd end addhook("say","sa") function sa(id,txt) 	local t = totable(txt) 	if string.sub(t[1],1,1) == "!" then 		local pl = tonumber(string.sub(t[1],2)) 		if player(pl,"exists") then 			if id ~= pl then 				local m = "" 				for i, v in ipairs(t) do 					if i == 2 then 						m = m..""..v 					elseif i > 2 then 						m = m.." "..v 					end 				end 				msg2(id,"©192128255To "..player(pl,"name")..": "..m) 				msg2(pl,"©192128255From "..player(id,"name")..": "..m) 			end 		end 		return 1 	end end