chostarmanDoes anyone know how to modify and shrink down the huge spy outline when disguising is finished?
go to scripts and hudanimations_custom.txt or whatever you file name is, HudSpyDisguiseChanged section
a good example i have :
event HudSpyDisguiseChanged
{
Animate PlayerStatusSpyOutlineImage Alpha "200" Linear 0.0 0.2
Animate PlayerStatusSpyOutlineImage Position "c-400 c-0" Linear 0.0 0.2
Animate PlayerStatusSpyOutlineImage Size "200 200" Linear 0.0 0.2
RunEvent HudSpyDisguiseHide 0.7
}
looks like this : https://imgur.com/a/JSaabAZ
chostarmanDoes anyone know how I can fix the casual and comp levels from displaying [unknown]?
Example pic:
https://imgur.com/a/nJEyAtQ
delete PvPRankPanel.res see if it fix it
ZeRo5I'm using default hud, is there a way to make ammo flicker in red or have a clearer indicator when it's low?
you need to add scripts/hudanimations_tf.txt go to event HudLowAmmoPulse, replace HudLowAmmoPulse,HudLowAmmoPulseLoop,HudLowAmmoPulseStop with this :
event HudLowAmmoPulse
{
Animate HudWeaponLowAmmoImage Alpha "255" Linear 0.0 0.075
Animate HudWeaponLowAmmoImage Alpha "0" Linear 0.125 0.075
Animate AmmoInClip FgColor "TanLight" Linear 0.0 0.075
Animate AmmoInClip FgColor "LightRed" Linear 0.125 0.075
Animate AmmoInReserve FgColor "TanLight" Linear 0.0 0.075
Animate AmmoInReserve FgColor "LightRed" Linear 0.125 0.075
Animate AmmoNoClip FgColor "TanLight" Linear 0.0 0.075
Animate AmmoNoClip FgColor "LightRed" Linear 0.125 0.075
RunEvent HudLowAmmoPulseLoop 0.25
}
// call to loop HudLowAmmoPulse
event HudLowAmmoPulseLoop
{
RunEvent HudLowAmmoPulse 0.0
}
event HudLowAmmoPulseStop
{
StopEvent HudLowAmmoPulse 0.0
StopEvent HudLowAmmoPulseLoop 0.0
Animate AmmoInClip FgColor "TanLight" Accel 0.0 0.0
Animate AmmoInReserve FgColor "TanLight" Accel 0.0 0.0
Animate AmmoNoClip FgColor "TanLight" Accel 0.0 0.0
}
also add resource/ui/hudammoweapons.res and change HudWeaponLowAmmoImage xpos and ypos values to 9999
what the animation looks like: https://imgur.com/a/LIEs1hD (taken from tf2hudplus)
if you want the default hud files