ev = require('samp.events')
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('repeat', function(id)
if id ~= nil then
name = sampGetPlayerNickname(id)
sampAddChatMessage('повторяем за '..name..'['..id..']', -1)
else
sampAddChatMessage('айди напиши', -1)
end
end); wait(-1)
end
function ev.onServerMessage(clr, msg)
if msg:match('говорит: .+') then
nick = msg:match('(.+)%[.-%]')
if nick == name then
text = msg:match('говорит: .+')
text = string.gsub(text, 'говорит:', '')
sampSendChat(text)
end
end
end