Не читает строчку

Seaside_

Участник
Автор темы
64
2
Версия MoonLoader
.026-beta
Скрипт не читает строчку.
Lua:
ev = require 'samp.events'
function main()
    while not isSampAvailable() do wait(0) end
    while true do wait(0)
    end
end

function ev.OnServerMessage(clr, text)
            muid = text:match('%.+(%a+)_(%a+)%[%d+]: Тест .+')
            if muid then
                sampSendChat('Тест')
            end
        end