Gameplay::isProjectileTypeWithinDistance

From RAGE Multiplayer Wiki
Revision as of 15:44, 29 April 2024 by Shr0x (talk | contribs) (Created page with "{{ClientsideJsFunction}} {{JSContainer| Checks if a projectile object of the specified type is in a given area ===Required Params=== *'''x:''' {{RageType|Float}} *'''y:''' {{RageType|Float}} *'''z:''' {{RageType|Float}} *'''weaponType:''' {{RageType|number}} Weapon hash can be found here -> Weapons *'''distance:''' {{RageType|Float}} *'''isPlayer:''' {{RageType|boolean}} ===Return value=== *''' {{RageType|number}} ''' ==Syntax== <syntaxhighlight lang="javascript">...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Client-Side
Function

 JavaScript



JavaScript Syntax

Checks if a projectile object of the specified type is in a given area

Required Params

  • x: Float
  • y: Float
  • z: Float
  • weaponType: number Weapon hash can be found here -> Weapons
  • distance: Float
  • isPlayer: boolean

Return value

  • number

Syntax

mp.game.gameplay.isProjectileTypeWithinDistance(x, y, z, weaponType, distance, isPlayer);

Example

//todo


See also