function retroCommands(text)
if text:find("!", 1, 1) then
local command = gettok(text, 1, 32):sub(2)
if #command > 0 then
local arguments = text:sub(#command+3)
executeCommandHandler(command, source, arguments)
end
end
end
addEventHandler("onPlayerChat", getRootElement(), retroCommands)
-- Aibo Credit