-
Автор темы
- #1
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
JavaScript:
UI.AddSubTab( ["Misc.", "SUBTAB_MGR"], "FUCKLEG");
UI.AddCheckbox(["Misc.", "FUCKLEG", "FUCKLEG"], "Enble fuckleg");
function getRandomIntInclusive(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min + 1)) + min;
}
const opts = [1,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1]
function run ()
{
var enble = UI.GetValue( ["Misc.","FUCKLEG","FUCKLEG","Enble fuckleg"]);
if (enble == 1)
{
var z = getRandomIntInclusive(1, 43);
UI.SetValue( ["Misc.","Movement","Leg movement"], opts[z-1]); // array starts with 0, so if we random 1 to 3 we must subtract it by 1
}
}
Cheat.RegisterCallback("Draw", "run");