IsObjectShotReportEnabled: Difference between revisions

From NPC for VCMP 0.4 Servers
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 4: Line 4:
</poem>|
</poem>|
example=<source lang="lua">
example=<source lang="lua">
if( IsObjectStreamedIn( objectId ) && IsObjectShotReportEnabled( objectId ) )
if( IsObjectStreamedIn( objectId ) && IsObjectShotReportEnabled( objectId ))
{
{
ClaimObjectShot( objectId, 17 ); //17 is weapon.
ClaimObjectShot( objectId, 17 ); //17 is weapon.

Latest revision as of 09:24, 12 November 2023


Description:
Tells whether Shot Report is enabled for a particular object.


Parameters:

( objectId )

objectId : The ID of the object whose property is to be checked.


Return Values:
true if property is enabled, false otherwise. Throws error on invalid object ID.


Example

if( IsObjectStreamedIn( objectId ) && IsObjectShotReportEnabled( objectId ))
{
ClaimObjectShot( objectId, 17 ); //17 is weapon.
}

Related Functions

The following functions may be helpful as they relate to this function in one way or another.