-- Рекон-панели.
if cfg.temp.user_isRecon and cfg.settings.widget_recon then
for textdraw_id = 0, 2304 do
if sampTextdrawIsExists(textdraw_id) then
sampTextdrawSetPos(textdraw_id, 10000, 10000)
local textdraw_string = sampTextdrawGetString(textdraw_id)
if textdraw_string:find('(%w+_%w+).%((%d+)%)') then
spectatePlayer_id = textdraw_string:match('%d+')
end
end
end
imgui.PushFont(font_22)
imgui.SetNextWindowPos(imgui.ImVec2(resX-resX+20, resY/2-100))
imgui.Begin('##window_widget_recon1', window_widget_recon, imgui.WindowFlags.NoResize + imgui.WindowFlags.NoTitleBar + imgui.WindowFlags.AlwaysAutoResize)
imgui.BeginChild('window_widget_recon1', imgui.ImVec2(100, 300))
if imgui.Button(u8'СТАТ', imgui.ImVec2(100, 0)) then if spectatePlayer_id ~= nil then sampSendChat('/getstats '..spectatePlayer_id) else sampAddChatMessage(script_prefix..'Статистика не подгрузилась', -1) end end
if imgui.Button(u8'ДЕНЬГИ', imgui.ImVec2(100, 0)) then if spectatePlayer_id ~= nil then sampSendChat('/checkmoney '..spectatePlayer_id) else sampAddChatMessage(script_prefix..'Статистика не подгрузилась', -1) end end
if imgui.Button(button_recon_mute and u8'/mute <' or u8'/mute >', imgui.ImVec2(100, 0)) then button_recon_mute = not button_recon_mute end
if imgui.Button(button_recon_ban and u8'/ban <' or u8'/ban >', imgui.ImVec2(100, 0)) then button_recon_ban = not button_recon_ban end
imgui.EndChild()
imgui.SameLine()
if button_recon_mute then
imgui.BeginChild('##button_recon_mute', imgui.ImVec2(100, -1))
imgui.Button(u8'МГ', imgui.ImVec2(100, 0))
imgui.Button(u8'ФЛУД', imgui.ImVec2(100, 0))
imgui.Button(u8'КАПС', imgui.ImVec2(100, 0))
if imgui.Button(u8'МАТ', imgui.ImVec2(100, 0)) then if spectatePlayer_id ~= nil then sampSendChat('/mute '..spectatePlayer_id..' 30 Мат') else sampAddChatMessage(script_prefix..'Статистика не подгрузилась', -1) end end
imgui.Button(u8'ОСК', imgui.ImVec2(100, 0))
imgui.EndChild()
end
imgui.SameLine()
if button_recon_ban then
imgui.SameLine()
imgui.BeginChild('##button_recon_ban', imgui.ImVec2(100, -1))
imgui.Button(u8'ЧИТЫ', imgui.ImVec2(100, 0))
imgui.Button(u8'ХУЙ', imgui.ImVec2(100, 0))
imgui.Button(u8'ПИЗДА', imgui.ImVec2(100, 0))
imgui.Button(u8'КОКС', imgui.ImVec2(100, 0))
imgui.EndChild()
end
imgui.End()
imgui.PopFont()
-- imgui.SetNextWindowPos(imgui.ImVec2(1800, 400))
-- imgui.Begin('##window_widget_recon2', window_widget_recon, imgui.WindowFlags.NoResize + imgui.WindowFlags.NoTitleBar + imgui.WindowFlags.AlwaysAutoResize)
-- imgui.Text(u8'Панель с информацией')
-- imgui.End()
end