- 622
- 369
- Версия MoonLoader
- .026-beta
Не срабатывает
sampSendChat("/engine")
. Пытался вставлять другие команды, всё равно не срабатывает. Однако print(2)
срабатывает, из-за чего вообще не понятно, в чем ошибка. В логах Мунлоадера ничего необычного.
Lua:
local sampev = require 'lib.samp.events'
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
wait(-1)
end
function sampev.onServerMessage(color, text)
if text:find('Ключи не вставлены') then
sampSendChat("/key")
print(1)
sampSendChat("/engine")
print(2)
return false
end
end