- 148
- 15
- Версия MoonLoader
- .025-beta
Привет всем, помогите со скрипотом пожалуйста. При вводе команды /eda 0 - скрипт выключается, при вводе /eda 1 - скрипт не реагирует, а в сампе пишет шо неизвестная команда, шо делать?
Lua:
local sampev = require 'lib.samp.events'
local active = true -- по дефолту скрипт будет включен
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("eda", activatecmd)
while true do
sampSendChat("/house")
wait(1800000)
end
end
function activatecmd()
if active == 0 then -- Если active == 0, то присваиваем ему 1
active = 1
else -- Если active == 0, то присваиваем 1
active = 0
end
lua_thread.create(sampev.onShowDialog(dialogId, style, title, button1, button2, text))
end
function sampev.onShowDialog(dialogId, style, title, button1, button2, text)
if dialogId == 174 and active then
sampSendDialogResponse(174, 1, 1, -1)
return false
end
if dialogId == 2431 and active then
sampSendDialogResponse(2431, 1, 0, -1)
return false
end
if dialogId == 185 and active then
sampSendDialogResponse(185, 1, 6, -1)
return false
end
end