local gos_text = 'строка 1 \n строка 2 \n строка 3'
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('gos', gos)
while true do
wait(0)
--code
end
end
function gos()
sampShowDialog(228, 'gos', gos_text, false, 'x', 0)
end