LUA | скриптик

VRush

https://t.me/vrushscript
Автор темы
2,415
1,206
чуть изменил, только что проверил на своих диалогах - все работает, возможно ты нам сказал неверные ид диалогов\пункта
Lua:
local color1 = 0xFFC080
local event = require "lib.samp.events"

function main()
    while not isSampAvailable() do wait(100) end
        sampAddChatMessage("Скрипт для диалога загружен", color1)
    while true do
        wait(0)
    end
end

function event.onShowDialog(dialogId, style, title)
    sampAddChatMessage(dialogId, -1)
    if dialogId == 25012 then
        sampSendDialogResponse(dialogId, 1, 6)
        lua_thread.create(function ()
            wait(100)
                sampSendDialogResponse(25013, 1, 0)
        end)
    end
end
робит, сделай активацию
 

Pelmeska

Известный
935
231
робит, сделай активацию
сделал, пробуй
Lua:
local color1 = 0xFFC080
local event = require "lib.samp.events"
local active = false

function main()
    while not isSampAvailable() do wait(100) end
        sampAddChatMessage("Скрипт для диалога загружен. Для активации введите /dialog", color1)
        sampRegisterChatCommand("dialog", function ()
            if active == true then
            sampAddChatMessage("Скрипт для диалога отключен.", color1)
            active = false
        else
            sampAddChatMessage("Скрипт для диалога включен.", color1)
            active =  true
        end
    end)
    while true do
        wait(0)
    end
end

function event.onShowDialog(dialogId, style, title)
    if active then
    if dialogId == 25012 then
        sampSendDialogResponse(dialogId, 1, 6)
        lua_thread.create(function ()
            wait(100)
                sampSendDialogResponse(25013, 1, 0)
        end)
    end
end
end
 

Gorskin

🖕
Проверенный
1,349
1,200
сделал, пробуй
Lua:
local color1 = 0xFFC080
local event = require "lib.samp.events"
local active = false

function main()
    while not isSampAvailable() do wait(100) end
        sampAddChatMessage("Скрипт для диалога загружен. Для активации введите /dialog", color1)
        sampRegisterChatCommand("dialog", function ()
            if active == true then
            sampAddChatMessage("Скрипт для диалога отключен.", color1)
            active = false
        else
            sampAddChatMessage("Скрипт для диалога включен.", color1)
            active =  true
        end
    end)
    while true do
        wait(0)
    end
end

function event.onShowDialog(dialogId, style, title)
    if active then
    if dialogId == 25012 then
        sampSendDialogResponse(dialogId, 1, 6)
        lua_thread.create(function ()
            wait(100)
                sampSendDialogResponse(25013, 1, 0)
        end)
    end
end
end
Зачем так жестко?)
Lua:
local color1 = 0xFFC080
local event = require "lib.samp.events"
local act = false

function main()
    while not isSampAvailable() do wait(100) end
    sampAddChatMessage("Скрипт для диалога загружен", color1)
    sampRegisterChatCommand('gachi', function()
        act = not act
        printStringNow(act and "Hueta: ~g~ON" or "Hueta: ~r~OFF", 3000)
    end)
    wait(-1)
end

function event.onShowDialog(dialogId, style, title)
    sampAddChatMessage(dialogId, -1)
    if dialogId == 25012 and act then
        lua_thread.create(function ()
            sampSendDialogResponse(dialogId, 1, 6)
            wait(100)
            sampSendDialogResponse(25013, 1, 0)
        end)
    end
end
 

Pelmeska

Известный
935
231
Зачем так жестко?)
Lua:
local color1 = 0xFFC080
local event = require "lib.samp.events"
local act = false

function main()
    while not isSampAvailable() do wait(100) end
    sampAddChatMessage("Скрипт для диалога загружен", color1)
    sampRegisterChatCommand('gachi', function()
        act = not act
        printStringNow(act and "Hueta: ~g~ON" or "Hueta: ~r~OFF", 3000)
    end)
    wait(-1)
end

function event.onShowDialog(dialogId, style, title)
    sampAddChatMessage(dialogId, -1)
    if dialogId == 25012 and act then
        lua_thread.create(function ()
            sampSendDialogResponse(dialogId, 1, 6)
            wait(100)
            sampSendDialogResponse(25013, 1, 0)
        end)
    end
end
Я просто еще нуб, можешь обьяснить пожалуйста? act это сокращенный active?
 

Gorskin

🖕
Проверенный
1,349
1,200
Я просто еще нуб, можешь обьяснить пожалуйста? act это сокращенный active?
act это название переменной, можно хоть huy назвать и работать будет, act = not act это банальное переключение переменной с false на true и наоборот
 
  • Нравится
Реакции: Pelmeska