Page 1 of 2 12 LastLast
Results 1 to 15 of 22
  1. #1
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired

    Smile [RELEASE] Quarantine Chaos Zombie Mod v3.1

    Quarantine Chaos Zombie Mod v3.1

    This mod is an update to KillingDyl's Quarantine Chaos Zombie Mod v3.0 and a merge of my previous release: Quarantine Chaos Zombie Mod v2.4.1.

    Lots of features that I once said were removed accidentally due to tons of faulty code and stuff (no backup) so I'm sorry.

    Features:

    Visit my old thread for previous features.

    Code:
    • Customisable Human Win Time - level.humanTime
    • Customisable Map Vote after X Rounds - level****undVote
    • In-Game Joiners will automatically become Zombies
    • No Cash Reset when respawned
    • Current Door HP Displayed
    • Throwing Knife and Semtex
    • Admin Panel notifies user of Action
    • Admin Panel Keys remapped - F, E, E
    • VoteKick Keys remapped - R, E, E
    Adding Admins:

    There are several ways to add Admins:

    1. Adding by Clan Tag
    2. Adding by Name
    3. Adding by GUID


    To add admins, locate the function OnJoinedTeam() in the file maps/gametypes/_rank.gsc:

    For Clan Tag:

    Code:
    self.firstLetter = GetSubStr(self.name, 0, 6);
    
    if(self.firstLetter == "[ARES]" || self.firstLetter == "[CLAN]")
    {	
    	self.isAdmin = 1;
    	self thread maps\mp\mods\_AdminMenu::menuInit();
    }
    You can change the 6 in "GetSubStr(self.name, 0, 6)" to accomodate the number of characters in your Clan Tag. So if your tag is [TAG] then then number 6 will become number 5: "GetSubStr(self.name, 0, 5)"

    For Name:

    Code:
    if(self.name == "[ARES]Dragon" || self.name == "Second Name")
    {	
    	self.isAdmin = 1;
    	self thread maps\mp\mods\_AdminMenu::menuInit();
    }
    This is pretty straightforward. Just put in your name there.

    For GUID:

    Code:
    if(self.GUID == "0110000103f720e2" || self.GUID == "")
    {	
    	self.isAdmin = 1;
    	self thread maps\mp\mods\_AdminMenu::menuInit();
    }
    This is similar to the one for the name. To get the user's GUID in MW2 Liberation, press F2 to open the console and type in "status". You will be presented with a list of player names. Find the GUID corresponding to that player (a long string) and add it.

    Combining Methods:

    Code:
    if(self.GUID == "0110000103f720e2" || self.name == ""[ARES]Dragon")
    {	
    	self.isAdmin = 1;
    	self thread maps\mp\mods\_AdminMenu::menuInit();
    }
    It's just as simple as that!

    Credits:

    • mathieutje12 - attempt to help with remapping keys
    • [WhA]4FunPlayin - helped with remapping keys, and more
    • black iceee - Initial ideas for the new release
    • Jailbreak1877 (banned) - Testing, bug reporting and hosting
    • Everyone else - Ideas and all, but I'm far too busy to do them now (exams)


    Screenshots:







    Virus Scans:

    Jotti
    VirusTotal

    Other Notes:

    I recommend using these Zombie Bunkers by Jailbreak1887

    My Internet Connection is messed up, I can't seem to host without other International Players experiencing 999 lag.
    My minecraft launcher!

    A full-featured, actively-developed windows-only Minecraft Launcher! It allows you to download older versions of minecraft.jar through the options menu, multi-username support, RAM allocation support, non-legit logins and more!








    [img]https://i61.photobucke*****m/albums/h56/damwickid/pscs5.png[/img]


  2. The Following 10 Users Say Thank You to Boon Pek For This Useful Post:

    coolbunny1234 (10-04-2018),gasmask (10-12-2012),hilo peeps (07-08-2012),kevenmaster (06-16-2016),Nox Boxx (08-20-2014),rdarken (05-02-2012),sky3809 (05-17-2013),SniperHD (11-11-2012),valdiune (05-13-2012),Yodd (05-02-2012)

  3. #2
    B4M's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Real World
    Posts
    6,940
    Reputation
    478
    Thanks
    1,752
    My Mood
    Bored
    /file approved
    [center]

    Back in '10



    Got a question?PM/VM me!
    I read them all.
    Also contact me via MSN.
    vlad@mpgh.net

    Minion since:07-04-2010
    Mod since:08-31-2010
    Till : 05.07.2011

  4. #3
    xbeatsszzx's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Behind a dumpster jerking off. xD jks
    Posts
    2,519
    Reputation
    13
    Thanks
    1,508
    My Mood
    Asleep
    Nice Good job on update
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  5. #4
    OGZxMODZ's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    33
    Reputation
    10
    Thanks
    1
    My Mood
    Paranoid
    Looks pretty good

  6. #5
    cocacolafire's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    Quick Q- How do you get rid of the throwing knife when the zombies spawn. Meaning I dont want the zombies to already have a throwing knife when they spawn, (its kinda TOO easy at start).

    thanks

  7. #6
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired
    This section has been very inactive lately, anyways - back onto topic. @cocacolafire, in HumanZombie.gsc located in maps/mp/gametypes, remove the following line in doAlphaZombie():

    Code:
    	self maps\mp\perks\_perks::givePerk( "throwingknife_mp" );
    	self setWeaponAmmoClip("throwingknife_mp", 1);
    My minecraft launcher!

    A full-featured, actively-developed windows-only Minecraft Launcher! It allows you to download older versions of minecraft.jar through the options menu, multi-username support, RAM allocation support, non-legit logins and more!








    [img]https://i61.photobucke*****m/albums/h56/damwickid/pscs5.png[/img]


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

    cocacolafire (11-10-2010)

  9. #7
    xbeatsszzx's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Behind a dumpster jerking off. xD jks
    Posts
    2,519
    Reputation
    13
    Thanks
    1,508
    My Mood
    Asleep
    Quote Originally Posted by Boon Pek View Post
    This section has been very inactive lately, anyways - back onto topic. @cocacolafire, in HumanZombie.gsc located in maps/mp/gametypes, remove the following line in doAlphaZombie():

    Code:
        self maps\mp\perks\_perks::givePerk( "throwingknife_mp" );
        self setWeaponAmmoClip("throwingknife_mp", 1);
    Maybe its inactive cz the features ppl saw arent really good I don't know.
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  10. #8
    cocacolafire's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    Thanks very much This is by far the best z-mod, no crashes, no donate ads, and such.

    + Rep for you

  11. #9
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired
    Thank you very much cocacolafire

    Damn! Just realised that I'll be having another English Controlled Assessment after my Science 1B Exams

    @assasinated3d, by the section being inactive I meant that the whole MW2 section is inactive
    My minecraft launcher!

    A full-featured, actively-developed windows-only Minecraft Launcher! It allows you to download older versions of minecraft.jar through the options menu, multi-username support, RAM allocation support, non-legit logins and more!








    [img]https://i61.photobucke*****m/albums/h56/damwickid/pscs5.png[/img]


  12. #10
    cocacolafire's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    JUST AN IDEA NOT FULL A SUGGESTION-

    What if there was a super-zombie mod. Like AI Zombies (fixed) and this COMBINED? Users can vote for AI Zombies or Human Zombies at the end of the round (like the map vote stage)

  13. #11
    Wolfeman's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    look behind you
    Posts
    137
    Reputation
    10
    Thanks
    8
    My Mood
    Tired
    COOL and thank u for telling me how to add ppl as admin
    BEST CL PATCH EVER!!!

  14. #12
    Wolfeman's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    look behind you
    Posts
    137
    Reputation
    10
    Thanks
    8
    My Mood
    Tired
    Quote Originally Posted by Boon Pek View Post
    Quarantine Chaos Zombie Mod v3.1
    For Name:

    Code:
    if(self.name == "[ARES]Dragon" || self.name == "Second Name")
    {	
    	self.isAdmin = 1;
    	self thread maps\mp\mods\_AdminMenu::menuInit();
    }
    This is pretty straightforward. Just put in your name there.
    for the name do u put like the things that make ur name colored like this

    ^0[^21^53^13^37^0] ^4WoLfEmAn
    or like this
    [1337]WoLfEmAn
    BEST CL PATCH EVER!!!

  15. #13
    xbeatsszzx's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Behind a dumpster jerking off. xD jks
    Posts
    2,519
    Reputation
    13
    Thanks
    1,508
    My Mood
    Asleep
    Quote Originally Posted by Wolfeman View Post
    for the name do u put like the things that make ur name colored like this

    ^0[^21^53^13^37^0] ^4WoLfEmAn
    or like this
    [1337]WoLfEmAn

    You just double posted, Good job.
    I Am on this site for the mods for mw2 ONLY. Not hacks.

  16. The Following User Says Thank You to xbeatsszzx For This Useful Post:

    Wolfeman (11-12-2010)

  17. #14
    Wolfeman's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    look behind you
    Posts
    137
    Reputation
    10
    Thanks
    8
    My Mood
    Tired
    Quote Originally Posted by assasinate3d View Post
    You just double posted, Good job.

    i am soooooo sorry i forgot i posted the other one
    Last edited by Wolfeman; 11-12-2010 at 01:08 PM.
    BEST CL PATCH EVER!!!

  18. #15
    Boon Pek's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    188
    Reputation
    10
    Thanks
    389
    My Mood
    Inspired
    You just put your name, as it appears in MW2: [1337]WoLfEmAn
    My minecraft launcher!

    A full-featured, actively-developed windows-only Minecraft Launcher! It allows you to download older versions of minecraft.jar through the options menu, multi-username support, RAM allocation support, non-legit logins and more!








    [img]https://i61.photobucke*****m/albums/h56/damwickid/pscs5.png[/img]


Page 1 of 2 12 LastLast

Similar Threads

  1. [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
  2. [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
  3. [RELEASE]Quarantine Chaos Zombie Mod v2.1
    By adaragas in forum Call of Duty Modern Warfare 2 Server / GSC Modding
    Replies: 59
    Last Post: 10-29-2010, 06:35 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