GetProjectileCounter: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(needs example)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{Needs_Example}}
Get the time left before a projectile detonates.
Get the time left before a projectile detonates.



Revision as of 20:30, 9 June 2014

Accessories-text-editor.png Script Example Missing Function GetProjectileCounter needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.

Get the time left before a projectile detonates.

Syntax

int getProjectileCounter ( projectile projectile )

Required Arguments

  • projectile: the projectile to get the timer of.

Returns

Returns the the time in milliseconds to detonation which depending on the projectile type will do different things:

  • Grenades will explode when it hits 0
  • Teargas may be a duration timer
  • Both types of rockets will explode when it hits 0
  • Satchels restarts so I do not think it does anything

Requirements

Minimum server version n/a
Minimum client version 1.3.0-9.04555

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.0-9.04555" />

See Also