mirror of
https://github.com/JezuzLizard/Recompilable-gscs-for-BO2-zombies-and-multiplayer.git
synced 2025-06-10 18:57:58 -05:00
17 lines
396 B
Plaintext
17 lines
396 B
Plaintext
#include maps/mp/_ambientpackage;
|
|
#include maps/mp/_utility;
|
|
#include common_scripts/utility;
|
|
|
|
main()
|
|
{
|
|
array_thread( getentarray( "advertisement", "targetname" ), ::advertisements );
|
|
}
|
|
|
|
advertisements()
|
|
{
|
|
self playloopsound( "amb_" + self.script_noteworthy + "_ad" );
|
|
self waittill( "damage" );
|
|
self stoploopsound();
|
|
self playloopsound( "amb_" + self.script_noteworthy + "_damaged_ad" );
|
|
}
|