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

Plutonium

  1. Home
  2. BO2 Modding Support & Discussion
  3. [Support] Slides

[Support] Slides

Scheduled Pinned Locked Moved BO2 Modding Support & Discussion
19 Posts 10 Posters 1.5k 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.
  • frostyundefined frosty

    Drgn It is named from other games, and he asked for help, not for your input on the name...

    Drgnundefined Offline
    Drgnundefined Offline
    Drgn
    Plutonium Staff
    wrote on last edited by Drgn
    #9

    frosty I just told him he could do it with GSC and you could too. Its not difficult to learn how to do GSC yourself instead of leeching off others; quit waiting for someone to post a full script for you to copy paste and do it youself.

    frostyundefined Jaxundefined 2 Replies Last reply
    0
    • Drgnundefined Drgn

      frosty I just told him he could do it with GSC and you could too. Its not difficult to learn how to do GSC yourself instead of leeching off others; quit waiting for someone to post a full script for you to copy paste and do it youself.

      frostyundefined Offline
      frostyundefined Offline
      frosty
      wrote on last edited by
      #10

      Drgn "quit waiting for someone to post a full script for you to copy and paste and do it yourself"
      lmao i never said that, I also help out a lot of people starting off their trickshot servers calm down lmao

      Again. He asked for the script, he didnt ask for your input...
      This is the BO2 Modding chat, he has every right to ask for a script in here

      Jaxundefined Mr. Androidundefined 2 Replies Last reply
      0
      • frostyundefined frosty

        Drgn "quit waiting for someone to post a full script for you to copy and paste and do it yourself"
        lmao i never said that, I also help out a lot of people starting off their trickshot servers calm down lmao

        Again. He asked for the script, he didnt ask for your input...
        This is the BO2 Modding chat, he has every right to ask for a script in here

        Jaxundefined Offline
        Jaxundefined Offline
        Jax
        Contributor
        wrote on last edited by
        #11

        frosty

        true, but I found a script already

        kuxqiundefined 1 Reply Last reply
        0
        • Drgnundefined Drgn

          frosty I just told him he could do it with GSC and you could too. Its not difficult to learn how to do GSC yourself instead of leeching off others; quit waiting for someone to post a full script for you to copy paste and do it youself.

          Jaxundefined Offline
          Jaxundefined Offline
          Jax
          Contributor
          wrote on last edited by
          #12

          Drgn said in Slides:

          frosty I just told him he could do it with GSC and you could too. Its not difficult to learn how to do GSC yourself instead of leeching off others; quit waiting for someone to post a full script for you to copy paste and do it youself.

          I know a good portion of GSC

          1 Reply Last reply
          0
          • frostyundefined frosty

            Drgn "quit waiting for someone to post a full script for you to copy and paste and do it yourself"
            lmao i never said that, I also help out a lot of people starting off their trickshot servers calm down lmao

            Again. He asked for the script, he didnt ask for your input...
            This is the BO2 Modding chat, he has every right to ask for a script in here

            Mr. Androidundefined Offline
            Mr. Androidundefined Offline
            Mr. Android
            Plutonium Admin
            wrote on last edited by
            #13

            frosty said in Slides:

            This is the BO2 Modding chat, he has every right to ask for a script in here

            Gotta agree with this I'm afraid.

            1 Reply Last reply
            0
            • Jaxundefined Jax

              frosty

              true, but I found a script already

              kuxqiundefined Offline
              kuxqiundefined Offline
              kuxqi
              wrote on last edited by
              #14

              Jax are you able to sen me that script my discord is Kuxqi#0461

              1 Reply Last reply
              0
              • frostyundefined frosty

                Drgn It is named from other games, and he asked for help, not for your input on the name...

                Emosewajundefined Offline
                Emosewajundefined Offline
                Emosewaj
                VIP
                wrote on last edited by
                #15

                frosty said in Slides:

                It is named from other games

                I'm genuinely interested what game(s) and why it's called that there

                frostyundefined 2 Replies Last reply
                0
                • Emosewajundefined Emosewaj

                  frosty said in Slides:

                  It is named from other games

                  I'm genuinely interested what game(s) and why it's called that there

                  frostyundefined Offline
                  frostyundefined Offline
                  frosty
                  wrote on last edited by
                  #16
                  This post is deleted!
                  1 Reply Last reply
                  0
                  • Emosewajundefined Emosewaj

                    frosty said in Slides:

                    It is named from other games

                    I'm genuinely interested what game(s) and why it's called that there

                    frostyundefined Offline
                    frostyundefined Offline
                    frosty
                    wrote on last edited by
                    #17

                    Emosewaj just other cod games, where you would , knife, and pull out your tomohawk immediately and it would launch you up in the air

                    1 Reply Last reply
                    0
                    • R1pzieundefined Offline
                      R1pzieundefined Offline
                      R1pzie
                      wrote on last edited by
                      #18
                      This post is deleted!
                      1 Reply Last reply
                      0
                      • Jhezsundefined Offline
                        Jhezsundefined Offline
                        Jhezs
                        wrote on last edited by
                        #19

                        Hello, I don't know if the topic is about sliding in bo2 I have this code taken from chatGPT, in order to be able to slide in bo2, if there is any expert in GCS code, you can compile the code or something like that. I use Google translator. this is the code:

                        // Declare the "isSliding" variable before the "playerSlide()" function
                        int isSliding;

                        // Define the function "playerSlide()"
                        playerSlide()
                        {
                        if ( isButtonPressed( "goprone_button" ) && self.velocity[2] < 0.1 )
                        {
                        isSliding = true;
                        self setplayerstance( "prone" );
                        self setOrigin( self.origin + ( 0, 0, -20 ) );
                        self setVelocity( ( anglestoforward( self.angles ) * 350 ) );
                        }
                        else if ( isSliding )
                        {
                        isSliding = false;
                        self setplayerstance( "stand" );
                        self setOrigin( self.origin + ( 0, 0, 20 ) );
                        self setVelocity( ( anglestoforward( self.angles ) * 200 ) );
                        }
                        }

                        Thank you for your time.![alt text](![image url](image url))

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

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