ItsMods

Full Version: MW2 riot shield throwing knife only mod
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
The title says it, I can't find a mod like this so im requesting it, I cannot make mods but I can sure install and play them. If someone could make one and post it that would be awesome. Smile Fuck yea!
Find the model name for riot shield and I can fix up a code snippet for you

  1. Find model name
  2. Edit yamato's "tomahawk" snippet
  3. ??
  4. Profit
yeah pretty much something like
Code:
for(;;)
{
self waittill("grenade_thrown", entity, weapon);
if(weapon == "throwingknife_mp")
{
entity setModel("riotshield_model_goes_here");
}
}
Thanks for the help, im going to try and see what i will come up with. Now to find that riot shield model Fuck yea!
(10-23-2011, 22:32)the_pie_dude Wrote: [ -> ]Thanks for the help, im going to try and see what i will come up with. Now to find that riot shield model Fuck yea!

Code:
weapon_riot_shield_mp

http://www.itsmods.com/forum/Thread-Riot-Shield.html
What i kind of mean though is a mod with a riot shield, and you get one throwable knife though.
(10-25-2011, 22:28)the_pie_dude Wrote: [ -> ]What i kind of mean though is a mod with a riot shield, and you get one throwable knife though.

The code is:

Code:
self takeallweapons();
self clearperks();
waitframe();
self giveweapon("riotshield_mp",0,false);
waitframe();
self switchtoweapon("riotshield_mp",0,false);
self setperk("throwingknife_mp");
self setweaponammoclip("throwingknife_mp",1);