UI.AddMultiDropdown("Force safepoint on legs", ["Legs", "Feet"]);
function safeLegs() {
const safepoint_selection = UI.GetValue("Misc", "Force safepoint on limbs");
if(safepoint_selection & (1 << 0)) {
Ragebot.ForceHitboxSafety(7);
Ragebot.ForceHitboxSafety(8);
Ragebot.ForceHitboxSafety(9);
Ragebot.ForceHitboxSafety(10);
}
if(safepoint_selection & (1 << 1)) {
Ragebot.ForceHitboxSafety(11);
Ragebot.ForceHitboxSafety(12);
}
}
Cheat.RegisterCallback("CreateMove", "safeLegs");