ItsMods

Full Version: Giving perks or equipments/lethal nades
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Anyone knows how to give people certain perks?

In MW2 you called to the map _perks.gsc

but I only see _properks in blackops..

same for giving a tomahawk?


tnx
self setPerk("perkname");
me and met knows xD
but as soon as im finished whit cod4 tournement
ill post tut here
self setPerk(specialty);

Your lethal nades is
self giveWeapon(grenade);

If you want equipment, its
self giveWeapon(equipment);
self setActionslot(1, "weapon", equipment);
tnx deathmax
why doesnt This work? help anybody?

self giveWeapon( "equipment" );
self setActionslot(1, "satchel_charge_mp", equipment);
Maybe no " " for first equipment?
thanks for the reply but it doesnt work :/ server script complie error uninitialised variable 'equipment'
Then for both equipment a " " ?
(07-18-2011, 13:25)birdplane Wrote: [ -> ]why doesnt This work? help anybody?

self giveWeapon( "equipment" );
self setActionslot(1, "satchel_charge_mp", equipment);

C++ Code
  1. self giveWeapon( "satchel_charge_mp" );
  2. self setActionslot( 1, "weapon", "satchel_charge_mp" );