- 156
- 16
- Версия MoonLoader
- .026-beta
Написал код который переводит флуд с чата в диалог, но что-то пошло не так, помогите с кодом..
Lua:
script_name('nfl')
require "lib.moonloader"
local sampev = require "lib.samp.events"
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0) end
end
function sampev.onServerMessage(color, text)
if (text:find('Больница')) then
sampShowDialog(1, 'Список медиков:', text .. '\n', "йцу", 'Закрыть', 4)
end
end