Posts
58
Respect
23Add +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!thread name_of_your_function();
// easy
name_of_your_function()
{
trig = getEnt( "YOUR_TRIGGER_TARGETNAME", "targetname" );
trig waittill( "trigger" );
iprintlnbold( "YOUR MESSAGE" );
}
// harder
name_of_your_function()
{
trig = getEnt( "YOUR_TRIGGER_TARGETNAME", "targetname" );
trig waittill( "trigger" );
thread print_message( "YOUR MESSAGE", 2 ); // replace 2 with the time
}
print_message( text, time )
{
// change the position, the color, or whatever you want to change here
hud = create_simple_hud();
hud.alignX = "center";
hud.alignY = "middle";
hud.horzAlign = "center";
hud.vertAlign = "middle";
hud.y = -70;
hud.fontscale = 1.5;
hud.alpha = 1;
hud.color = ( 1, 1, 1 );
hud setText( text );
wait time;
hud destroy_hud();
}