require "lib.moonloader"
local ev = require("lib.samp.events")
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage("Загружено", -1)
while true do
wait(0)
end
end
function ev.onDisplayGameText(style, time, text)
sampAddChatMessage(text, -1)
end