View Poll Results: Useful?

Voters
58. This poll is closed
  • Yes

    48 82.76%
  • No

    10 17.24%
Page 1 of 4 123 ... LastLast
Results 1 to 15 of 60
  1. #1
    adaragas's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Australia
    Posts
    25
    Reputation
    10
    Thanks
    17

    Smile [RELEASE]Quarantine Chaos Zombie Mod v2.2

    QUARANTINE CHAOS ZOMBIE MOD VERSION 2.2
    This little update or re-edit of the Quarantine Chaos Zombie Mod was created just to give hosters out there more features to look forward to with in this zombie mod originally created by Killingdyl.

    Features Added:
    Code:
    Version 2.2:
    -Smoke Grenade added to Zombie team.
    -iZ3r0's Ultimate Admin System integrated into mod. (Press F to toggle)
    //EDIT - F for toggle will be removed and changed to another key, F has other uses, forgot sorry.
    -Bounty reset back to 0.
    -' < ' removed on menu scroll due to confusion, Q is used for smoke grenades hence removal.
    
    Version 2.1: 
    -New weapons added, these include Intervention, Barrett, 105mm Ac130 gun and RPG.
    (Howitzer is a bit unfinished, still usable)
    -No Recoil function can be purchased from the human shop which wears off after the user has died.
    -Updated Interface, HUD has been resized and recolored.
    -Price Modifications
    -Minor Changes, in text and other things.
    -5 Minute Human survival round
    -No Recoil function has been added to the list of perks on the HUD, displaying whether No Recoil is currently active or not active.
    This version was coded using the readable clean _rank.gsc file. This makes this mod even more easier to edit.

    Now, i know some people have had trouble adding weapons and what not into this zombie mod so I am going to give you guys a brief guide into adding other weapons into the mod.

    1. Under CostInit()
    add this to it
    Code:
     level.itemCost["@@@"] = ###;
    Replace @@@ with a name that represents the item, and replace ### with the price you wish to set it at.

    2.Under menuInit()
    Edit like so:
    Code:
    level.humanM[i] = [];
    level.humanM[i][0] = "Buy No Recoil Perk - " + level.itemcost["recoil"];
    level.humanM[i][1] = "Buy %%% - " + level.itemcost["@@@"];
    level.humanM[i][2] = "";
    	i++;
    Replace ### with anything that appeals to you, e.g. Buy gun, or Buy Sniper
    Replace @@@ with the name you used in costInit()

    *REMEMBER [0] REPRESENTS THE FIRST ITEM ON THE LIST, [1] IS THE 2nd ITEM ON THE LIST, and [2] IS THE 3rd ONE OF THE LIST, the list cannot get larger than 3 items because of the way it was set.



    3.Under HumanShop() or ZombieShop() depending on which shop you added your item to:
    Find out which menu number it is under; To find out, follow like so:



    Now look at these:
    Code:
    if(self.buttonPressed[ "+actionslot 3" ] == 1)
    	{
    	self.buttonPressed[ "+actionslot 3" ] = 0;
    	if(self.menu == 0){
    -If your item was placed as the first slot item (level.humanM[i][0]) then the item coding will be put under +actionslot 3
    -If your item was placed as the 2nd slot item (level.humanM[i][1]) then the item coding will be put under +actionslot 4
    -and if your item was placed as the 3rd slot item (level.humanM[i][2]) then the item coding will be put under +actionslot 2


    4. Adding your weapon/item code to humanShop() or zombieShop():
    Under the correct +actionslot, place this layout anywhere in it, make sure you don't accidentally delete brackets or letters off other functions, this may make it difficult to fix later on.
    Code:
    			if(self.menu == ##)
    			{
    				if(self.bounty >= level.itemCost["@@@"])
    				{
    					self.bounty -= level.itemCost["@@@"];
    					self giveWeapon("%%%", 0, false);
    					self switchToWeapon("%%%");
    					self thread maps\mp\gametypes\_hud_message::hintMessage("^^^^^^");
    					self notify("CASH");
    				}
    				else
    				{
    					self iPrintlnBold("^1Not Enough ^3Cash");
    				}
    		}
    -Replace the ## with the number of the menu in which the item is in, (this will range from 0 onwards, refer to the menuinit() picture previously.
    -Replace @@@ with the SAME item name you used in costInit()
    -Replace %%% with the actual file name of the weapon, this can be found on this thread posted by Abstract, Here.

    -Now replace ^^^^^ with the text you want to appear after you buy the item.

    5. Save, and lets hope you have coded the item correctly.

    Remember to say thanks, and enjoy modding.

    Updates will be regular to the mod!
    Hosted using MW2 Liberation v1.04
    LAST UPDATED 2ND OCTOBER 2010 +10GMT

    Virus Scans 2.1
    Jotti
    Virus Total
    Virus Scans 2.2
    Jotti
    Virus Total

    Download Link :Version 2.1

    Version 2.2

    Version 2.3 https://www.mpgh.net/forum/attachment...-1-qczm2.3.rar
    Last edited by House; 10-05-2010 at 06:58 AM. Reason: refix 2.2

  2. The Following 12 Users Say Thank You to adaragas For This Useful Post:

    blindfire1221 (08-15-2012),Boon Pek (10-01-2010),hedberg95 (10-14-2010),I-Love-You (10-01-2010),jamesb (10-07-2010),jap_rock75 (10-01-2010),MasterFreeze (10-05-2010),p33rs6 (10-03-2010),PolakMLG (10-30-2013),r3Fuze (10-01-2010),themodder (10-15-2010),Yamato (10-04-2010)

  3. #2
    xurple's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    120
    Reputation
    10
    Thanks
    5
    This is way better than killingdyl's official server
    Last edited by xurple; 10-01-2010 at 05:31 AM.

  4. The Following User Says Thank You to xurple For This Useful Post:

    p33rs6 (10-03-2010)

  5. #3
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    I'm waiting for a SS or Video and (2) Virus scans.

    Ex Middleman

  6. The Following User Says Thank You to Insane For This Useful Post:

    p33rs6 (10-03-2010)

  7. #4
    adaragas's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Australia
    Posts
    25
    Reputation
    10
    Thanks
    17
    Yeah, coming up soon, internet's buggered as of now, will be uncapped in about an hour or so

  8. The Following User Says Thank You to adaragas For This Useful Post:

    p33rs6 (10-03-2010)

  9. #5
    xurple's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    120
    Reputation
    10
    Thanks
    5
    Where did you get all the ideas?
    Approve, I wanna play

  10. The Following User Says Thank You to xurple For This Useful Post:

    p33rs6 (10-03-2010)

  11. #6
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    Good Job.

    /Approved


    Ex Middleman

  12. The Following User Says Thank You to Insane For This Useful Post:

    p33rs6 (10-03-2010)

  13. #7
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired
    Hey, I would suggest you find a way for humans to fix the door then it'd be very cool. Other than that, great job!

  14. #8
    xurple's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    120
    Reputation
    10
    Thanks
    5
    Where did the download link go?

  15. #9
    Insane's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    9,057
    Reputation
    1007
    Thanks
    2,013
    Its back up. He wanted to update it.

    /Approved

    Ex Middleman

  16. #10
    xurple's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    120
    Reputation
    10
    Thanks
    5
    Nice, leeching ideas. Thanks.

  17. #11
    adaragas's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Australia
    Posts
    25
    Reputation
    10
    Thanks
    17
    How is this leeching ideas, please tell.

  18. #12
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired
    There's a bug with the buy menu, pressing N works but pressing Q doesn't.

  19. #13
    Mitsurugi's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    49
    Reputation
    10
    Thanks
    6
    My Mood
    Hungover
    Good job, but it still crashes after a few minutes

    Isn't there a way to fix this?
    It's funny because he's fat!

  20. #14
    iDreamz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    /
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Relaxed
    i've heard it's the display of the hud or something

  21. #15
    adaragas's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Australia
    Posts
    25
    Reputation
    10
    Thanks
    17
    Hmm, not sure what does the crash message say.

Page 1 of 4 123 ... LastLast

Similar Threads

  1. [RELEASE] Quarantine Chaos Zombie Mod v3.1
    By Boon Pek in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 21
    Last Post: 01-15-2011, 09:00 AM
  2. [Release] Quarantine Chaos Zombie Mod v3.0 - By Killingdyl
    By Boon Pek in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 54
    Last Post: 11-08-2010, 08:31 AM
  3. [RELEASE] Quarantine Chaos Zombie Mod v2.4
    By Boon Pek in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 43
    Last Post: 10-30-2010, 10:54 AM
  4. [RELEASE] Clean! Quarantine Chaos Zombie Mod
    By soccerguy in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 11
    Last Post: 09-09-2010, 07:26 AM
  5. [RELEASE] Quarantine Chaos Zombie Mod by killingdyl
    By soccerguy in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 99
    Last Post: 08-27-2010, 04:53 AM