Привет, вот код, красит строку, которая содержит фразу "говорит".
Код:
require "lib.moonloader"
local hook = require "lib.samp.events"
function hook.onServerMessage(color, message)
if message:find("говорит") then return {0xFF0000,message} end
end
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0) end
end
А это красит все сообщения, которые ты получаешь от сервера.
Код:
require "lib.moonloader"
local hook = require "lib.samp.events"
function hook.onServerMessage(color, message)
return {0xFF0000,message}
end
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do wait(0) end
end