Hi,
I have a question about setWeaponProperty, when I use setWeaponProperty will it apply the stats modifications on all elements or just to a specific element ?
For example :
function setRifleStats(thePlayer)
setWeaponProperty(33, "pro", "flags", 0x000010) -- Country Rifle
setWeaponProperty(33, "pro", "flags", 0x000020) -- Country Rifle
setWeaponProperty(33, "pro", "damage", 220) -- Country Rifle
end
addCommandHandler( "upgraderifle", setRifleStats )
This script will change the stats for the player who entered the command or to all elements ?
Thanks.