- 13
- 1
- Версия MoonLoader
- .026-beta
нужно чтоб меню Imgui открывалось по назначенной клавише из settings.ini
при изменении клавиши ini файл меняет кнопку, но я не понимаю, как прописать кнопку из конфига в сам lua
при изменении клавиши ini файл меняет кнопку, но я не понимаю, как прописать кнопку из конфига в сам lua
Lua:
require 'moonloader'
require 'imgui'
local spawned = false
local encoding = require 'encoding'
encoding.default = 'CP1251'
u8 = encoding.UTF8
local imgui = require 'imgui'
local inicfg = require 'inicfg'
local key = require 'vkeys'
local directIni = "moonloader\\settings.ini"
local mainIni = inicfg.load(nil, directIni)
local tLastKeys = {}
local vk = require 'vkeys'
local sampev = require 'lib.samp.events'
if mainIni.hotkey == nil then
mainIni.hotkey = {
bindClock = "49"
}
end
local rkeys = require 'rkeys'
imgui.HotKey = require('imgui_addons').HotKey
local ActiveClockMenu = {
v = decodeJson(mainIni.hotkey.bindClock)
}
main_window_state = imgui.ImBool(false)
function main()
sampRegisterChatCommand("kd", function() main_window_state.v = not main_window_state.v end)
while not isSampAvailable() do wait(100) end
bindClock = rkeys.registerHotKey(ActiveClockMenu.v, true, clockFunc)
if wasKeyPressed(mainIni.hotkey.bindClock) then
main_window_state.v = not main_window_state.v
end
while true do wait(1)
if sampIsLocalPlayerSpawned() and not spawned then
local ip, port = sampGetCurrentServerAddress()
if ip == "185.169.134.3" or ip == "185.169.134.4" or ip == "185.169.134.43" or ip == "185.169.134.44" or ip == "185.169.134.45" or ip == "185.169.134.5" or ip == "185.169.134.59" or ip == "185.169.134.61" or ip == "185.169.134.107" or ip == "185.169.134.109" or ip == "185.169.134.166" or ip == "185.169.134.171" or ip == "185.169.134.172" or ip == "185.169.134.173" or ip == "185.169.134.174" or ip =="80.66.82.191" or ip == "80.66.82.190" or ip == "80.66.82.188" or ip == "80.66.82.168" or ip == "80.66.82.159" or ip == "80.66.82.200" or ip == "" or ip == "80.66.82.144" then
else
sampAddChatMessage("{78b9ff}>> [Не любим перекупов!]{ffffff} Данный скрипт, работает только на серверах {db2e29}Arizona {ffffff}Role Play", -1)
sampAddChatMessage("{78b9ff}>> [Не любим перекупов!]{ffffff} Данный скрипт, работает только на серверах {db2e29}Arizona {ffffff}Role Play", -1)
sampAddChatMessage("{78b9ff}>> [Не любим перекупов!]{ffffff} Свяжитесь с разработчиком, если хотите уточнить возможность решения данной проблемы")
sampShowDialog(6406, "Связь с разработчиком", "{78b9ff}ВКонтакте - {FFFFFF}https://vk.com/tony.everett/", "Понял", DIALOG_STYLE_INPUT)
while sampIsDialogActive(6406) do wait(100) end
local result, button, _, input = sampHasDialogRespond(6406)
thisScript():unload()
return
end
wait(0)
name = sampGetCurrentServerName()
sampAddChatMessage("{78b9ff}>> [Не любим перекупов!]{FFFFFF}: Проверка на сервер пройдена, вы сейчас на: {ff6a6a}"..name.."{FFFFFF}!", -1)
sampAddChatMessage("{78b9ff}>> [Не любим перекупов!]{FFFFFF}: Приветствую, {FFFFFF}"..sampGetPlayerNickname(select(2, sampGetPlayerIdByCharHandle(PLAYER_PED))).."! {FFFFFF}Скрипт загружен и готов к работе", -1)
sampAddChatMessage("{78b9ff}>> [Не любим перекупов!]{FFFFFF}: {FFFFFF}Разработчик скрипта - Администратор Page {FFFFFF}Tony Everett", -1)
sampAddChatMessage("{78b9ff}>> [Не любим перекупов!]{FFFFFF}: {FFFFFF}Активация - {7eff39}/kd", -1)
sampAddChatMessage("{78b9ff}>> [Не любим перекупов!]{FFFFFF}: {FFFFFF}Активная версия скрипта - {7eff39}1.0", -1)
spawned = true
end
imgui.Process = main_window_state.v
end
end
function clockFunc()
main_window_state.v = not main_window_state.v
end
function sampev.onServerMessage(color, text)
if isKeyDown(VK_F) then --LMENU = левый альт
if text:find('{F345FC}[PREMIUM] {FFFFFF}%') then sampAddChatMessaget('/ot') end
end
end
function imgui.OnDrawFrame()
if main_window_state.v then
imgui.SetNextWindowPos(imgui.ImVec2(imgui.GetIO().DisplaySize.x / 2, imgui.GetIO().DisplaySize.y / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
imgui.SetNextWindowSize(imgui.ImVec2(300, 100), imgui.Cond.FirstUseEver)
imgui.Begin(u8"Не любим перекупов!", main_window_state, imgui.WindowFlags.NoResize)
imgui.Text(u8'Клавиша открытия настроек:')
imgui.SameLine()
if imgui.HotKey("##1", ActiveClockMenu, tLastKeys, 100) then
rkeys.changeHotKey(bindClock, ActiveClockMenu.v)
sampAddChatMessage("{47ff7e}Клавиша успешно изменена, старая - {F4A460}" .. table.concat(rkeys.getKeysName(tLastKeys.v), " + "), -1)
mainIni.hotkey.bindClock = encodeJson(ActiveClockMenu.v)
inicfg.save(mainIni, directIni)
end
imgui.End()
end
end
function imgui.TextColoredRGB(text)
local style = imgui.GetStyle()
local colors = style.Colors
local ImVec4 = imgui.ImVec4
local explode_argb = function(argb)
local a = bit.band(bit.rshift(argb, 24), 0xFF)
local r = bit.band(bit.rshift(argb, 16), 0xFF)
local g = bit.band(bit.rshift(argb, 8), 0xFF)
local b = bit.band(argb, 0xFF)
return a, r, g, b
end
local getcolor = function(color)
if color:sub(1, 6):upper() == 'SSSSSS' then
local r, g, b = colors[1].x, colors[1].y, colors[1].z
local a = tonumber(color:sub(7, 8), 16) or colors[1].w * 255
return ImVec4(r, g, b, a / 255)
end
local color = type(color) == 'string' and tonumber(color, 16) or color
if type(color) ~= 'number' then return end
local r, g, b, a = explode_argb(color)
return imgui.ImColor(r, g, b, a):GetVec4()
end
local render_text = function(text_)
for w in text_:gmatch('[^\r\n]+') do
local text, colors_, m = {}, {}, 1
w = w:gsub('{(......)}', '{%1FF}')
while w:find('{........}') do
local n, k = w:find('{........}')
local color = getcolor(w:sub(n + 1, k - 1))
if color then
text[#text], text[#text + 1] = w:sub(m, n - 1), w:sub(k + 1, #w)
colors_[#colors_ + 1] = color
m = n
end
w = w:sub(1, n - 1) .. w:sub(k + 1, #w)
end
if text[0] then
for i = 0, #text do
imgui.TextColored(colors_[i] or colors[1], text[i])
imgui.SameLine(nil, 0)
end
imgui.NewLine()
else imgui.Text(w) end
end
end
render_text(text)
end
Код:
[hotkey]
bindClock=[49]