Game Modding | Call of Duty: Black Ops 3 | Scripting
Reaper_9382:
hey guys, does anyone knows a script to make a trigger to spawn a certain amount of brutus's? would be appreciated
Spiki:
hey guys, does anyone knows a script to make a trigger to spawn a certain amount of brutus's? would be appreciated
function brutus_spawn()
{
amount = 5;
trig = GetEnt("brutus_trig","targetname");
trig waittill("trigger");
for( i=0;i<amount;i++ )
{
zm_cellbreaker::spawn_brutus(); //spikis brutus
or
brutus::spawn_brutus(); ///nsz brutus
}
}
Reaper_9382:
You should mention whos brutus youre using
function brutus_spawn() { amount = 5; trig = GetEnt("brutus_trig","targetname"); trig waittill("trigger"); for( i=0;i<amount;i++ ) { zm_cellbreaker::spawn_brutus(); //spikis brutus or brutus::spawn_brutus(); ///nsz brutus } }