легендарный нелегендарный пройдите по ссылке
-
Автор темы
- #1
Будет показывать в консоли unknown button пока не выберете кнопки для мануалов, это норма, хз как фиксить
code_language.lua:
-- пофиксил старую луа под 5.1
local gui_set = gui.SetValue;
local gui_get = gui.GetValue;
local LeftKey = 0;
local RightKey = 0;
local rage_ref = gui.Reference("RAGE", "MAIN", "Anti-Aim Main");
local check_indicator = gui.Checkbox( rage_ref, "Enable", "Manual AA", false);
local LeftButton = gui.Keybox(rage_ref, "Anti-Aim_Left", "Left Keybind", 0);
local RightButton = gui.Keybox(rage_ref, "Anti-Aim_Left", "Right Keybind", 0);
local function main()
if input.IsButtonPressed(LeftButton:GetValue()) then
LeftKey = LeftKey + 1;
BackKey = 0;
RightKey = 0;
elseif input.IsButtonPressed(RightButton:GetValue()) then
RightKey = RightKey + 1;
LeftKey = 0;
BackKey = 0;
end
end
function CountCheck()
if ( LeftKey == 1 ) then
RightKey = 0;
elseif ( RightKey == 1 ) then
LeftKey = 0;
elseif ( LeftKey == 2 ) then
LeftKey = 0;
RightKey = 0;
elseif ( RightKey == 2 ) then
LeftKey = 0;
RightKey = 0;
end
end
function SetLeft()
gui_set("rbot.antiaim.base", 90);
end
function SetRight()
gui_set("rbot.antiaim.base", -90);
end
function SetAuto()
gui_set("rbot.antiaim.base", 180);
end
function start_manuals()
if check_indicator:GetValue() then
if ( LeftKey == 1 ) then
SetLeft();
elseif ( RightKey == 1 ) then
SetRight();
elseif ((LeftKey == 0) and (RightKey == 0)) then
SetAuto();
end
end
end
callbacks.Register( "Draw", "main", main);
callbacks.Register( "Draw", "CountCheck", CountCheck);
callbacks.Register( "Draw", "SetLeft", SetLeft);
callbacks.Register( "Draw", "SetRight", SetRight);
callbacks.Register( "Draw", "SetAuto", SetAuto);
callbacks.Register( "Draw", "start_manuals", start_manuals);
Вложения
-
682 байт Просмотры: 106
Последнее редактирование: