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

Plutonium

  1. Home
  2. MW3 Modding Support & Discussion
  3. How to enable Unlimited Sprint in MW3?

How to enable Unlimited Sprint in MW3?

Scheduled Pinned Locked Moved MW3 Modding Support & Discussion
24 Posts 6 Posters 1.9k 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.
  • A Former User? A Former User

    Resxt Where do i need to insert these scripts? In which file i found "g_speed" and "jump_slowdownEnable 0"?

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

    PutPut they are dvars, just put them in your game's console or your server cfg like any other dvar

    1 Reply Last reply
    0
    • Czar_undefined Czar_

      Resxt Thank you for your response, the gsc script seems to work but i noticed the perks say quickdraw and sleight of hand, which enable those perks at spawn, which values do I change and what do I change it to for extreme conditioning? thank you so much

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

      Czar_ simply add/remove perks.
      So for extreme conditioning add this

      if ( !self _hasPerk( "specialty_longersprint" ))
      {
          self givePerk( "specialty_longersprint", false ); // Extreme conditioning
          self givePerk( "specialty_fastmantle", false ); // Extreme conditioning PRO
      }
      
      Black-maksundefined 1 Reply Last reply
      0
      • FutureRaveundefined Offline
        FutureRaveundefined Offline
        FutureRave
        VIP
        wrote on last edited by FutureRave
        #10

        This is totally possible with minimal effort.

        I have a mod that adds the marathon perk (from MW2) to the perkstable.csv
        https://github.com/diamante0018/InfectedGSC/blob/main/raw/mp/perkTable.csv#L80

        So all you need to do is create a mod that modifies the perks table CSV file. You need zonetool to build a mod fastfile. After that you may just give yourself the perk with a simple GSC script.

        Black-maksundefined 1 Reply Last reply
        0
        • FutureRaveundefined FutureRave

          This is totally possible with minimal effort.

          I have a mod that adds the marathon perk (from MW2) to the perkstable.csv
          https://github.com/diamante0018/InfectedGSC/blob/main/raw/mp/perkTable.csv#L80

          So all you need to do is create a mod that modifies the perks table CSV file. You need zonetool to build a mod fastfile. After that you may just give yourself the perk with a simple GSC script.

          Black-maksundefined Offline
          Black-maksundefined Offline
          Black-maks
          wrote on last edited by
          #11

          FutureRave could you give me a link to the finished ff file
          corrected perctable csv. No matter how I tried to collect the mod through zonetool and run it through fsgame, these perks refuse to work

          1 Reply Last reply
          0
          • Black-maksundefined Offline
            Black-maksundefined Offline
            Black-maks
            wrote on last edited by
            #12

            Сan someone collect and throw off the ff file of the mod?

            1 Reply Last reply
            0
            • Resxtundefined Resxt

              Czar_ simply add/remove perks.
              So for extreme conditioning add this

              if ( !self _hasPerk( "specialty_longersprint" ))
              {
                  self givePerk( "specialty_longersprint", false ); // Extreme conditioning
                  self givePerk( "specialty_fastmantle", false ); // Extreme conditioning PRO
              }
              
              Black-maksundefined Offline
              Black-maksundefined Offline
              Black-maks
              wrote on last edited by
              #13

              Resxt can you help create FF mod files?

              1 Reply Last reply
              0
              • Resxtundefined Offline
                Resxtundefined Offline
                Resxt
                Plutonium Staff
                wrote on last edited by
                #14

                no idk how to do that

                1 Reply Last reply
                0
                • Black-maksundefined Offline
                  Black-maksundefined Offline
                  Black-maks
                  wrote on last edited by
                  #15

                  Who knows how to use zonetool and can create ff mod files please help

                  1 Reply Last reply
                  0
                  • FutureRaveundefined Offline
                    FutureRaveundefined Offline
                    FutureRave
                    VIP
                    wrote on last edited by
                    #16
                    • Get yourself zonetool.dll and zonetool iw5 binary
                    • Download the repository I linked
                    • Put the contents of the raw folder inside a folder called zonetool in the game folder of iw5
                    • Put mod.csv in a folder called zone_source
                    • Open iw5 zonetool and type buildzone mod
                    • Go to zone/english and find mod.ff
                    • Put that in storage/iw5/mods/modname
                    • Set fs_game dvar
                    • Enjoy
                    1 Reply Last reply
                    0
                    • Black-maksundefined Offline
                      Black-maksundefined Offline
                      Black-maks
                      wrote on last edited by Black-maks
                      #17

                      FutureRave I did everything as you said, but when I create a ff mod file, it has a size of 12 kb, it seems to me that this is very small. I launched the game and entered the fs_game mods / bots command, but the perks did not work, although I gave them to myself through the script. Can you just post a link to the ff file?

                      1 Reply Last reply
                      0
                      • FutureRaveundefined Offline
                        FutureRaveundefined Offline
                        FutureRave
                        VIP
                        wrote on last edited by
                        #18

                        Hi Black-maks, even if I send you a fast file with the perks table modified you will still have to give unlimited sprint yourself the perk with another script and I honestly don't remember how to do that.
                        I just remembered that not too long ago I made a server plugin for pluto IW5 that adds a console command you can use to give yourself unlimited sprint.

                        marathonPerk <player num>

                        if you don't know how to create a fast file and do it with GSC this plugin is probably going to make it easier for you. The following plugin does many other things as well so perhaps it's also not entirely suited for this purpose. So I think you still figure out how to create fastfile and give yourself perk with GSC scripts.

                        DisablePlutoChat

                        Black-maksundefined 1 Reply Last reply
                        0
                        • FutureRaveundefined FutureRave

                          Hi Black-maks, even if I send you a fast file with the perks table modified you will still have to give unlimited sprint yourself the perk with another script and I honestly don't remember how to do that.
                          I just remembered that not too long ago I made a server plugin for pluto IW5 that adds a console command you can use to give yourself unlimited sprint.

                          marathonPerk <player num>

                          if you don't know how to create a fast file and do it with GSC this plugin is probably going to make it easier for you. The following plugin does many other things as well so perhaps it's also not entirely suited for this purpose. So I think you still figure out how to create fastfile and give yourself perk with GSC scripts.

                          DisablePlutoChat

                          Black-maksundefined Offline
                          Black-maksundefined Offline
                          Black-maks
                          wrote on last edited by
                          #19

                          FutureRave I managed to create a ff file and make the marathon and jumpdive perks work, thanks for the help.

                          1 Reply Last reply
                          0
                          • FutureRaveundefined Offline
                            FutureRaveundefined Offline
                            FutureRave
                            VIP
                            wrote on last edited by
                            #20

                            You are welcome

                            1 Reply Last reply
                            0
                            • Black-maksundefined Offline
                              Black-maksundefined Offline
                              Black-maks
                              wrote on last edited by
                              #21

                              FutureRave When using your mod and botwarfare, a crash occurs when you try to add a bot on the map (((

                              1 Reply Last reply
                              0
                              • FutureRaveundefined Offline
                                FutureRaveundefined Offline
                                FutureRave
                                VIP
                                wrote on last edited by
                                #22

                                Use my mod at your own risk. I do not plan to provide support it.
                                May I suggest you try the plugin

                                1 Reply Last reply
                                0
                                • Black-maksundefined Offline
                                  Black-maksundefined Offline
                                  Black-maks
                                  wrote on last edited by
                                  #23

                                  FutureRave
                                  what plugin? the problem is that even when I compile the ff mod myself and leave only perctable.tsv there and try to add a bot, the game still crashes. i wanted to play with bots and add cut perks, i already edited perctable.csv and put back about 20 working cut perks back into the game. Do you have any ideas how to make this work?

                                  FutureRaveundefined 1 Reply Last reply
                                  0
                                  • Black-maksundefined Black-maks

                                    FutureRave
                                    what plugin? the problem is that even when I compile the ff mod myself and leave only perctable.tsv there and try to add a bot, the game still crashes. i wanted to play with bots and add cut perks, i already edited perctable.csv and put back about 20 working cut perks back into the game. Do you have any ideas how to make this work?

                                    FutureRaveundefined Offline
                                    FutureRaveundefined Offline
                                    FutureRave
                                    VIP
                                    wrote on last edited by
                                    #24

                                    Black-maks
                                    "What plugin?" - The plugin I linked you.
                                    Yes I know how to add unlimited sprint. I've bee trying to explain you how I've done it with zonetool.

                                    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