if tpmenu_secon_state.v then
imgui.ShowCursor = true
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(415, 400), imgui.Cond.FirstUseEver)
if imgui.Begin(u8"Teleport Menu AT2", tpmenu_secon_state, imgui.WindowFlags.NoResize + imgui.WindowFlags.NoCollapse) then
imgui.BeginChild('##leftpane5', imgui.ImVec2(130, 350), true)
if imgui.Button(u8" Основное ", imgui.ImVec2(115, 30)) then
tpmenu_window_state.v = true
tpmenu_secon_state.v = false
end
if imgui.Button(u8" Дополнительно ", imgui.ImVec2(115, 30)) then
tpmenu_secon_state.v = true
tpmenu_window_state.v = false
end
imgui.EndChild()
imgui.SameLine()
imgui.BeginChild("##Otherdsf5", imgui.ImVec2(260, 350), true, imgui.WindowFlags.NoScrollbar)
if imgui.CollapsingHeader(u8"Места для мероприятий") then
if imgui.Button(u8" Король Дигла/Русская Рулетка ") then
setCharCoordinates(PLAYER_PED, 1544, -1357, 329)
sampAddChatMessage("Вы были телепортированы!", -1)
end
if imgui.Button(u8" Прятки №1 ") then
setCharCoordinates(PLAYER_PED, -2311, 1544, 18)
sampAddChatMessage("Вы были телепортированы!", -1)
end
if imgui.Button(u8" Прятки №2 ") then
setCharCoordinates(PLAYER_PED, -1470, 1489, 8)
sampAddChatMessage("Вы были телепортированы!", -1)
end
if imgui.Button(u8" Поливалка ") then
setCharCoordinates(PLAYER_PED, 288, -1611, 114)
sampAddChatMessage("Вы были телепортированы!", -1)
end
if imgui.Button(u8" Дерби ") then
sampSendChat("/derby")
end
end
imgui.EndChild()
imgui.End()
end
end
end