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

Plutonium

  1. Home
  2. BO2 Modding Releases & Resources
  3. [Release] All perk slots unlock script [Zombies]

[Release] All perk slots unlock script [Zombies]

Scheduled Pinned Locked Moved BO2 Modding Releases & Resources
gscblack ops 2
43 Posts 24 Posters 42.8k Views 5 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.
  • MichaelCH MichaelCH

    Sparker I don't understand anything and the instructions are more ambiguous than anything else, please can you pass me the compiled file?
    And one more question, can I install more than one mod?

    AdrX003 Offline
    AdrX003 Offline
    AdrX003
    wrote on last edited by AdrX003
    #34

    MichaelCH to be able to follow the instructions you would need to understand some basics of programming, you basically get the source code, compile it in a program that is made exactly for that one thing,

    yes you can use more things in a single gsc mod but first of all you would need to know how to join different source codes or make the code yourself

    1 Reply Last reply
    0
    • JulzDoolz JulzDoolz

      Pistakilla I did everything you guys told me, I get the message when I load the game but when I went to go test it I'm still limited to 4 perks. Ive launched every map in custom games and still limited to 4 perks. Also no script errors

      DROGOC0P Offline
      DROGOC0P Offline
      DROGOC0P
      wrote on last edited by
      #35

      @JulzBoolz It happens to me too. No clue what is happening. Message is fine, perk limit itself is not.

      Cahz 1 Reply Last reply
      0
      • DROGOC0P DROGOC0P

        @JulzBoolz It happens to me too. No clue what is happening. Message is fine, perk limit itself is not.

        Cahz Offline
        Cahz Offline
        Cahz
        VIP
        wrote on last edited by
        #36

        DROGOC0P @JulzBoolz NickB_05 AdrX003

        init()
        {
            thread remove_perk_limit();
            for(;;)
            {
                level waittill("connected", player);
                player thread welcome();
            }
        }
        
        remove_perk_limit()
        {
            level waittill( "start_of_round" );
            level.perk_purchase_limit = 9;
        }
        
        welcome()
        {
            self endon("disconnect");
            self waittill("spawned_player");
            wait 7;
        	self iprintln("^2" +self.name + "^7 , your perk limit has been removed");
        }
        

        how to load/use the script

        DROGOC0P JulzDoolz AdrX003 3 Replies Last reply
        1
        • Cahz Cahz

          DROGOC0P @JulzBoolz NickB_05 AdrX003

          init()
          {
              thread remove_perk_limit();
              for(;;)
              {
                  level waittill("connected", player);
                  player thread welcome();
              }
          }
          
          remove_perk_limit()
          {
              level waittill( "start_of_round" );
              level.perk_purchase_limit = 9;
          }
          
          welcome()
          {
              self endon("disconnect");
              self waittill("spawned_player");
              wait 7;
          	self iprintln("^2" +self.name + "^7 , your perk limit has been removed");
          }
          

          how to load/use the script

          DROGOC0P Offline
          DROGOC0P Offline
          DROGOC0P
          wrote on last edited by
          #37

          Cahz It works perfectly now. Thanks a lot.

          JulzDoolz 1 Reply Last reply
          0
          • DROGOC0P DROGOC0P

            Cahz It works perfectly now. Thanks a lot.

            JulzDoolz Offline
            JulzDoolz Offline
            JulzDoolz
            wrote on last edited by
            #38
            This post is deleted!
            1 Reply Last reply
            0
            • Cahz Cahz

              DROGOC0P @JulzBoolz NickB_05 AdrX003

              init()
              {
                  thread remove_perk_limit();
                  for(;;)
                  {
                      level waittill("connected", player);
                      player thread welcome();
                  }
              }
              
              remove_perk_limit()
              {
                  level waittill( "start_of_round" );
                  level.perk_purchase_limit = 9;
              }
              
              welcome()
              {
                  self endon("disconnect");
                  self waittill("spawned_player");
                  wait 7;
              	self iprintln("^2" +self.name + "^7 , your perk limit has been removed");
              }
              

              how to load/use the script

              JulzDoolz Offline
              JulzDoolz Offline
              JulzDoolz
              wrote on last edited by
              #39

              Cahz It works! BUT they need to update the current script with this one

              AdrriiiBF 1 Reply Last reply
              0
              • Cahz Cahz

                DROGOC0P @JulzBoolz NickB_05 AdrX003

                init()
                {
                    thread remove_perk_limit();
                    for(;;)
                    {
                        level waittill("connected", player);
                        player thread welcome();
                    }
                }
                
                remove_perk_limit()
                {
                    level waittill( "start_of_round" );
                    level.perk_purchase_limit = 9;
                }
                
                welcome()
                {
                    self endon("disconnect");
                    self waittill("spawned_player");
                    wait 7;
                	self iprintln("^2" +self.name + "^7 , your perk limit has been removed");
                }
                

                how to load/use the script

                AdrX003 Offline
                AdrX003 Offline
                AdrX003
                wrote on last edited by AdrX003
                #40

                Cahz (dunno if im calling it right but...) so every "thread" need a wait function to load now?

                might be good to clarify that part so we can use the knowledge for any script and stop asking the same question for different scripts hehe

                [EDIT: looks like that would be a yes, since you said the same thong in another post i just saw]

                1 Reply Last reply
                0
                • JulzDoolz JulzDoolz

                  Cahz It works! BUT they need to update the current script with this one

                  AdrriiiBF Offline
                  AdrriiiBF Offline
                  AdrriiiBF
                  wrote on last edited by
                  #41

                  @JulzBoolz amigo como lo descargaste, no me deja descargar el archivo de los 9 perks

                  1 Reply Last reply
                  0
                  • E-HERO Justice Offline
                    E-HERO Justice Offline
                    E-HERO Justice
                    wrote on last edited by
                    #42

                    Is the mod still working of April 2nd 2026?

                    1 Reply Last reply
                    0
                    • Fat Whale Fat Whale referenced this topic on
                    • MrMelendezz Offline
                      MrMelendezz Offline
                      MrMelendezz
                      wrote last edited by
                      #43

                      does it still work i cant find the download !

                      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
                      • 3
                      • 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