Here's an updated version of Mr.Floppy's "Cleanshot" script:
Edit: BTW, I updated the akimbo countdown script to NOT countdown if your current primary weapon is the sniper rifle.
[SELECT ALL] Code:
// Cleanshot/Clean HUD toggle script - Original script/idea by Mr.Floppy - remade/updated for AC 1.1+ by DES|Bukz
alias gethudsets [
accuracy_tmp = $accuracy
clockdisplay_tmp = $clockdisplay
crosshairsize_tmp = $crosshairsize
crosshairteamsign_tmp = $crosshairteamsign
damagescreen_tmp = $damagescreen
hidecompass_tmp = $hidecompass
hideconsole_tmp = $hideconsole
hidectfhud_tmp = $hidectfhud
hidedamageindicator_tmp = $hidedamageindicator
hidehudequipment_tmp = $hidehudequipment
hidehudmsgs_tmp = $hidehudmsgs
hideradar_tmp = $hideradar
hideteam_tmp = $hideteam
hidevote_tmp = $hidevote
hudgun_tmp = $hudgun
showstats_tmp = $showstats
]
alias hudsetslist [accuracy clockdisplay crosshairsize crosshairteamsign damagescreen hidecompass hideconsole hidectfhud hidedamageindicator hidehudequipment hidehudmsgs hideradar hideteam hidevote hudgun showstats]
alias newhudsetslist [0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0]
alias clearhud [
if (= $arg1 1) [
gethudsets
loop hudloop (listlen $newhudsetslist) [
(at $hudsetslist $hudloop) (at $newhudsetslist $hudloop)
]
] []
]
alias resethud [
if (= $arg1 1) [
loop hudloop (listlen $hudsetslist) [
(at $hudsetslist $hudloop) (getalias (format "%1_tmp" (at $hudsetslist $hudloop)))
]
] []
]
alias cleanshot [
clearhud 1
sleep 10 [screenshot]
sleep 20 [resethud 1]
]
// bind KEY [cleanshot]
Edit: BTW, I updated the akimbo countdown script to NOT countdown if your current primary weapon is the sniper rifle.