-- может работает, а может и нет,мне без разницы.
-- активация и кол-во регулируется в скрипте само,команды видишь
require('lib.moonloader')
local sampev = require('lib.samp.events')
local count,price = 0,0
local state = false
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('zakladka',function (args)
if args:find('(%d+) (%d+)') then
count,price = args:match('(%d+) (%d+)')
else
sampAddChatMessage('can`t find numbers', -1)
end
end)
sampRegisterChatCommand('zakl',function ()
state = not state
sampAddChatMessage(state and 'on' or 'off', -1)
end)
while true do
wait(0)
if state then
if isKeyJustPressed(VK_Z) then
sampSendChat('/command')
end
end
end
end
function sampev.onShowDialog(dialogId, style, title, button1, button2, text)
if state then
if title:find('Закладка | {.-}Действие') then
lua_thread.create(function ()
sampSendDialogResponse(dialogId,1,0,'') -- first action
wait(100)
sampSendDialogResponse(dialogId,1,0,tostring(count))
wait(100)
sampSendDialogResponse(dialogId,1,1,'') -- second action
wait(100)
sampSendDialogResponse(dialogId,1,0,tostring(price))
wait(100)
sampSendDialogResponse(dialogId,1,2,'') -- third action
wait(100)
sampSendDialogResponse(dialogId,1,0,'')
wait(100)
end)
end
end
end