-
Автор темы
- #1
Код:
local ui_c = ui.create("Antiaims", "AntiAims")
local ui_b = ui.create("Antiaims", "Builder")
local aa_presets = ui_c:combo("Preset", "Disabled", "Customs")
local type = ui_b:combo('Currect Condition', {'Shared', 'Stand', 'Move', 'Air', 'Crouch', 'Slow Walk'}, 0)
function menu_vis()
for k,v in pairs(types) do
for i,data in pairs(v) do
if aa_presets:get() == "Customs" then data:set_visible(type:get()+1 == k) else data:set_visible(9 == k) end
if aa_presets:get() == "Customs" and type:get() == 8 then
data:set_visible(false)
end
end
end
end
на примере этого кода
Код:
раньше было так:
type:get()+1
сейчас так:
type:get() == "Shared"
если кто поможет буду очень блогадарен