hey just wondering how i can hide the compass, health bar, waiting for players, and the press e to follow player in spectate so i can take a loading screen picture.
also while on that, is there a way to have more than one loading pic, so it shows one waits a few seconds then shows the next one..
thx
hide Hud display in spectate
Moderator: Moderators
-
Green Beret
- Major General
- Posts: 746
- Joined: Mon Apr 19, 2004 12:21 pm
- Contact:
- MPowell1944
- Moderator
- Posts: 287
- Joined: Thu Jan 09, 2003 7:06 am
- Location: Woodstock, GA
- Contact:
Removes all of the hud elements while in Spectator. Works 100% 
Code: Select all
level waittill spawn
thread spec_hud
end
spec_hud:
for(local.i = 1; local.i <= $player.size; local.i++)
local.player = $player[local.i]
while(1)
{
while(local.player.dmteam == "spectator")
{
wait .001
local.player stufftext "ui_hud 0; cg_hud 0"
}
wait .001
local.player stufftext "ui_hud 1; cg_hud 1"
}
end
