-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
JavaScript:
UI.AddCheckbox ("Pitch zero on land");
var groundCounter = 0;
var pitch = function () {
if (!UI.GetValue("Misc", "JavaScript", "Script itemes", "Pitch zero on land")) return;
if (!Entity.GetLocalPlayer()) return;
UI.SetValue("Anti-aim", "Extra", "Pitch", 1);
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 < 50) {
UI.SetValue("Anti-aim", "Extra", "Pitch", 3);
} else {
UI.SetValue("Anti-aim", "Extra", "Pitch", 1);
}
}
Cheat.RegisterCallback("Draw", "pitch");
//SPONSORED BY XONCE