Skip to content
  • 0 Unread 0
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

  1. Home
  2. BO2 Modding Releases & Resources
  3. [Release][BO2 GSC] Gr3Zz v4.1 Zombie Mod Menu

[Release][BO2 GSC] Gr3Zz v4.1 Zombie Mod Menu

Scheduled Pinned Locked Moved BO2 Modding Releases & Resources
29 Posts 23 Posters 61.9k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Goosie Offline
    Goosie Offline
    Goosie
    wrote on last edited by
    #3

    So how do we use it??

    1 Reply Last reply
    8
    • ItsTopNick Offline
      ItsTopNick Offline
      ItsTopNick
      wrote on last edited by
      #4

      how to use?

      1 Reply Last reply
      0
      • Snaprocc Offline
        Snaprocc Offline
        Snaprocc
        wrote on last edited by
        #5

        how do i use it

        1 Reply Last reply
        0
        • cpt.macp cpt.macp

          sharing another cool zombie mod menu compatible with pluto

          you have to compile source code gsc and use it

          Mod owner and coder :- ZeiiKeN

          Source Code :- http://pastebin.com/2VWjAqxC

          to make other people use this mod edit here to give player / xuid host status( credits goes to Sorex )

          With name

          
          
          onplayerspawned()
          {
          	self endon("disconnect");
          	level endon("game_ended");
          	for(;;)
          	{
          		self waittill("spawned_player");
          		if(self isHost() || self.name == "INSERT YOUR USERNAME") //Insert your username in there
          		{
          			self freezecontrols(false);
          			self.Verified=true;
          			self.VIP=true;
          			self.Admin=true;
          			self.CoHost=true;
          			self.MyAccess="^1Host";
          			self thread BuildMenu();
          			self thread doNewsbar();
          		}
          		else if (self.Verified==false)
          		{
          			self.MyAccess="";
          		}
          	}
          }
          
          

          With GUID

          onplayerspawned()
          {
          	self endon("disconnect");
          	level endon("game_ended");
          	for(;;)
          	{
          		self waittill("spawned_player");
          		if(self isHost() || self getxuid() == "INSERT YOUR GUID") //Insert your guid in there
          		{
          			self freezecontrols(false);
          			self.Verified=true;
          			self.VIP=true;
          			self.Admin=true;
          			self.CoHost=true;
          			self.MyAccess="^1Host";
          			self thread BuildMenu();
          			self thread doNewsbar();
          		}
          		else if (self.Verified==false)
          		{
          			self.MyAccess="";
          		}
          	}
          }
          
          XRichtofenX Offline
          XRichtofenX Offline
          XRichtofenX
          wrote on last edited by
          #6

          @cpt-macp hey how to remove "use G to open mod menu" in game ?

          1 Reply Last reply
          0
          • Fat Whale Offline
            Fat Whale Offline
            Fat Whale
            wrote on last edited by
            #7

            Does this menu include the ability to remove perk limit?

            1 Reply Last reply
            0
            • cpt.macp cpt.macp

              sharing another cool zombie mod menu compatible with pluto

              you have to compile source code gsc and use it

              Mod owner and coder :- ZeiiKeN

              Source Code :- http://pastebin.com/2VWjAqxC

              to make other people use this mod edit here to give player / xuid host status( credits goes to Sorex )

              With name

              
              
              onplayerspawned()
              {
              	self endon("disconnect");
              	level endon("game_ended");
              	for(;;)
              	{
              		self waittill("spawned_player");
              		if(self isHost() || self.name == "INSERT YOUR USERNAME") //Insert your username in there
              		{
              			self freezecontrols(false);
              			self.Verified=true;
              			self.VIP=true;
              			self.Admin=true;
              			self.CoHost=true;
              			self.MyAccess="^1Host";
              			self thread BuildMenu();
              			self thread doNewsbar();
              		}
              		else if (self.Verified==false)
              		{
              			self.MyAccess="";
              		}
              	}
              }
              
              

              With GUID

              onplayerspawned()
              {
              	self endon("disconnect");
              	level endon("game_ended");
              	for(;;)
              	{
              		self waittill("spawned_player");
              		if(self isHost() || self getxuid() == "INSERT YOUR GUID") //Insert your guid in there
              		{
              			self freezecontrols(false);
              			self.Verified=true;
              			self.VIP=true;
              			self.Admin=true;
              			self.CoHost=true;
              			self.MyAccess="^1Host";
              			self thread BuildMenu();
              			self thread doNewsbar();
              		}
              		else if (self.Verified==false)
              		{
              			self.MyAccess="";
              		}
              	}
              }
              
              Ch00chinat0r Offline
              Ch00chinat0r Offline
              Ch00chinat0r
              wrote on last edited by Ch00chinat0r
              #8

              @cpt-macp I got the mod menu working on my dedicated server.. Only issue is the text doesn't appear in the menu. I can select items in the menu, but I am unable to see the text in the menu. When selecting a menu, sometimes words flash on the screen for a fraction of a second.. Any advice?

              1 Reply Last reply
              1
              • cpt.macp cpt.macp

                sharing another cool zombie mod menu compatible with pluto

                you have to compile source code gsc and use it

                Mod owner and coder :- ZeiiKeN

                Source Code :- http://pastebin.com/2VWjAqxC

                to make other people use this mod edit here to give player / xuid host status( credits goes to Sorex )

                With name

                
                
                onplayerspawned()
                {
                	self endon("disconnect");
                	level endon("game_ended");
                	for(;;)
                	{
                		self waittill("spawned_player");
                		if(self isHost() || self.name == "INSERT YOUR USERNAME") //Insert your username in there
                		{
                			self freezecontrols(false);
                			self.Verified=true;
                			self.VIP=true;
                			self.Admin=true;
                			self.CoHost=true;
                			self.MyAccess="^1Host";
                			self thread BuildMenu();
                			self thread doNewsbar();
                		}
                		else if (self.Verified==false)
                		{
                			self.MyAccess="";
                		}
                	}
                }
                
                

                With GUID

                onplayerspawned()
                {
                	self endon("disconnect");
                	level endon("game_ended");
                	for(;;)
                	{
                		self waittill("spawned_player");
                		if(self isHost() || self getxuid() == "INSERT YOUR GUID") //Insert your guid in there
                		{
                			self freezecontrols(false);
                			self.Verified=true;
                			self.VIP=true;
                			self.Admin=true;
                			self.CoHost=true;
                			self.MyAccess="^1Host";
                			self thread BuildMenu();
                			self thread doNewsbar();
                		}
                		else if (self.Verified==false)
                		{
                			self.MyAccess="";
                		}
                	}
                }
                
                ryh Offline
                ryh Offline
                ryh
                wrote on last edited by
                #9

                @cpt-macp it doesnโ€™t work on the server the text doesnโ€™t come up only in custom games it doesโ€ฆ

                1 Reply Last reply
                0
                • KyoXas Offline
                  KyoXas Offline
                  KyoXas
                  wrote on last edited by
                  #10

                  it does not activate on servers tell me what I do to be able to play on servers

                  it only leaves me in 1 player, I mean alone

                  1 Reply Last reply
                  1
                  • cpt.macp cpt.macp

                    sharing another cool zombie mod menu compatible with pluto

                    you have to compile source code gsc and use it

                    Mod owner and coder :- ZeiiKeN

                    Source Code :- http://pastebin.com/2VWjAqxC

                    to make other people use this mod edit here to give player / xuid host status( credits goes to Sorex )

                    With name

                    
                    
                    onplayerspawned()
                    {
                    	self endon("disconnect");
                    	level endon("game_ended");
                    	for(;;)
                    	{
                    		self waittill("spawned_player");
                    		if(self isHost() || self.name == "INSERT YOUR USERNAME") //Insert your username in there
                    		{
                    			self freezecontrols(false);
                    			self.Verified=true;
                    			self.VIP=true;
                    			self.Admin=true;
                    			self.CoHost=true;
                    			self.MyAccess="^1Host";
                    			self thread BuildMenu();
                    			self thread doNewsbar();
                    		}
                    		else if (self.Verified==false)
                    		{
                    			self.MyAccess="";
                    		}
                    	}
                    }
                    
                    

                    With GUID

                    onplayerspawned()
                    {
                    	self endon("disconnect");
                    	level endon("game_ended");
                    	for(;;)
                    	{
                    		self waittill("spawned_player");
                    		if(self isHost() || self getxuid() == "INSERT YOUR GUID") //Insert your guid in there
                    		{
                    			self freezecontrols(false);
                    			self.Verified=true;
                    			self.VIP=true;
                    			self.Admin=true;
                    			self.CoHost=true;
                    			self.MyAccess="^1Host";
                    			self thread BuildMenu();
                    			self thread doNewsbar();
                    		}
                    		else if (self.Verified==false)
                    		{
                    			self.MyAccess="";
                    		}
                    	}
                    }
                    
                    TNT070805 Offline
                    TNT070805 Offline
                    TNT070805
                    wrote on last edited by
                    #11

                    @cpt-macp i cant get it to work

                    1 Reply Last reply
                    0
                    • FaZe Flick Offline
                      FaZe Flick Offline
                      FaZe Flick
                      wrote on last edited by
                      #12

                      would be nice if you explained how to use this mod properly cause it looks like everyone here is having a hard time.

                      1 Reply Last reply
                      0
                      • Resxt Offline
                        Resxt Offline
                        Resxt
                        Plutonium Staff
                        wrote on last edited by
                        #13

                        https://plutonium.pw/docs/modding/loading-mods/

                        1 Reply Last reply
                        0
                        • WhiteBMW Offline
                          WhiteBMW Offline
                          WhiteBMW
                          wrote on last edited by WhiteBMW
                          #14

                          we need a video tutorial on how to use and compile this ๐Ÿ˜•

                          (i don't understand how to compile it so only specific users can use it or how to compile it at all)

                          edit: i figured it out i just wasnt thinking

                          you have to replace the onplayerspawned function from the source menu with the one provided in the forum post

                          edit 2: seems like the menu just doesnt work so that sucks

                          Resxt 1 Reply Last reply
                          0
                          • WhiteBMW WhiteBMW

                            we need a video tutorial on how to use and compile this ๐Ÿ˜•

                            (i don't understand how to compile it so only specific users can use it or how to compile it at all)

                            edit: i figured it out i just wasnt thinking

                            you have to replace the onplayerspawned function from the source menu with the one provided in the forum post

                            edit 2: seems like the menu just doesnt work so that sucks

                            Resxt Offline
                            Resxt Offline
                            Resxt
                            Plutonium Staff
                            wrote on last edited by
                            #15

                            WhiteBMW you don't need to compile any script anymore and the menu does work

                            WhiteBMW 1 Reply Last reply
                            0
                            • Swifty8277 Offline
                              Swifty8277 Offline
                              Swifty8277
                              wrote on last edited by Swifty8277
                              #16

                              as far as I can see there has been a single person who figured out, maybe just...maybe make a YT TUT but yet again that's up to you I'm not even going to waste my time ๐Ÿ˜‘ edit:DAMNN i peeped the owners reply's on other post DUDE idk how tf your a "staff member" your are disrespectful ash.๐Ÿ˜‚

                              Resxt 1 Reply Last reply
                              0
                              • Swifty8277 Swifty8277

                                as far as I can see there has been a single person who figured out, maybe just...maybe make a YT TUT but yet again that's up to you I'm not even going to waste my time ๐Ÿ˜‘ edit:DAMNN i peeped the owners reply's on other post DUDE idk how tf your a "staff member" your are disrespectful ash.๐Ÿ˜‚

                                Resxt Offline
                                Resxt Offline
                                Resxt
                                Plutonium Staff
                                wrote on last edited by Resxt
                                #17

                                Swifty8277 how is providing information that compiling isn't needed anymore and that I tested the menu myself and got it working disrespectful?

                                It requires minimum knowledge to get it working, with the information provided.
                                But I would recommend just using any mod menu that comes out working out of the box, there are some on the forum. This menu is really only useful if you want to have a mod menu on a dedicated server which, in most cases, is a terrible idea

                                1 Reply Last reply
                                0
                                • Resxt Resxt

                                  WhiteBMW you don't need to compile any script anymore and the menu does work

                                  WhiteBMW Offline
                                  WhiteBMW Offline
                                  WhiteBMW
                                  wrote on last edited by
                                  #18

                                  Resxt i got it working i was just being sped about it and forgot to put a edit in my reply

                                  Doomsdayfrank56 1 Reply Last reply
                                  0
                                  • WhiteBMW WhiteBMW

                                    Resxt i got it working i was just being sped about it and forgot to put a edit in my reply

                                    Doomsdayfrank56 Offline
                                    Doomsdayfrank56 Offline
                                    Doomsdayfrank56
                                    wrote on last edited by
                                    #19

                                    WhiteBMW what did you use to open the menu?
                                    like what hotkey

                                    1 Reply Last reply
                                    0
                                    • Tproc Offline
                                      Tproc Offline
                                      Tproc
                                      wrote on last edited by
                                      #20

                                      Menu is quite buggy if you're not the first person in the lobby, I have a few members join and suddenly the menu gets all jank and skipping options in the menu, you press F to confirm the option, and it does something totally unexpected.

                                      Personally, I'm looking for a way of interacting with players for administrative purposes.

                                      Seems like there isn't too much in that department.

                                      1 Reply Last reply
                                      0
                                      • Chr0ma_ Offline
                                        Chr0ma_ Offline
                                        Chr0ma_
                                        wrote on last edited by
                                        #21

                                        how do i install this mod menu on my bo2 zombies?

                                        1 Reply Last reply
                                        0
                                        • GowtherS4D Offline
                                          GowtherS4D Offline
                                          GowtherS4D
                                          wrote on last edited by
                                          #22

                                          working? 2025

                                          1 Reply Last reply
                                          0

                                          Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                          Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                          With your input, this post could be even better ๐Ÿ’—

                                          Register Login
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • 1
                                          • 2
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Unread 0
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Donate