Scripting/Squirrel/Functions/SetWeaponDataValue

From Vice City Multiplayer [MIRROR]
Jump to: navigation, search

This function will edit the settings of a weapon. (damage, range, etc)

Syntax

SetWeaponDataValue( weaponID , fieldID, value )

Arguments

  • integer weaponID - model ID of weapon
  • integer fieldID - field ID of data you want to edit ( WeaponDataValue )
  • float value - value to be set

Example

The following example edit the damage value of minigun to "0". <source lang=squirrel> function onScriptLoad() {

    SetWeaponDataValue( 33, 6, 0 );

} </source>

Notes

Call onScriptLoad were used in this example. More info about them in the corresponding pages.

Related Functions