ItsMods

Full Version: camoflage
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do you add the golden camo to your weapon in a mod

like isnipe v2.6

self giveWeapon("l96a1_vzoom_extclip_mp", 0, int(weaponOptions));


is the 0 still the camo? if so, what number is gold?
(06-02-2011, 14:59)eliteCVDelite Wrote: [ -> ]how do you add the golden camo to your weapon in a mod

like isnipe v2.6

self giveWeapon("l96a1_vzoom_extclip_mp", 0, int(weaponOptions));


is the 0 still the camo? if so, what number is gold?
PHP Code:
giveWeapon("weaponname_mp"0calcWeaponOptions ( <camo>, <lens>, <reticle>, <tag>, <emblem> )); 
This is how I do the gold camo. The 15 is the camo,the 0's are for lens and reticle. the 1's are for clan tags and game emblems.
(06-03-2011, 08:25)failw0rm Wrote: [ -> ]
(06-02-2011, 14:59)eliteCVDelite Wrote: [ -> ]how do you add the golden camo to your weapon in a mod

like isnipe v2.6

self giveWeapon("l96a1_vzoom_extclip_mp", 0, int(weaponOptions));


is the 0 still the camo? if so, what number is gold?
PHP Code:
giveWeapon("weaponname_mp"0calcWeaponOptions ( <camo>, <lens>, <reticle>, <tag>, <emblem> )); 
This is how I do the gold camo. The 15 is the camo,the 0's are for lens and reticle. the 1's are for clan tags and game emblems.

could you write it out so it's fully completed i really dont know how :S (new in black ops modding)
Code:
giveWeapon("ak47_mp", 0, calcWeaponOptions ( 15, 0, 0, 1, 1 ));
this should give you golden ak47 with clantag and emblem Big Grin
/solved