Uploaded October 2012 | Updated September 2026, 2 hours ago
This is how to get custom music into your zombie map for WaW.
Here is the function for the nazi_zombie_yourmap.gsc that you will need (Credit to SajeOne for the function):
music_stuff()
{
trigger_name = GetEnt("message","targetname");
trigger_name SetHintString("Press &&1 to Listen to Music");
flag_wait("all_players_connected");
trigger_name waittill("trigger",player);
trigger_name delete();
player playsound("example");
}
And yes, the song played. :D
This is how to get custom music into your zombie map for WaW.
Here is the function for the nazi_zombie_yourmap.gsc that you will need (Credit to SajeOne for the function):
music_stuff()
{
trigger_name = GetEnt("message","targetname");
trigger_name SetHintString("Press &&1 to Listen to Music");
flag_wait("all_players_connected");
trigger_name waittill("trigger",player);
trigger_name delete();
player playsound("example");
}
And yes, the song played. :D










