Posts
167
Respect
44Add +1
Forum Rank
Pack-a-Puncher
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!
create_chalk_hud( x )
{
if( !IsDefined( x ) )
{
x = 0;
}
hud = create_simple_hud();
hud.alignX = "left";
hud.alignY = "bottom";
hud.horzAlign = "left";
hud.vertAlign = "bottom";
hud.color = ( 0.423, 0.004, 0 );
hud.x = x;
hud.alpha = 0;
hud SetShader( "hud_chalk_1", 64, 64 );
return hud;
}create_chalk_hud( x )
{
if( !IsDefined( x ) )
{
x = 0;
}
level.hud = create_simple_hud();
level.hud.alignX = "left";
level.hud.alignY = "bottom";
level.hud.horzAlign = "left";
level.hud.vertAlign = "bottom";
level.hud.color = ( 0.423, 0.004, 0 );
level.hud.x = x;
level.hud.alpha = 0;
level.hud SetShader( "hud_chalk_1", 64, 64 );
return hud;
}level.hud Reset();
level.hud SetText("MEOW");