- 356
- 71
- Версия MoonLoader
- Другое
Lua:
local pie_frame = imgui.OnFrame(
function() return pie_mode[0] end,
function(self)
if pie_act then
imgui.OpenPopup('PieMenu')
pie_act = false
end
if pie_mode[0] then
if pie.BeginPiePopup('PieMenu') then
if pie.PieMenuItem(u8'Окак') then
sampSendChat("Окак")
end
pie.EndPiePopup()
end
end
end
)