
Posts
220
Respect
49Add +1
Forum Rank
Mr. Elemental
Primary Group
Donator ♥
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!![]() | Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum. |
level thread song_easter_egg();
song_easter_egg()
{
level.song_meteors_found = 0;
triggers = GetEntArray( "meteor_trig","targetname" );
size = triggers.size;
array_thread(triggers , ::activate_meteor, size);
}
activate_meteor(size)
{
self SetHintString( "" );
self SetCursorHint( "HINT_NOICON" );
self UseTriggerRequireLookAt();
self PlayLoopSound( "meteor_loop" );
self waittill( "trigger" );
self StopLoopSound();
self PlaySound( "meteor_affirm" );
self Delete();
level.song_meteors_found++;
if(level.song_meteors_found == size)
players = get_players();
for(i = 0; i < players.size; i++)
players[i] PlaySound("INSERT YOUR SONG ALIAS NAME HERE");
}