Skip to main content

Player::getsJacker

Syntax

```js player.getsJacker(); ```

Required Arguments

Return value

  • Ped handle or object

Example

This example will use the returned value from Player::getsJacker to add 25 armour to the specified entity (client-side). - 2019-5-16

<div class="header" style="background-color: #00FF00; color: #FFFFFF; border: 2px solid #00FF00;">

<div style="margin: 10px;">

<b>Client-Side JS</b>

</div>

```js /* Player::getsJacker */ let localPlayerJacker = mp.players.local.getsJacker();

/* CLIENT-SIDE ADDARMOURTO localPlayerJacker ADDS 25 ARMOUR TO PLAYER. */ mp.players.at(localPlayerJacker).addArmourTo(25); ```

</div>

See also