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

Plutonium

  1. Home
  2. BO2 Modding Support & Discussion
  3. Gsc script to start with points

Gsc script to start with points

Scheduled Pinned Locked Moved BO2 Modding Support & Discussion
9 Posts 4 Posters 390 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.
  • undefined Offline
    undefined Offline
    [VIP5]Ultimate0
    wrote on Sep 11, 2024, 10:51 PM last edited by
    #1

    a gsc script to start with a certain amount of points, only once

    1 Reply Last reply
    0
    • undefined Offline
      undefined Offline
      [VIP5]Ultimate0
      wrote on Sep 12, 2024, 1:12 AM last edited by [VIP5]Ultimate0 Sep 12, 2024, 4:13 AM
      #2

      post here if you found it btw i appreciate

      undefined 1 Reply Last reply Sep 12, 2024, 12:15 PM
      0
      • undefined Offline
        undefined Offline
        Lemon Contributor
        replied to [VIP5]Ultimate0 on Sep 12, 2024, 12:15 PM last edited by Lemon Sep 12, 2024, 3:18 PM
        #3

        @Ultimate0

        heres one i made

        #include common_scripts\utility;
        
        init()
        {
             level waittill( "connected", player );
             player thread points();
        }
        
        points()
        {
            	self.score += 1000000; //max points in black ops 2
             wait 4;
             iprintlnBold( "Your points have been set to: " + self.score ); //you can comment this out by putting a // at the start of the line
        }
        
        undefined 2 Replies Last reply Sep 13, 2024, 1:45 AM
        1
        • ? Offline
          ? Offline
          A Former User
          wrote on Sep 12, 2024, 2:30 PM last edited by
          #4

          new to everything pc lol, how do you use these scripts? could i just put this in the command or is it something within the game

          undefined undefined 2 Replies Last reply Sep 12, 2024, 2:44 PM
          0
          • undefined Offline
            undefined Offline
            Resxt Plutonium Staff
            replied to A Former User on Sep 12, 2024, 2:44 PM last edited by
            #5

            luh_crayy you put it in notepad, save the file as a .gsc file in the right folder (read the doc)

            1 Reply Last reply
            0
            • undefined Offline
              undefined Offline
              [VIP5]Ultimate0
              replied to Lemon on Sep 13, 2024, 1:45 AM last edited by
              #6

              Lemon Thanks Legend

              1 Reply Last reply
              1
              • undefined Offline
                undefined Offline
                [VIP5]Ultimate0
                replied to A Former User on Sep 13, 2024, 1:59 AM last edited by [VIP5]Ultimate0 Sep 13, 2024, 4:59 AM
                #7

                luh_crayy Windows + R and then type "%localappdata%" find "Plutonium" and then click on storage > t6 > scripts > zm. Create a text file, put the code by Lemon and then click File > Save as > (Name whatever you want) and don't forget to put ".gsc" instead of ".txt".

                1 Reply Last reply
                1
                • undefined Offline
                  undefined Offline
                  [VIP5]Ultimate0
                  replied to Lemon on Sep 14, 2024, 8:52 PM last edited by
                  #8

                  Lemon thanks for making this script, but it doesn't work on mob of the dead because when you spawn, you start on afterlife mode so when i revive myself i start with 500 points

                  undefined 1 Reply Last reply Sep 14, 2024, 8:54 PM
                  0
                  • undefined Offline
                    undefined Offline
                    Lemon Contributor
                    replied to [VIP5]Ultimate0 on Sep 14, 2024, 8:54 PM last edited by
                    #9

                    @Ultimate0 add some wait time before the points, like this

                    #include common_scripts\utility;
                    
                    init()
                    {
                         level waittill( "connected", player );
                         player thread points();
                    }
                    
                    points()
                    {
                           wait 10; // revive yourself in this time
                        	self.score += 1000000; //max points in black ops 2
                         wait 4;
                         iprintlnBold( "Your points have been set to: " + self.score ); //you can comment this out by putting a // at the start of the line
                    }
                    
                    1 Reply Last reply
                    1

                    5/9

                    Sep 12, 2024, 2:44 PM

                    • Login

                    • Don't have an account? Register

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