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

Plutonium

  1. Home
  2. MW3 Modding Releases & Resources
  3. My collection of IW5 scripts

My collection of IW5 scripts

Scheduled Pinned Locked Moved MW3 Modding Releases & Resources
45 Posts 6 Posters 6.5k 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.
  • Medisonundefined Offline
    Medisonundefined Offline
    Medison
    wrote on last edited by
    #23

    Resxt it is possible in this script to change gun after 2 kills not 1

    Resxtundefined 1 Reply Last reply
    0
    • Resxtundefined Offline
      Resxtundefined Offline
      Resxt Plutonium Staff
      replied to Medison on last edited by
      #24

      Medison should be doable by editing several parts of the script, especially around level.gun_game_weapons_amount

      1 Reply Last reply
      0
      • Medisonundefined Offline
        Medisonundefined Offline
        Medison
        wrote on last edited by
        #25

        Resxt Can you please do it in this file because I don't really understand what needs to be edited https://drive.google.com/file/d/19FFdNBL3-2R98Yv2dwT1qgE3rLqX1Go6/view?usp=sharing

        1 Reply Last reply
        0
        • Medisonundefined Offline
          Medisonundefined Offline
          Medison
          wrote on last edited by Medison
          #26

          Resxt Sorry if I'm bothering you with all this, how to add specialist streak in this script and make zero damage knife?

          1 Reply Last reply
          0
          • Medisonundefined Offline
            Medisonundefined Offline
            Medison
            wrote on last edited by
            #27

            Resxt Regarding the knife, I already found your script, disable damage

            1 Reply Last reply
            0
            • Medisonundefined Offline
              Medisonundefined Offline
              Medison
              wrote on last edited by Medison
              #28

              Resxt by the way deepseek able to edit script and it works great (i mean about 2 kills)

              Resxtundefined 1 Reply Last reply
              0
              • Resxtundefined Offline
                Resxtundefined Offline
                Resxt Plutonium Staff
                replied to Medison on last edited by
                #29

                Medison I forgot about this sorry, so all good now?

                1 Reply Last reply
                0
                • Medisonundefined Offline
                  Medisonundefined Offline
                  Medison
                  wrote on last edited by
                  #30

                  Resxt Nothing to be sorry about and yeah 2 kills works great

                  1 Reply Last reply
                  0
                  • Medisonundefined Offline
                    Medisonundefined Offline
                    Medison
                    wrote on last edited by Medison
                    #31

                    Resxt if you are interested in seeing how ai edit your script here the screen, left is original script

                    0f67ae00-5747-4992-8fb2-9c298c5fd66a-image.png

                    1 Reply Last reply
                    1
                    • Medisonundefined Offline
                      Medisonundefined Offline
                      Medison
                      wrote on last edited by Medison
                      #32

                      Resxt can you please help what i need too edit here i want specialist streak, i tried to edit myself but nothing works correctly
                      bf5883fd-34a8-4b2f-9938-6758d3184326-image.png

                      Resxtundefined 1 Reply Last reply
                      0
                      • Resxtundefined Offline
                        Resxtundefined Offline
                        Resxt Plutonium Staff
                        replied to Medison on last edited by
                        #33

                        Medison try this

                        Replace with the perks you want

                        self.pers["gamemodeLoadout"]["loadoutStreakType"] = "specialist"
                        self.pers["gamemodeLoadout"]["loadoutKillstreak1"] = "specialty_scavenger_ks"
                        self.pers["gamemodeLoadout"]["loadoutKillstreak2"] = "specialty_quieter_ks"
                        self.pers["gamemodeLoadout"]["loadoutKillstreak3"] = "specialty_longersprint_ks"
                        
                        1 Reply Last reply
                        0
                        • Medisonundefined Offline
                          Medisonundefined Offline
                          Medison
                          wrote on last edited by Medison
                          #34

                          Resxt its not working
                          9517d81d-a9e9-4685-9add-bac0ee29f195-image.png

                          1 Reply Last reply
                          0
                          • Medisonundefined Offline
                            Medisonundefined Offline
                            Medison
                            wrote on last edited by Medison
                            #35

                            Resxt nevermind i find out how to fix in this line
                            self.pers["gamemodeLoadout"]["loadoutStreakType"] = "specialist"
                            should be
                            self.pers["gamemodeLoadout"]["loadoutStreakType"] = "streaktype_specialist"; thanks a lot for the tip

                            1 Reply Last reply
                            1
                            • Medisonundefined Offline
                              Medisonundefined Offline
                              Medison
                              wrote on last edited by Medison
                              #36

                              Resxt did you know why am i have no weapon? also i cant even knife
                              image.png
                              Снимок экрана (16094).png
                              Maybe deepseek wrote bad code for 2 kills change weapon

                              OnPlayerKill()
                              {
                              self endon("disconnect");

                              for (;;)
                              {
                                  self waittill("killed_enemy");
                              
                                  // Increment the kill counter
                                  self.pers["gun_game_kill_counter"]++;
                              
                                  // Check if the player has reached 2 kills
                                  if (self.pers["gun_game_kill_counter"] >= 2)
                                  {
                                      // Reset the kill counter
                                      self.pers["gun_game_kill_counter"] = 0;
                              
                                      // Update the score and weapon index
                                      self.pers["previous_score"] = (self.pers["previous_score"] + 50); // Prevent multi kills from giving score multiple times. This way our score is always equal to our current weapon index
                                      self.score = self.pers["previous_score"];
                                      self.pers["score"] = self.pers["previous_score"];
                              
                                      if (self.score == (50 * level.gun_game_weapons_amount) - 50) // If we are at the last weapon
                                      {
                                          SetGameLimits(level.gun_game_weapons_amount); // Change the score limit (originally at 0 to prevent a multi kill bug) to one kill from now
                                      }
                              
                                      self.pers["gun_game_current_index"]++;
                                      self.pers["gun_game_current_weapon"] = level.gun_game_current_game_weapons[self.pers["gun_game_current_index"]];
                              
                                      if (self.pers["gun_game_current_index"] < level.gun_game_weapons_amount)
                                      {
                                          GiveGunGameWeapon(false);
                                          
                                          if (self.pers["gun_game_current_index"] == (level.gun_game_weapons_amount - 1)) // last weapon obtained
                                          {
                                              maps\mp\_utility::playsoundonplayers("mp_enemy_obj_captured");
                                          }
                                          else
                                          {
                                              self playlocalsound("mp_war_objective_taken");
                                          }
                                      }
                                      else
                                      {
                                          self.pers["gun_game_current_index"] = (level.gun_game_weapons_amount - 1); // Reset the index to max weapon index. This is so that we don't display Weapon: 19/18 for example
                                      }
                                  }
                              }
                              

                              }

                              1 Reply Last reply
                              0
                              • Medisonundefined Offline
                                Medisonundefined Offline
                                Medison
                                wrote on last edited by
                                #37

                                Resxt can you please tell me is there a command to pause the server in a private match

                                Resxtundefined 1 Reply Last reply
                                0
                                • Resxtundefined Offline
                                  Resxtundefined Offline
                                  Resxt Plutonium Staff
                                  replied to Medison on last edited by
                                  #38

                                  Medison idk

                                  1 Reply Last reply
                                  0
                                  • Medisonundefined Offline
                                    Medisonundefined Offline
                                    Medison
                                    wrote on last edited by
                                    #39

                                    Resxt what console command for coordinates hud like cg_drawfps

                                    Resxtundefined 1 Reply Last reply
                                    0
                                    • Resxtundefined Offline
                                      Resxtundefined Offline
                                      Resxt Plutonium Staff
                                      replied to Medison on last edited by
                                      #40

                                      Medison cg_drawfps 4

                                      Medisonundefined 1 Reply Last reply
                                      1
                                      • Medisonundefined Offline
                                        Medisonundefined Offline
                                        Medison
                                        replied to Resxt on last edited by Medison
                                        #41

                                        Resxt i have bat file and how to make that command fs_game mods/survival will load, i tried +fs_game mods/survival but its not working
                                        95d47c28-a98b-4a20-b090-0ec8ace3a950-image.png

                                        Resxtundefined 1 Reply Last reply
                                        0
                                        • Medisonundefined Offline
                                          Medisonundefined Offline
                                          Medison
                                          wrote on last edited by
                                          #42

                                          Resxt

                                          1 Reply Last reply
                                          0

                                          • 1
                                          • 2
                                          • 3
                                          • Login

                                          • Don't have an account? Register

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