Posts
78
Respect
12Add +1
Forum Rank
Rotting Walker
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!image,i_hud_tomb_capture_spin
material,hud_tomb_capture_spin

#precache( "material", "hud_tomb_capture_spin");
// other stuffs
// self == generator struct
function Create_generator_HUD()
{
self endon( "death" );
if( !isDefined(self.capture_hud ) )
{
hud_elem = NewHudElem();
hud_elem SetTargetEnt( self );
hud_elem SetShader( "hud_tomb_capture_spin", 8, 8 );
hud_elem SetWayPoint( true,"hud_tomb_capture_spin");
hud_elem.hidewheninmenu = true;
hud_elem.immunetodemogamehudsettings = true;
self.capture_hud = hud_elem;
}
}


hud_elem SetWayPoint( true);
