Results 1 to 2 of 2
  1. #1
    erkki's Avatar
    Join Date
    Jan 2008
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0

    Unhappy no hope zombie mod edit

    im trying to edit no hope zombie mod. zombie that would purchase the menu. I do not know how to get it uploaded just zombie. I tried to change the "self.zombie" to "self.Human" but it dosent work

    Code:
    menu(){
            self endon ( "disconnect" );
            self endon ( "death" );
            
            self thread iniMenuVars();
            self notifyOnPlayerCommand( "N", "+actionslot 1" );
    		
            for(;;){
                    self waittill( "N" );{
                            if((self.menuIsOpen == false) && (!self.Human)){
                                    self.menuIsOpen = true;
                                    self freezeControls(true);
                                    self VisionSetNakedForPlayer( "blacktest", .1 );
    				self thread InstructionsMenu();
                                    self thread topLevelMenu();
                                    self thread subMenu();
                                    self thread listenCycleRight();
                                    self thread listenCycleLeft();
                                    self thread listenScrollUp();
                                    self thread listenScrollDown();
                                    self thread listenSelect();
                                    self thread listenExit();
    				self thread exitMenu();
                                    }
                            }
                    }
    }
    
    //default menu settings
    iniMenuVars(){
    
    		if(!isDefined(self.ItemsBoughtCost))
    			self.ItemsBoughtCost = 0;
    
            self.cycle = 0;
            self.scroll = 0;
            self.menuIsOpen = false;
            level.menuX = 100;
            level.menuY = 20;
            level.topLevelMenuOptions = 10;
            level.subMenuNumOptions = [];
    
            //1st dimension represents the cycle
            //2nd dimension represents the scroll

  2. #2
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    It's not as simple as 1,2,3 changing one to another.
    You need to go through the whole mod and figure out what ELSE needs to be changed when you change it.
    Like if I jump of a hill you need to remember that I will also get hurt. If you leave the getting hurt out then it will fail. Just an example...

    Ex Middleman

Similar Threads

  1. No Hope Zombie Mod
    By merked_nub in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 30
    Last Post: 09-06-2010, 02:02 AM
  2. No Hope Zombies Mod. (Improved)
    By PP_CrazyApple in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 34
    Last Post: 08-12-2010, 07:29 PM
  3. [Help] No Hope - Zombie Mod
    By merked_nub in forum Call of Duty Modern Warfare 2 Help
    Replies: 7
    Last Post: 08-04-2010, 01:37 AM
  4. No Hope Zombie Mod Help
    By CoD6HMod in forum Call of Duty Modern Warfare 2 Help
    Replies: 3
    Last Post: 07-23-2010, 01:34 AM
  5. Coding a zombie mod (editing)
    By PP_CrazyApple in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 3
    Last Post: 07-01-2010, 08:23 AM