SetProjectileCounter: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 18: Line 18:


==Requirements==
==Requirements==
{{Requirements|n/a|1.3.0-4555|}}
{{Requirements|n/a|1.3.0-9.04555|}}


==See Also==
==See Also==
{{Client projectile functions}}
{{Client projectile functions}}

Revision as of 22:43, 10 September 2012

Will change the projectile counter timer 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

Syntax

bool setProjectileCounter ( projectile projectile, int timeToDetonate )

Required Arguments

  • projectile: The projectile to edit the timer of.
  • timeToDetonate: The time in milliseconds to detonation.

Returns

Returns true on success, false otherwise.

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