гемор на вечер

фaрик

Известный
Автор темы
163
25
Версия SA-MP
  1. 0.3.7 (R1)
кароче нужно чтобы по бинду прописывалась команда при которой открывается серверный диалог в который скрипт будет заполнять диалоги нужными значениями как на гифке есть желающие?
fig.gif
 
Решение
любой современный биндер сам по 5 диалогам в нужном порядке кликает с нужным текстом? а ссылку можно
Lua:
-- может работает, а может и нет,мне без разницы.
-- активация и кол-во регулируется в скрипте само,команды видишь
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 =...

chromiusj

Стань той переменой, которую хочешь увидеть в мире
Модератор
5,736
4,041
любой современный биндер сам по 5 диалогам в нужном порядке кликает с нужным текстом? а ссылку можно
Lua:
-- может работает, а может и нет,мне без разницы.
-- активация и кол-во регулируется в скрипте само,команды видишь
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
 

MrDorlik

Известный
953
382
ни слова в теме не написано о кликах на диалог, ну если есть то ладно