Results 1 to 5 of 5
  1. #1
    spiritwo's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Rochester, NY
    Posts
    709
    Reputation
    17
    Thanks
    76
    My Mood
    Happy

    [Solved]Death > Zombie

    What's the code in Quarantine zombies that makes it so that when you die/kill yourself, you become a zombie. Even if you weren't killed by a zombie.
    --
    "Life is tough. It's tougher if you're stupid."

    Spiritwo |






  2. #2
    ~Just IN~'s Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    self thread xbox360nolife() {
    Posts
    518
    Reputation
    11
    Thanks
    55
    My Mood
    Doh
    I have no idea, But I fucking hate that.

    Try looking under zombie code? :s

  3. #3
    chrisdavis97's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by ~Just IN~ View Post
    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]
    No other man-made device since the shields and lances of the ancient knights fulfills a man's ego like an automobile.

  4. #4
    [WhA]4FunPlayin's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Not here
    Posts
    757
    Reputation
    8
    Thanks
    169
    My Mood
    Lonely
    From granny's zombies >.>
    Code:
    doZombieWhenDie()
    {
        self endon("disconnect");
    	
        self waittill("death");
    	if(level.SelectingZombieTime == 0)
    	{
    		self notify("menuresponse", game["menu_team"], "axis");
    	    self.Zombie = 1;
    	}
    }

  5. #5
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    /marked as solved



Similar Threads

  1. [SOLVED] GodMod for zombie mod
    By lolloso123 in forum Call of Duty Black Ops Help
    Replies: 8
    Last Post: 11-24-2010, 09:29 PM
  2. [SOLVED]Quarantine Chaos Zombies v2 MapEdit
    By Arasonic in forum Call of Duty Modern Warfare 2 Help
    Replies: 2
    Last Post: 08-23-2010, 09:40 PM
  3. [SOLVED]Quarantine Chaos Zombies v2 Mod Help
    By Edvardas96 in forum Call of Duty Modern Warfare 2 Help
    Replies: 10
    Last Post: 08-23-2010, 01:17 AM
  4. WTF ZOMBIES IN ELI DEATH ROOM
    By MissRandomSpam in forum Combat Arms Discussions
    Replies: 50
    Last Post: 07-05-2010, 12:26 PM
  5. Cabin Fever: Wierd Zombie Death
    By pornman in forum Combat Arms Help
    Replies: 10
    Last Post: 03-15-2010, 04:30 AM