Вопрос Spirthack leg breaker help

Начинающий
Статус
Оффлайн
Регистрация
24 Июн 2020
Сообщения
6
Реакции[?]
0
Поинты[?]
0
помогите из этого говнокода (хз откуда он у мя) сделать нормальный лег брикер, как объяснил мне чел нужно сделать проверку чтобы на choke ставить poseparam когда m_choked_commands > 0

--Start cheat variables
local CheatVars = {
MenuVar_legs = Menu.FindVar("Ragebot","Anti Aim","Misc","Leg Movement")
}
--Start lua variables
local LuaVars = {
MenuVar_legs = Menu.Switch("Misc", "Ideal leg breaker", false)
}
--Start callback frame_stage
Cheat.RegisterCallback("frame_stage", function(stage)
local lc = EntityList.GetLocalPlayer()
local undefined = stage ==-1
local start = stage == 0
local net_update_start = stage == 1
local net_update_postdataupdate_start = stage == 2
local net_update_postdataupdate_end = stage == 3
local net_update_end = stage == 4
local render_start = stage == 5
local render_end = stage == 6
if lc ~= nil and LuaVars.MenuVar_legs:Get() then
if net_update_start then
CheatVars.MenuVar_legs:Set(0)
end
if net_update_end then
CheatVars.MenuVar_legs:Set(3)
lc:SetProp("m_flPoseParameter",3,0)
end
end
end)
 
Сверху Снизу