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

Plutonium

  1. Home
  2. MW3 Modding Support & Discussion
  3. fast gun switching reloading

fast gun switching reloading

Scheduled Pinned Locked Moved MW3 Modding Support & Discussion
2 Posts 2 Posters 89 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.
  • kaba7tohidundefined Offline
    kaba7tohidundefined Offline
    kaba7tohid
    wrote on last edited by
    #1

    hi
    is it possible to mod mw3 for fasting switching?by default thanks

    Kalitosundefined 1 Reply Last reply
    0
    • Kalitosundefined Offline
      Kalitosundefined Offline
      Kalitos
      replied to kaba7tohid on last edited by Kalitos
      #2

      kaba7tohid I think it is what you are looking for.

      #include maps\mp\_utility;
      #include common_scripts\utility;
      #include maps\mp\gametypes\_hud_util;
      
      init()
      {
          level thread onPlayerConnect();
      }
      
      onPlayerConnect()
      {
          for(;;)
          {
              level waittill("connected", player);
              player thread onPlayerSpawned();
          }
      }
      
      onPlayerSpawned()
      {
          self endon("disconnect");
      	level endon("game_ended");
          for(;;)
          {
              self waittill("spawned_player");
              self SetPerk("specialty_fastreload", true, false);
      	self SetPerk("specialty_quickswap", true, false);       
      	
          }
      }
      
      1 Reply Last reply
      0

      • Login

      • Don't have an account? Register

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