-
Автор темы
- #1
крч
local Button = ui.add_key_bind("Baim", "Baim enable", 0, 2)
local Deagle_head = ui.get_multi_combo_box("rage_deagle_hitscan")
local r8_head = ui.get_multi_combo_box("rage_revolver_hitscan")
local Scout_head = ui.get_multi_combo_box("rage_scout_hitscan")
local Auto_head = ui.get_multi_combo_box("rage_auto_hitscan")
local Pistols_head = ui.get_multi_combo_box("rage_pistols_hitscan")
local Smg_head = ui.get_multi_combo_box("rage_smg_hitscan")
local Rifle_head = ui.get_multi_combo_box("rage_rifle_hitscan")
local Awp_head = ui.get_multi_combo_box("rage_awp_hitscan")
local Shotgun_head = ui.get_multi_combo_box("rage_shotguns_hitscan")
local tahoma_bold = renderer.setup_font("nix/fonts/MuseoSansBlack.ttf", 35, 0)
local screen_size = engine.get_screen_size()
client.register_callback("paint", function()
local bind_active = Button:is_active()
if bind_active then
Shotgun_head:set_value(0, false)
Deagle_head:set_value(0, false)
r8_head:set_value(0, false)
Auto_head:set_value(0, false)
Pistols_head:set_value(0, false)
Scout_head:set_value(0, false)
Smg_head:set_value(0, false)
Rifle_head:set_value(0, false)
Awp_head:set_value(0, false)
renderer.text("Baim", tahoma_bold, vec2_t.new(3, 690), 40, color_t.new(34, 139, 34, 255))
end
if bind_active == false then
Shotgun_head:set_value(0, true)
Deagle_head:set_value(0, true)
r8_head:set_value(0, true)
Auto_head:set_value(0, true)
Pistols_head:set_value(0, true)
Scout_head:set_value(0, true)
Smg_head:set_value(0, true)
Rifle_head:set_value(0, true)
Awp_head:set_value(0, true)
end
end)
вот код, надо сделать так чтобы когда на скауте я включал боди, включался миндамаг 92
local Button = ui.add_key_bind("Baim", "Baim enable", 0, 2)
local Deagle_head = ui.get_multi_combo_box("rage_deagle_hitscan")
local r8_head = ui.get_multi_combo_box("rage_revolver_hitscan")
local Scout_head = ui.get_multi_combo_box("rage_scout_hitscan")
local Auto_head = ui.get_multi_combo_box("rage_auto_hitscan")
local Pistols_head = ui.get_multi_combo_box("rage_pistols_hitscan")
local Smg_head = ui.get_multi_combo_box("rage_smg_hitscan")
local Rifle_head = ui.get_multi_combo_box("rage_rifle_hitscan")
local Awp_head = ui.get_multi_combo_box("rage_awp_hitscan")
local Shotgun_head = ui.get_multi_combo_box("rage_shotguns_hitscan")
local tahoma_bold = renderer.setup_font("nix/fonts/MuseoSansBlack.ttf", 35, 0)
local screen_size = engine.get_screen_size()
client.register_callback("paint", function()
local bind_active = Button:is_active()
if bind_active then
Shotgun_head:set_value(0, false)
Deagle_head:set_value(0, false)
r8_head:set_value(0, false)
Auto_head:set_value(0, false)
Pistols_head:set_value(0, false)
Scout_head:set_value(0, false)
Smg_head:set_value(0, false)
Rifle_head:set_value(0, false)
Awp_head:set_value(0, false)
renderer.text("Baim", tahoma_bold, vec2_t.new(3, 690), 40, color_t.new(34, 139, 34, 255))
end
if bind_active == false then
Shotgun_head:set_value(0, true)
Deagle_head:set_value(0, true)
r8_head:set_value(0, true)
Auto_head:set_value(0, true)
Pistols_head:set_value(0, true)
Scout_head:set_value(0, true)
Smg_head:set_value(0, true)
Rifle_head:set_value(0, true)
Awp_head:set_value(0, true)
end
end)
вот код, надо сделать так чтобы когда на скауте я включал боди, включался миндамаг 92