Making Avogrado spawn a max ammo on death
-
Hey I'm pretty new to this stuff and I was hoping someone could help me with this simple change.
This is all I got so far, I'm really not sure where to start here. -
-
Why was this moved to bo1? Avogadro is the boss zombie for transit.
-
-
It was probably just a miss click.
-
Lord_J Maybe this will help you, I haven't tried it.
#include maps\mp\_utility; #include common_scripts\utility; #include maps\mp\zombies\_zm_utility; #include maps\mp\zombies\_zm_powerups; #include maps\mp\zombies\_zm; #include maps\mp\zombies\_zm_ai_avogadro; init() { level thread avogadro_drop(); } avogadro_drop() { for(;;) { level waittill( "avogadro_defeated" ); level specific_powerup_drop("full_ammo", level.avogadro.origin ); } }
-
Kalitos
You're awesome, but I'm getting a script compiler error/syntax error.
-
Replace all / with \
-
You guys are awesome, this works.