переключение переменной

$Mr.R1ch$

Активный
Автор темы
337
51
Версия MoonLoader
Другое
Доброго времени суток, возник вопрос у меня. В своем скрипте я реализую умную рацию, то есть выбор каналов для рации департамента, и нужно сделать так, когда при нажатии на какой то канал, предыдущий выключался, то есть переключение, чтобы потом оно по 2 или по 3 раза не отправляло сообщение в чат (чтобы не делать миллион переменных в несколько кнопок), в зависимости сколько было активировано каналов. Я написал небольшой скрипт для примера, в нем есть три кнопки, и если активировать и ввести команду /testing, то скрипт выведет определенное сообщение, тоже самое и с остальными кнопками. Например, я нажал на первую кнопку и мне вывело число 1, а если на вторую то уже будет выводить 1 и 2, а надо чтобы вывело только цифру 2, но я пока не понимаю как это реализовать. Активация скрипта /example
 

Вложения

  • Example.lua
    2.3 KB · Просмотры: 2
Последнее редактирование:
Решение
Lua:
local imgui = require "mimgui"
local encoding = require "encoding"
encoding.default = "CP1251"
u8 = encoding.UTF8

local window = imgui.new.bool(true)

local wChat = 0
local chatArr = {
    [1] = "/r",
    [2] = "/f",
}

imgui.OnInitialize(function()
    imgui.GetIO().IniFilename = nil
end)

