Перейти к содержанию

Player::isEvasiveDiving

Материал из RAGE MP Wiki Archive
Версия от 23:43, 6 мая 2017; imported>Marty uploader (yay)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Presumably returns the Entity that the Ped is currently diving out of the way of.

var num3;
if (Player::IS_Player_EVASIVE_DIVING(A_0, &num3) != 0)
if (ENTITY::IS_ENTITY_A_VEHICLE(num3) != 0)

Syntax

<syntaxhighlight lang="javascript">player.isEvasiveDiving(evadingEntity);</syntaxhighlight>

Required Arguments

  • evadingEntity: Entity handle or object

Return value

  • Boolean

Example

<syntaxhighlight lang="javascript"> // todo </syntaxhighlight>

See also