Reorganized the scripts so its easier to search thru.

This commit is contained in:
JezuzLizard
2021-08-07 11:41:57 -07:00
parent 98bfc67831
commit fe45c69381
1573 changed files with 152 additions and 4458 deletions

View File

@ -0,0 +1,16 @@
#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" );
}