Ищу скрипт Pitch 0 on land for onetap v4

Забаненный
Статус
Оффлайн
Регистрация
17 Янв 2021
Сообщения
173
Реакции[?]
13
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
JavaScript:
UI.AddCheckbox(["Misc.", "View", "General"], "Pitch zero on land");

const groundCounter = 0;
const pitchZeroOnLand = function () {
if (!UI.GetValue(["Misc.", "View", "General", "Pitch zero on land"])) return;
if (!Entity.GetLocalPlayer()) return;

UI.SetValue(["Cheat", "SHEET_MGR", "General", "Restrictions"], 0);

const localPlayer = Entity.GetLocalPlayer();
const localPlayerFlags = Entity.GetProp(localPlayer, "CBasePlayer", "m_fFlags");

if (localPlayerFlags == 256 || localPlayerFlags == 262) {
groundCounter = 0;
}

if (localPlayerFlags == 257 || localPlayerFlags == 261 || localPlayerFlags == 263) {
groundCounter = groundCounter + 1;
}

if (groundCounter > 10 && groundCounter < 250) {
UI.SetValue(["Rage", "SUBTAB_MGR", "Anti Aim", "SHEET_MGR", "General", "Pitch mode"], 3);
} else {
UI.SetValue(["Rage", "SUBTAB_MGR", "Anti Aim", "SHEET_MGR", "General", "Pitch mode"], 1);
}
}

Cheat.RegisterCallback("Draw", "pitchZeroOnLand");
 
Пользователь
Статус
Оффлайн
Регистрация
17 Авг 2019
Сообщения
444
Реакции[?]
111
Поинты[?]
22K
Начинающий
Статус
Оффлайн
Регистрация
26 Мар 2020
Сообщения
18
Реакции[?]
0
Поинты[?]
0
JavaScript:
UI.AddCheckbox(["Misc.", "View", "General"], "Pitch zero on land");

const groundCounter = 0;
const pitchZeroOnLand = function () {
if (!UI.GetValue(["Misc.", "View", "General", "Pitch zero on land"])) return;
if (!Entity.GetLocalPlayer()) return;

UI.SetValue(["Cheat", "SHEET_MGR", "General", "Restrictions"], 0);

const localPlayer = Entity.GetLocalPlayer();
const localPlayerFlags = Entity.GetProp(localPlayer, "CBasePlayer", "m_fFlags");

if (localPlayerFlags == 256 || localPlayerFlags == 262) {
groundCounter = 0;
}

if (localPlayerFlags == 257 || localPlayerFlags == 261 || localPlayerFlags == 263) {
groundCounter = groundCounter + 1;
}

if (groundCounter > 10 && groundCounter < 250) {
UI.SetValue(["Rage", "SUBTAB_MGR", "Anti Aim", "SHEET_MGR", "General", "Pitch mode"], 3);
} else {
UI.SetValue(["Rage", "SUBTAB_MGR", "Anti Aim", "SHEET_MGR", "General", "Pitch mode"], 1);
}
}

Cheat.RegisterCallback("Draw", "pitchZeroOnLand");
1 строчка - UI.AddCheckbox(["Misc.", "View", "Camera"], "Pitch zero on land");
5 строчка - if (!UI.GetValue(["Misc.", "View", "Camera", "Pitch zero on land"])) return;
 
Прогрев
Олдфаг
Статус
Оффлайн
Регистрация
23 Дек 2018
Сообщения
2,228
Реакции[?]
1,505
Поинты[?]
0
JavaScript:
UI.AddCheckbox(["Misc.", "View", "General"], "Pitch zero on land");

const groundCounter = 0;
const pitchZeroOnLand = function () {
if (!UI.GetValue(["Misc.", "View", "General", "Pitch zero on land"])) return;
if (!Entity.GetLocalPlayer()) return;

UI.SetValue(["Cheat", "SHEET_MGR", "General", "Restrictions"], 0);

const localPlayer = Entity.GetLocalPlayer();
const localPlayerFlags = Entity.GetProp(localPlayer, "CBasePlayer", "m_fFlags");

if (localPlayerFlags == 256 || localPlayerFlags == 262) {
groundCounter = 0;
}

if (localPlayerFlags == 257 || localPlayerFlags == 261 || localPlayerFlags == 263) {
groundCounter = groundCounter + 1;
}

if (groundCounter > 10 && groundCounter < 250) {
UI.SetValue(["Rage", "SUBTAB_MGR", "Anti Aim", "SHEET_MGR", "General", "Pitch mode"], 3);
} else {
UI.SetValue(["Rage", "SUBTAB_MGR", "Anti Aim", "SHEET_MGR", "General", "Pitch mode"], 1);
}
}

Cheat.RegisterCallback("Draw", "pitchZeroOnLand");
нахуя ты меняешь питч в антиаимах если эта функция должна быть визуальной????????????????
 
Пользователь
Статус
Оффлайн
Регистрация
17 Авг 2019
Сообщения
444
Реакции[?]
111
Поинты[?]
22K
Сверху Снизу