- 27
- 1
- Версия MoonLoader
- Другое
Пишет script terminated
Код:
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('chatformat', toggleChatFormat)
end
local isCustomFormatEnabled = false
function toggleChatFormat()
isCustomFormatEnabled = not isCustomFormatEnabled
sampAddChatMessage(isCustomFormatEnabled and "Формат чата изменён." or "Формат чата отключён.", -1)
end
function onServerMessage(color, text)
if isCustomFormatEnabled then
local newText = text:gsub("^(%S+_%S+)%sсказал:%s(.+)", "- %1 говорит: %2")
if newText ~= text then
return false, color, newText
end
end
end
Код:
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('chatformat', toggleChatFormat)
end
local isCustomFormatEnabled = false
function toggleChatFormat()
isCustomFormatEnabled = not isCustomFormatEnabled
sampAddChatMessage(isCustomFormatEnabled and "Формат чата изменён." or "Формат чата отключён.", -1)
end
function onServerMessage(color, text)
if isCustomFormatEnabled then
local newText = text:gsub("^(%S+_%S+)%sсказал:%s(.+)", "- %1 говорит: %2")
if newText ~= text then
return false, color, newText
end
end
end