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

Plutonium

  1. Home
  2. BO2 Modding Support & Discussion
  3. [Support] mode menu or admin menu zombie ?

[Support] mode menu or admin menu zombie ?

Scheduled Pinned Locked Moved BO2 Modding Support & Discussion
9 Posts 4 Posters 907 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • bryanundefined Offline
    bryanundefined Offline
    bryan
    wrote on last edited by Mr. Android
    #1

    Hello , i woulk like to know if we can get a mod menu or admin menu zombie ?

    1 Reply Last reply
    0
    • ujicosundefined Offline
      ujicosundefined Offline
      ujicos
      wrote on last edited by
      #2

      Are you asking if its possible to run a GSC mod menu in zombies, or are you asking for one?

      1 Reply Last reply
      0
      • bryanundefined Offline
        bryanundefined Offline
        bryan
        wrote on last edited by
        #3

        yes i asking for one and is that it is possible to put one ?

        1 Reply Last reply
        0
        • ujicosundefined Offline
          ujicosundefined Offline
          ujicos
          wrote on last edited by
          #4

          I believe it is possible if you run a server, however i'm unsure.

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

            okay i gonna watch that thanks

            Ducxyundefined 1 Reply Last reply
            0
            • Ducxyundefined Offline
              Ducxyundefined Offline
              Ducxy
              replied to bryan on last edited by
              #6

              bryan you can run GSC menus/scripts on your server. Place the maps folder in your T6R/Data folder.

              1 Reply Last reply
              0
              • bryanundefined Offline
                bryanundefined Offline
                bryan
                wrote on last edited by
                #7

                did you have good menu or a good script for the zombie ? because i have a script with jogg and weapon but it's for the people who join not for me

                1 Reply Last reply
                0
                • bryanundefined Offline
                  bryanundefined Offline
                  bryan
                  wrote on last edited by bryan
                  #8

                  Because I’d like to enjoy the perks and weapons I put on my server I don’t know how to do

                  tedundefined 1 Reply Last reply
                  0
                  • tedundefined Offline
                    tedundefined Offline
                    ted
                    replied to bryan on last edited by
                    #9

                    bryan ```
                    Here is my one - Gives everyone Jugg and a weapon upon spawining

                    #include common_scripts\utility;
                    #include maps\mp\zombies\_zm;
                    #include maps\mp\zombies\_zm_utility;
                    
                    init()
                    {
                    	level.clientid = 0;
                    	level.perk_purchase_limit = 9;
                    	level thread onplayerconnect();
                    }
                    
                    onplayerconnect()
                    {
                    	for ( ;; )
                    	{
                    		level waittill( "connecting", player );
                    		player.clientid = level.clientid;
                    		player thread onplayerspawned();
                    		level.clientid++;
                    	}
                    }
                    
                    onplayerspawned()
                    {
                    	level endon( "game_ended" );
                            self endon( "disconnect" );
                    	
                    	for(;;)
                    	{
                    		self welcome();
                    	}
                    }
                    
                    welcome()
                    {
                        self waittill( "spawned_player" );
                    	    self IPrintLnBold( "^5Welcome to ^7Ted Gang's ^5Zombie Lobby" );
                        self maps/mp/zombies/_zm_perks::give_perk( "specialty_armorvest" );
                        self giveWeapon( "mp5k_upgraded_zm" );
                        wait 7;
                        self iprintln("^2" +self.name + "^7 , your perk limit has been removed");
                    }
                    1 Reply Last reply
                    0

                    • Login

                    • Don't have an account? Register

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