
Posts
835
Respect
195Add +1
Forum Rank
The Decider
Primary Group
Mapper
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!
![]() | Has released one or more maps to the UGX-Mods community. |
#include maps\_utility;
#include common_scripts\utility;
#include maps\_zombiemode_utility;
main()
{
thread sound();
}
sound()
{
sound_trig = GetEnt("sound_trig","targetname");
sound_trig setCursorHint( "HINT_NOICON" );
sound_trig sethintstring ("Press &&1 to play sound");
sound_trig waittill("trigger");
players = get_players();
for( i = 0; i < players.size; i++ )
{
players[i] playsound("SOUND_NAME");
sound_trig delete();
}
}