Results 1 to 15 of 15
  1. #1
    gravzy's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    100
    Reputation
    13
    Thanks
    684
    My Mood
    Buzzed

    Cool jZm - BO2 Zombies Addon

    What is jZm:
    Pretty much jZm is an addon for Zombies which will allow players to run plugins that modify how the game runs, pretty much like the infamous MW3 Addon. Except it's for Zombies!

    Teaser trailer:
    *Video taken down due to Treyarch getting mad*

    Downloads and support:
    Official release isn't for a few weeks yet and I don't think I am allowed to give out the official site due to MPGH rules. However V1.0 will be released here for you guys and then support and updates will be found on our support site which you will be able to find easily on release.

    Plugin example:
    Here is an example of a plugin I made today for jZm.
    Code:
    	
    
        using System;
        using System.Collections.Generic;
        using System.Linq;
        using System.Text;
        using System.Threading
        using ZombieAPI;
        using ZombieAPI.GameObjects;
         
        namespace EasyZombies
        {
            public class Plugin : jZmPlugin
            {
                public string Name
                {
                    get
                    {
                        return "EasyZombies";
                    }
                }
         
                public string Desc
                {
                    get
                    {
                        return "Allows players to spawn with 10K cash, Juggernaught perk and the HAMR LMG.";
                    }
                }
         
                public string Author
                {
                    get
                    {
                        return "SirGravzy";
                    }
                }
         
                public string Youtube
                {
                    get
                    {
                        return "https://www.youtube.com/SirGravzy";
                    }
                }
         
                public string Download
                {
                    get
                    {
                        return "**Removed for MPGH*";
                    }
                }
         
                ZombieAPI.ZombieAPI API;
                bool Run = false;
         
                public void Init(ZombieAPI.ZombieAPI API)
                {
                    API.WriteLine("EasyZombies by SirGravzy - Started!");
                    this.API = API;
                    API.OnFrame += new OnFrameHandler(API_OnFrame);
                    API.OnMapLoad += new MapHandler(API_OnMapLoad);
                    API.OnMapDestroy += new MapHandler(API_OnMapDestroy);
                }
         
                void API_OnMapDestroy() // When game ends.
                {
                    Run = false; // Stops plugin running.
                }
         
                void API_OnMapLoad() // When map is loading.
                {
                    Run = true; // Starts plugin.
                }
                long last_tick = -1; // Syncs timer.
                void API_OnFrame() // When player has control.
                {
                    if (Run == true) // If Plugin running.
                    {
                        foreach (Player player in API.GetPlayers()) // Goes through players and gives them weapons etc.
                        {
                            player.iPrintBoldLn("^2 EazyZombies Mod By SirGravzy Loaded!"); // Tells each player that the plugin started.
                            System.Threading.Thread.Sleep(3000); // Waits 3 seconds - horrible wait method but ah well.
                            player.Weapons.PrimaryWeapon = "hamr_zm"; // Sets Primary weapon to HAMR.
                            player.Weapons.CurrentWeapon = "hamr_zm"; // Sets Current weapon to HAMR.
                            player.iPrintBoldLn("^1 HAMR Given!"); // Tells each player that the HMAR is given.
                            System.Threading.Thread.Sleep(2500); // Waits 2.5 seconds - horrible wait method but ah well.
                            player.Money = 10000; // Sets players Money to 10000.
                            player.iPrintBoldLn("^3 Money Set to 10000!"); // Tells each player that 10000 money is given.
                            System.Threading.Thread.Sleep(1500); // Waits 1.5 seconds - horrible wait method but ah well.
                            player.Weapons.CurrentWeapon = "zombie_perk_bottle_jugg";  // Gives Player Jugg.
                            player.iPrintBoldLn("^4 Juggernaught perk given!"); // Tells each player that Jugg is given.
                            System.Threading.Thread.Sleep(5000); // Waits 5 seconds - horrible wait method but ah well.
                            player.iPrintBoldLn("^7 All weapons, money and perks set, kick some ass!"); // Tells each player that everything is done.
                        }
                       
                        if (last_tick == -1)
                            last_tick = DateTime.Now.Ticks; // Sets timer.
         
                        int seconds = new DateTime(DateTime.Now.Ticks - last_tick).Second; // Timer method.
         
                        if (seconds >= 180)
                        {
                            foreach (Player player in API.GetPlayers()) // Goes through players to display message.
                            {
                                player.iPrintLn("^1 Like Youtube? Check out www.youtube***.com");
                            }
                            last_tick = DateTime.Now.Ticks; // Resets timer.
                        }
                    }
         
                }
            }
        }
    Last edited by gravzy; 06-28-2013 at 04:01 AM. Reason: Removing my website from the code, forgot to do so before.

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

    lolboy31 (06-27-2013),Yourfavoritekillz (06-28-2013)

  3. #2
    ImMalkah's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    GTA Section
    Posts
    2,779
    Reputation
    370
    Thanks
    2,699
    My Mood
    Devilish
    This is going to bring modding to a whole new level, great job! .

    MPGH HISTORY:

    Registered Since 4-23-2013
    Editor 09-04-2013 - unknown
    Minion 10-22-2013 - 1-18-2014
    Donator 12-31-2014 - present
    Premium Seller 12-31-2016 - present
    Minion 03-15-2017 - I forgot

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

    gravzy (06-27-2013)

  5. #3
    JokerKidJack's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    3
    My Mood
    Breezy
    I agree Kenshin Jr, This will!

  6. The Following 2 Users Say Thank You to JokerKidJack For This Useful Post:

    gravzy (06-27-2013),ImMalkah (06-27-2013)

  7. #4
    gravzy's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    100
    Reputation
    13
    Thanks
    684
    My Mood
    Buzzed
    Glad you guys are looking forward to it

    ---------- Post added at 06:19 PM ---------- Previous post was at 06:18 PM ----------

    Just noticed the video has been removed form Youtube due to "copyright", guess the Activision are mad eh?
    Last edited by gravzy; 06-27-2013 at 06:22 PM.

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

    ImMalkah (06-27-2013)

  9. #5
    ImMalkah's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    GTA Section
    Posts
    2,779
    Reputation
    370
    Thanks
    2,699
    My Mood
    Devilish
    Quote Originally Posted by gravzy View Post
    Glad you guys are looking forward to it

    ---------- Post added at 06:19 PM ---------- Previous post was at 06:18 PM ----------

    Just noticed the video has been removed form Youtube due to "copywrite", guess the makers are mad eh?
    Damn that fast?! You're on their most wanted list .

    MPGH HISTORY:

    Registered Since 4-23-2013
    Editor 09-04-2013 - unknown
    Minion 10-22-2013 - 1-18-2014
    Donator 12-31-2014 - present
    Premium Seller 12-31-2016 - present
    Minion 03-15-2017 - I forgot

  10. #6
    gravzy's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    100
    Reputation
    13
    Thanks
    684
    My Mood
    Buzzed
    As the project was side lined, no attention what so ever. I show MPGH and boom, they get mad :P Ah well, next video will go on Liveleak or something.

  11. #7
    ImMalkah's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    GTA Section
    Posts
    2,779
    Reputation
    370
    Thanks
    2,699
    My Mood
    Devilish
    Quote Originally Posted by gravzy View Post
    As the project was side lined, no attention what so ever. I show MPGH and boom, they get mad :P Ah well, next video will go on Liveleak or something.
    Someone reported it 100% tryshit wouldn't be going on YouTube and searching this stuff .

    MPGH HISTORY:

    Registered Since 4-23-2013
    Editor 09-04-2013 - unknown
    Minion 10-22-2013 - 1-18-2014
    Donator 12-31-2014 - present
    Premium Seller 12-31-2016 - present
    Minion 03-15-2017 - I forgot

  12. #8
    gravzy's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    100
    Reputation
    13
    Thanks
    684
    My Mood
    Buzzed
    Indeed, ah well. Not gonna stop jZm :L Hopefully a good amount of lobbies will have this

  13. The Following User Says Thank You to gravzy For This Useful Post:

    ImMalkah (06-27-2013)

  14. #9
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    Nice, nice!
    This is very interesting!

    Code:
    System.Threading.Thread.Sleep(300); // Waits 3 seconds - horrible wait method but ah well.
    Fail xD It's 0.3 seconds, not 3 seconds .
    I'd suggest you to add "Using System.Threading", because you have to reasonless write System.Threading.Thread.Sleep(), instead only Thread.Sleep();
    Last edited by Lovroman; 06-27-2013 at 11:33 PM.

  15. #10
    Coper's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    BlackOps3.exe
    Posts
    449
    Reputation
    17
    Thanks
    3,648
    My Mood
    In Love
    Quote Originally Posted by gravzy View Post
    Glad you guys are looking forward to it

    ---------- Post added at 06:19 PM ---------- Previous post was at 06:18 PM ----------

    Just noticed the video has been removed form Youtube due to "copyright", guess the Activision are mad eh?
    nice man nice job

    YOU ONLY LIVE ONCE


  16. #11
    gravzy's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Posts
    100
    Reputation
    13
    Thanks
    684
    My Mood
    Buzzed
    It appears I am being targeted...
    2 of my videos have been removed by Treyarch
    My BO2 Steam account is now banned from BO2... I didn't do any sort of modifications to the game...
    Development still continuities due to BO2T6 being released and thus allows us to develop what we need due to how the addon works (Pattern recognition)

    I will be uploading a video showing off a basic sharpshooter plugin today.
    Last edited by Jorndel; 07-01-2013 at 02:50 AM.

  17. #12
    ImMalkah's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    GTA Section
    Posts
    2,779
    Reputation
    370
    Thanks
    2,699
    My Mood
    Devilish
    Quote Originally Posted by gravzy View Post
    It appears I am being targeted...
    2 of my videos have been removed by Treyarch
    My BO2 Steam account is now banned from BO2... I didn't do any sort of modifications to the game...
    Development still continuities due to BO2T6 being released and thus allows us to develop what we need due to how the addon works (Pattern recognition)

    I will be uploading a video showing off a basic sharpshooter plugin today.
    Hehe don't worry they can't do anything to you .

    MPGH HISTORY:

    Registered Since 4-23-2013
    Editor 09-04-2013 - unknown
    Minion 10-22-2013 - 1-18-2014
    Donator 12-31-2014 - present
    Premium Seller 12-31-2016 - present
    Minion 03-15-2017 - I forgot

  18. #13
    victorx588's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Some where in your house
    Posts
    85
    Reputation
    87
    Thanks
    4
    My Mood
    Breezy
    really looking forward to starting with jugg its kinda annoying in die rise.

  19. #14
    3LITEKID's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    In the darkness
    Posts
    790
    Reputation
    63
    Thanks
    178
    My Mood
    Cheerful
    Is this for like custom maps?

  20. #15
    ImMalkah's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    GTA Section
    Posts
    2,779
    Reputation
    370
    Thanks
    2,699
    My Mood
    Devilish
    Quote Originally Posted by 3LITEKID View Post
    Is this for like custom maps?
    What do you mean? If you properly read the thread it's a zombie addon :P

    MPGH HISTORY:

    Registered Since 4-23-2013
    Editor 09-04-2013 - unknown
    Minion 10-22-2013 - 1-18-2014
    Donator 12-31-2014 - present
    Premium Seller 12-31-2016 - present
    Minion 03-15-2017 - I forgot

Similar Threads

  1. BO2 Zombies Hacks? (Points, Godmode, etc)
    By Harukono in forum Call of Duty Black Ops 2 Help
    Replies: 9
    Last Post: 03-10-2013, 01:52 PM
  2. [Patched] Zolferno's Ultimate BO2 Zombie Trainer V2.1
    By zolferno in forum Call of Duty 9 - Black Ops 2 (BO2) Hacks & Cheats
    Replies: 51
    Last Post: 12-14-2012, 07:48 AM
  3. New BO2 Zombies DLC
    By cgallagher21 in forum Call of Duty Black Ops 2 Discussions
    Replies: 3
    Last Post: 11-25-2012, 01:18 PM
  4. BO2 Zombies: How to Activate the Secret Song in TranZit
    By DarkWing in forum Call of Duty Black Ops 2 Tutorials
    Replies: 3
    Last Post: 11-24-2012, 07:30 AM
  5. BO2 Zombie Secrets
    By hypeer92 in forum Call of Duty Black Ops 2 Discussions
    Replies: 0
    Last Post: 11-14-2012, 01:41 PM