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

Plutonium

  1. Home
  2. BO2 Modding Support & Discussion
  3. Bo2 trickshot mods (private trickshotting)

Bo2 trickshot mods (private trickshotting)

Scheduled Pinned Locked Moved BO2 Modding Support & Discussion
25 Posts 6 Posters 12.8k Views 1 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.
  • Sorexundefined Offline
    Sorexundefined Offline
    Sorex
    Contributor
    wrote on last edited by
    #2

    VanillasTS

    Basic trickshot mod menu with alredy setupped things for ffa trickshot

    https://forum.plutonium.pw/topic/7747/release-vanillasts-server-side-trickshot-menu?_=1664530992354

    xd Woxundefined 1 Reply Last reply
    1
    • Resxtundefined Offline
      Resxtundefined Offline
      Resxt
      Plutonium Staff
      wrote on last edited by Resxt
      #3

      Idk why everyone does that but "can someone link a mod menu" is not a release/resource you share so post in support instead next time

      You can easily find things by searching on the forum
      https://forum.plutonium.pw/search?term=trickshot&in=titles&matchWords=all&categories[]=23&sortBy=relevance&sortDirection=desc&showAs=posts

      https://forum.plutonium.pw/search?term=mod menu&in=titles&matchWords=all&categories[]=23&sortBy=relevance&sortDirection=desc&showAs=posts

      1 Reply Last reply
      0
      • Sorexundefined Sorex

        VanillasTS

        Basic trickshot mod menu with alredy setupped things for ffa trickshot

        https://forum.plutonium.pw/topic/7747/release-vanillasts-server-side-trickshot-menu?_=1664530992354

        xd Woxundefined Offline
        xd Woxundefined Offline
        xd Wox
        wrote on last edited by
        #4

        Sorex seems to be fine but where is the dedicated.cfg located? btw srry for disturbing

        Resxtundefined 1 Reply Last reply
        0
        • xd Woxundefined xd Wox

          Sorex seems to be fine but where is the dedicated.cfg located? btw srry for disturbing

          Resxtundefined Offline
          Resxtundefined Offline
          Resxt
          Plutonium Staff
          wrote on last edited by
          #5

          @Live-Forever https://plutonium.pw/docs/server/t6/setting-up-a-server/

          1 Reply Last reply
          0
          • xd Woxundefined Offline
            xd Woxundefined Offline
            xd Wox
            wrote on last edited by
            #6

            Resxt so i need to set-up a server to get the "dedicated.cfg" file?

            Resxtundefined 1 Reply Last reply
            0
            • xd Woxundefined xd Wox

              Resxt so i need to set-up a server to get the "dedicated.cfg" file?

              Resxtundefined Offline
              Resxtundefined Offline
              Resxt
              Plutonium Staff
              wrote on last edited by
              #7

              @Live-Forever you asked where dedicated.cfg is, this is a server config file so yes.
              Otherwise simply put those dvars in the console like g_speed 500 etc the result is the same

              1 Reply Last reply
              0
              • xd Woxundefined Offline
                xd Woxundefined Offline
                xd Wox
                wrote on last edited by
                #8

                ok tysm, and sorry for interrupting ❤

                1 Reply Last reply
                1
                • rezahsundefined Offline
                  rezahsundefined Offline
                  rezahs
                  wrote on last edited by
                  #9

                  Sorex Hi, when I open the menu I only see this. Is this normal? screen menu.png

                  1 Reply Last reply
                  0
                  • Sorexundefined Offline
                    Sorexundefined Offline
                    Sorex
                    Contributor
                    wrote on last edited by
                    #10

                    rezahs Yes, if you open the option you will see the rest. For other options you need to edit the code and add your guid to change your permission level.

                    1 Reply Last reply
                    0
                    • rezahsundefined Offline
                      rezahsundefined Offline
                      rezahs
                      wrote on last edited by
                      #11

                      Sorex hello ,
                      I created my server, I put the source code of the menu in the dedicated and changed the "your guid" by mine which is the "6BBC" it does not work, I also saw that there was a menu in the folder VanityTS I also changed my "GUID" by mine or else I made a mistake of place, would you have an idea to help me please?

                      1 Reply Last reply
                      0
                      • Sorexundefined Offline
                        Sorexundefined Offline
                        Sorex
                        Contributor
                        wrote on last edited by Sorex
                        #12

                        rezahs I provided a change to make it work with hex ids.

                        self.guid is a numeric and not an hex id and is the uid that you also use on the forum.
                        selg getguid() should retrun the hex id of your uid.

                        Check the commit to see what changed;
                        https://github.com/DoktorSAS/VanityTS/commit/4b897611819851f2e21de8a3a799388f7ba56494

                        1 Reply Last reply
                        0
                        • rezahsundefined Offline
                          rezahsundefined Offline
                          rezahs
                          wrote on last edited by
                          #13

                          If I've understood correctly, all I have to do is replace the line of code you gave me and put in my stuff. If that's the case, it didn't work for me and I don't have access to the rest of the menu.

                          1 Reply Last reply
                          0
                          • Sorexundefined Offline
                            Sorexundefined Offline
                            Sorex
                            Contributor
                            wrote on last edited by
                            #14

                            rezahs use the numeric value convert the hex to dec. idk if the capital letter do any difference. Just mess with it. I had no issue with it.

                            1 Reply Last reply
                            0
                            • rezahsundefined Offline
                              rezahsundefined Offline
                              rezahs
                              wrote on last edited by
                              #15

                              hex : 27580 dec : 161152

                              if(self.guid != "27580" || self getguid() == "161152")

                              still not work after make this , maybe there's a problem with my server

                              1 Reply Last reply
                              0
                              • Sorexundefined Offline
                                Sorexundefined Offline
                                Sorex
                                Contributor
                                wrote on last edited by
                                #16

                                rezahs "27580" is a string while 27580 is a numeric. If you remove the " it should work if 27580 is your id as a decimal and not an hexdecimal.
                                By looking at the value you inverted the values
                                161152 is your decimal and "27580" is your hex. So your if should look like
                                if(self.guid != 161152 || self getguid() == "27580")
                                image.png

                                1 Reply Last reply
                                0
                                • Sorexundefined Offline
                                  Sorexundefined Offline
                                  Sorex
                                  Contributor
                                  wrote on last edited by Sorex
                                  #17

                                  I edited again the code because i need i did not apply the lazy-end logic. Update your code

                                  After test:
                                  Seems to work as intended

                                  1 Reply Last reply
                                  0
                                  • rezahsundefined Offline
                                    rezahsundefined Offline
                                    rezahs
                                    wrote on last edited by
                                    #18

                                    I'd like to know if this is all there is in the menu or is there something else I don't have? menu 1.png menu 2.png

                                    1 Reply Last reply
                                    0
                                    • Sorexundefined Offline
                                      Sorexundefined Offline
                                      Sorex
                                      Contributor
                                      wrote on last edited by
                                      #19

                                      rezahs Other then that there is nothing else. Is a base you can add what you want.

                                      The only extra options are for the host level, it will just add a player menus section.

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

                                        okay I didn't know, thank you for the help have a nice day

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

                                          Sorex I'm coming back to you to find out if it was possible to change or remove certain weapons from the bots on the VanityTs?

                                          Sorexundefined 1 Reply Last reply
                                          0
                                          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
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Donate