Опкод 0AF8.
Требования: SA:MP, SAMPFUNCS.
sampAddChatMessage(string text, int color)
Добавляет в окно чата SA:MP сообщение заданного цвета. Отличается от опкода тем, что не принимает динамическое количество аргументов для форматирования.
string text
текст сообщения
int color
цвет
script_name("Example script")
script_version("1.2")
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() wait(100) end
sampAddChatMessage(string.format("%s v%s loaded.", thisScript().name, thisScript().version), 0x00DD00)
end