Scripting/Squirrel/Functions/IsWeaponDataModified: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
mNo edit summary |
No edit summary |
||
Line 38: | Line 38: | ||
{{Scripting/Squirrel/Functions/Weapon Functions}} | {{Scripting/Squirrel/Functions/Weapon Functions}} | ||
[[Category:Scripting/Squirrel/Functions/Weapon_Functions]] |
Latest revision as of 22:06, 30 January 2017
This function will check a weapon for changed data values. (damage, range, etc)
Syntax
IsWeaponDataModified( weaponID , fieldID )
Arguments
- integer weaponID - model ID of weapon
- integer fieldID - field ID of data you want to check for edits ( WeaponDataValue )
Example
The following example will check if the data value of the weapon, from player's hand, was edited.
function onPlayerCommand( player, cmd, text );
{
if( cmd == "checkmywepdata" )
{
if( !text || !IsNum(text) ) MessagePlayer( "Error - Correct syntax - '/checkmywepdata <fieldID>' !", player );
else if( text >= 1 || text <= 25 ) MessagePlayer( "Error - Field IDs are from 1 to 25 !", player );
else
{
if( IsWeaponDataModified( player.Weapon.ID, text.tointeger() ) == true )
MessagePlayer( "Yes, data " + text + " of " + GetWeaponName( player.Weapon.ID ) + "is edited !!", player );
else
MessagePlayer( "Nope, data " + text + " of " + GetWeaponName( player.Weapon.ID ) + " is not edited.", player );
MessagePlayer( "Data" + text + " of " + GetWeaponName( player.Weapon.ID ) + " is " + GetWeaponDataValue( player.Weapon.ID, text.tointeger() ) );
}
}
}
Notes
Call onPlayerCommand were used in this example. More info about them in the corresponding pages.