- 86
- 44
- Версия MoonLoader
- .026-beta
О великие всезнающие по вопросам Lua, объясните почему onSendCommand флудит и почему вызывается у меня ошибка с опкодом 0AF9
checkboxChat и WinState это bool mimgui
При вызове спамит, а в консоле появляется ошибка с опкодом 0AF9
checkboxChat и WinState это bool mimgui
Lua:
function sampev.onSendCommand(text)
local Channels = {
'Всем',
"-"
}
if checkboxChat[0] == false and WinState[0] == true and text:find('/r (.*)') then
dtext = text:match('/r (.*)')
sampAddChatMessage(dtext, 0xFFFFFF)
if checkboxScob[0] then
sampSendChat('/r ['..tostring(Channels[1])..'] '..Channels[2]..' ['..tostring(Channels[1])..']: '..tostring(dtext))
end
end
end