
Originally Posted by
~Just IN~
I have no idea, But I fucking hate that.
Try looking under zombie code? :s
Is it just me, or was that just a wasted post, just to flame?
I think the section in Quarantine Zombies you're looking for is this:
[php]doSpawn()
{
if(level.gameState == "playing" || level.gameState == "ending") {
if(self.deaths > 0 && self.isZombie == 0 && self.team == "allies")
{
self.isZombie = 1;
}
if(self.isZombie == 0)
{
self thread doSetup();
}
if(self.isZombie == 1)
{
self thread doZombie();
}
if(self.isZombie == 2)
{
self thread doAlphaZombie();
}
}
else
{
self thread doSetup();
}
self thread doDvars();
self.menu = 0;
self thread CreatePlayerHUD();
self thread doMenuScroll();
self thread doHUDControl();
self thread doCash();
self thread doHealth();
self thread destroyOnDeath();
if(level.gamestate == "starting")
{
self thread OMAExploitFix();
}
self freezeControlsWrapper( false );
}[/php]