imgui.OnFrame(function() return window[0] end, function(self)
    local resX, resY = getScreenResolution()
    imgui.SetNextWindowPos(imgui.ImVec2(resX / 2, resY / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
    imgui.SetNextWindowSize(imgui.ImVec2(300, 200), imgui.Cond.FirstUseEver)
    imgui.Begin("Title", window)
    if imgui.Button(u8("Выключить рацию")) then
        wChat = 0
        sampAddChatMessage("Рация выключена", -1)...

Dmitriy Makarov

25.05.2021
Проверенный
2,511
1,138
Такое?
a.gif

Lua:
local imgui = require "mimgui"
local encoding = require "encoding"
encoding.default = "CP1251"
u8 = encoding.UTF8

local window = imgui.new.bool(true)

local wChat = imgui.new.int(0)
local chatArr = {
    [1] = "/r",
    [2] = "/f",
}

imgui.OnInitialize(function()
    imgui.GetIO().IniFilename = nil
end)

imgui.OnFrame(function() return window[0] end, function(self)
    local resX, resY = getScreenResolution()
    imgui.SetNextWindowPos(imgui.ImVec2(resX / 2, resY / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
    imgui.SetNextWindowSize(imgui.ImVec2(300, 200), imgui.Cond.FirstUseEver)
    imgui.Begin("Title", window)
    imgui.RadioButtonIntPtr(u8("Выключить"), wChat, 0)
    imgui.RadioButtonIntPtr(u8("Рация подразделения (/r)"), wChat, 1)
    imgui.RadioButtonIntPtr(u8("Рация организации (/f)"), wChat, 2)
    imgui.End()
end)

function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("chat", function(text)
        if tostring(text) ~= "" then
            if wChat[0] == 0 then
                sampAddChatMessage("Рация выключена", -1)
                return
            end
            sampSendChat(chatArr[wChat[0]].." "..text)
        end
    end)

    sampRegisterChatCommand("mimgui", function()
        window[0] = not window[0]
    end)
    wait(-1)
end
 
  • Нравится
Реакции: $Mr.R1ch$

$Mr.R1ch$

Активный
Автор темы
337
51
Такое?
Посмотреть вложение 247154
Lua:
local imgui = require "mimgui"
local encoding = require "encoding"
encoding.default = "CP1251"
u8 = encoding.UTF8

local window = imgui.new.bool(true)

local wChat = imgui.new.int(0)
local chatArr = {
    [1] = "/r",
    [2] = "/f",
}

imgui.OnInitialize(function()
    imgui.GetIO().IniFilename = nil
end)

imgui.OnFrame(function() return window[0] end, function(self)
    local resX, resY = getScreenResolution()
    imgui.SetNextWindowPos(imgui.ImVec2(resX / 2, resY / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
    imgui.SetNextWindowSize(imgui.ImVec2(300, 200), imgui.Cond.FirstUseEver)
    imgui.Begin("Title", window)
    imgui.RadioButtonIntPtr(u8("Выключить"), wChat, 0)
    imgui.RadioButtonIntPtr(u8("Рация подразделения (/r)"), wChat, 1)
    imgui.RadioButtonIntPtr(u8("Рация организации (/f)"), wChat, 2)
    imgui.End()
end)

function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("chat", function(text)
        if tostring(text) ~= "" then
            if wChat[0] == 0 then
                sampAddChatMessage("Рация выключена", -1)
                return
            end
            sampSendChat(chatArr[wChat[0]].." "..text)
        end
    end)

    sampRegisterChatCommand("mimgui", function()
        window[0] = not window[0]
    end)
    wait(-1)
end
да, типо такого только на кнопках простых, а через них будет активироваться переменная нужного канала, а если нажать на другую кнопку, то та волна отключается и включается текущая, как пример такой рации у МВД хелпер
 
Последнее редактирование:

Dmitriy Makarov

25.05.2021
Проверенный
2,511
1,138
Lua:
local imgui = require "mimgui"
local encoding = require "encoding"
encoding.default = "CP1251"
u8 = encoding.UTF8

local window = imgui.new.bool(true)

local wChat = 0
local chatArr = {
    [1] = "/r",
    [2] = "/f",
}

imgui.OnInitialize(function()
    imgui.GetIO().IniFilename = nil
end)

imgui.OnFrame(function() return window[0] end, function(self)
    local resX, resY = getScreenResolution()
    imgui.SetNextWindowPos(imgui.ImVec2(resX / 2, resY / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
    imgui.SetNextWindowSize(imgui.ImVec2(300, 200), imgui.Cond.FirstUseEver)
    imgui.Begin("Title", window)
    if imgui.Button(u8("Выключить рацию")) then
        wChat = 0
        sampAddChatMessage("Рация выключена", -1)
    end
    if imgui.Button(u8("Рация подразделения (/r)")) then
        wChat = 1
        sampAddChatMessage("Выбрана рация подразделения", -1)
    end
    if imgui.Button(u8("Рация организации (/f)")) then
        wChat = 2
        sampAddChatMessage("Выбрана рация организации", -1)
    end
    imgui.End()
end)

function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("chat", function(text)
        if tostring(text) ~= "" then
            if wChat == 0 then
                sampAddChatMessage("Рация выключена", -1)
                return
            end
            sampSendChat(chatArr[wChat].." "..text)
        end
    end)

    sampRegisterChatCommand("mimgui", function()
        window[0] = not window[0]
    end)
    wait(-1)
end
 
  • Нравится
Реакции: $Mr.R1ch$

$Mr.R1ch$

Активный
Автор темы
337
51
Lua:
local imgui = require "mimgui"
local encoding = require "encoding"
encoding.default = "CP1251"
u8 = encoding.UTF8

local window = imgui.new.bool(true)

local wChat = 0
local chatArr = {
    [1] = "/r",
    [2] = "/f",
}

imgui.OnInitialize(function()
    imgui.GetIO().IniFilename = nil
end)

imgui.OnFrame(function() return window[0] end, function(self)
    local resX, resY = getScreenResolution()
    imgui.SetNextWindowPos(imgui.ImVec2(resX / 2, resY / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
    imgui.SetNextWindowSize(imgui.ImVec2(300, 200), imgui.Cond.FirstUseEver)
    imgui.Begin("Title", window)
    if imgui.Button(u8("Выключить рацию")) then
        wChat = 0
        sampAddChatMessage("Рация выключена", -1)
    end
    if imgui.Button(u8("Рация подразделения (/r)")) then
        wChat = 1
        sampAddChatMessage("Выбрана рация подразделения", -1)
    end
    if imgui.Button(u8("Рация организации (/f)")) then
        wChat = 2
        sampAddChatMessage("Выбрана рация организации", -1)
    end
    imgui.End()
end)

function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("chat", function(text)
        if tostring(text) ~= "" then
            if wChat == 0 then
                sampAddChatMessage("Рация выключена", -1)
                return
            end
            sampSendChat(chatArr[wChat].." "..text)
        end
    end)

    sampRegisterChatCommand("mimgui", function()
        window[0] = not window[0]
    end)
    wait(-1)
end
спасибо большое

Lua:
local imgui = require "mimgui"
local encoding = require "encoding"
encoding.default = "CP1251"
u8 = encoding.UTF8

local window = imgui.new.bool(true)

local wChat = 0
local chatArr = {
    [1] = "/r",
    [2] = "/f",
}

imgui.OnInitialize(function()
    imgui.GetIO().IniFilename = nil
end)

imgui.OnFrame(function() return window[0] end, function(self)
    local resX, resY = getScreenResolution()
    imgui.SetNextWindowPos(imgui.ImVec2(resX / 2, resY / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
    imgui.SetNextWindowSize(imgui.ImVec2(300, 200), imgui.Cond.FirstUseEver)
    imgui.Begin("Title", window)
    if imgui.Button(u8("Выключить рацию")) then
        wChat = 0
        sampAddChatMessage("Рация выключена", -1)
    end
    if imgui.Button(u8("Рация подразделения (/r)")) then
        wChat = 1
        sampAddChatMessage("Выбрана рация подразделения", -1)
    end
    if imgui.Button(u8("Рация организации (/f)")) then
        wChat = 2
        sampAddChatMessage("Выбрана рация организации", -1)
    end
    imgui.End()
end)

function main()
    while not isSampAvailable() do wait(0) end
    sampRegisterChatCommand("chat", function(text)
        if tostring(text) ~= "" then
            if wChat == 0 then
                sampAddChatMessage("Рация выключена", -1)
                return
            end
            sampSendChat(chatArr[wChat].." "..text)
        end
    end)

    sampRegisterChatCommand("mimgui", function()
        window[0] = not window[0]
    end)
    wait(-1)
end
есть ещё вопрос, вот у меня есть эти кнопки, и надо чтобы при нажатии на какую то, она подсветилась, а если нажать на другую то предыдущая погаснет и загорится нажатия, в прочем тоже переключение

Lua:
function imgui.ButtonSelected(name, size)
       if chatArr[wChat] then
          imgui.PushStyleColor(imgui.Col.Button, imgui.ImVec4(0.51, 0.47, 0.0, 0.60))
          imgui.PushStyleColor(imgui.Col.ButtonHovered, imgui.ImVec4(0.51, 0.47, 0.0, 1.0))
          imgui.PushStyleColor(imgui.Col.ButtonActive, imgui.ImVec4(0.51, 0.47, 0.0, 1.0))
          imgui.Button(name, size)
          imgui.PopStyleColor(3)
       else
          imgui.PushStyleColor(imgui.Col.Button, imgui.ImVec4(0.93, 0.45, 0.33, 0.60))
          imgui.PushStyleColor(imgui.Col.ButtonHovered, imgui.ImVec4(0.93, 0.45, 0.33, 1.0))
          imgui.PushStyleColor(imgui.Col.ButtonActive, imgui.ImVec4(0.93, 0.45, 0.33, 1.0))
          imgui.PopStyleColor(3)
          return imgui.Button(name, size)
       end
    end


    if imgui.ButtonSelected(u8("Рация подразделения (/r)")) then
        wChat = 1
        sampAddChatMessage("Выбрана рация подразделения", -1)
    end
    if imgui.ButtonSelected(u8("Рация организации (/f)")) then
        wChat = 2
        sampAddChatMessage("Выбрана рация организации", -1)
    end

@Dmitriy Makarov
 
Последнее редактирование:

Dmitriy Makarov

25.05.2021
Проверенный
2,511
1,138
есть ещё вопрос, вот у меня есть эти кнопки, и надо чтобы при нажатии на какую то, она подсветилась, а если нажать на другую то предыдущая погаснет и загорится нажатия, в прочем тоже переключение
Я не знаю.. Извини. 😢
По-прежнему могу предложить вариант с радио-кнопками.
 

$Mr.R1ch$

Активный
Автор темы
337
51
Я не знаю.. Извини. 😢
По-прежнему могу предложить вариант с радио-кнопками.
просто проблема в том, что все кнопки начинают подсвечиваться если нажать на любую, но я попробую сделать что то сам, мб идея сама прийдёт