mirror of
https://github.com/ISpillMyDrink/OpenSuperClone.git
synced 2026-05-04 14:00:54 +00:00
52 lines
911 B
Plaintext
52 lines
911 B
Plaintext
seti $printhelp = $printhelp
|
|
|
|
|
|
while 1 = 1
|
|
echo " "
|
|
echo "Security Menu"
|
|
echo "Q) Quit"
|
|
echo "P) Previous Menu"
|
|
echo "H) Toggle Script Help"
|
|
echo "1) Security Remove Password"
|
|
echo "2) Security Set Password"
|
|
echo "3) Security Unlock"
|
|
|
|
if $printhelp = 1
|
|
exit 0
|
|
endif
|
|
|
|
echo "Enter your choice:"
|
|
userinput $choicestring
|
|
|
|
if $choicestring = q
|
|
break
|
|
|
|
elseif $choicestring = p
|
|
previousscript
|
|
|
|
elseif $choicestring = h
|
|
if $help = 0
|
|
seti $help = 1
|
|
echo "Help is now turned on"
|
|
else
|
|
seti $help = 0
|
|
echo "Help is now turned off"
|
|
endif
|
|
|
|
elseif $choicestring = 1
|
|
loadscript ata_security_remove_password.osc
|
|
break
|
|
|
|
elseif $choicestring = 2
|
|
loadscript ata_security_set_password.osc
|
|
break
|
|
|
|
elseif $choicestring = 3
|
|
loadscript ata_security_unlock.osc
|
|
break
|
|
|
|
else
|
|
echo "bad choice= " $choicestring
|
|
endif
|
|
done
|
|
end |