Player::setWeaponAmmo: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "Sets the amount of ammo for the selected weapon == Syntax == <syntaxhighlight lang="javascript"> player.setWeaponAmmo(weaponHash, ammo); </syntaxhighlight> === Parameters =...")
 
mNo edit summary
Line 15: Line 15:
Gives you a weapon and lets you change the amount of ammo for that weapon. We use the assault rifle weapon has in this example.
Gives you a weapon and lets you change the amount of ammo for that weapon. We use the assault rifle weapon has in this example.


<div class="header" style="background-color: #408DAE; color: #FFFFFF; border: 2px solid #408DAE;">
<div style="margin: 10px 10px 10px 10px;"><b>Server-Side</b></div>
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
mp.events.addCommand('weapon', (player) => {
mp.events.addCommand('weapon', (player) => {
Line 24: Line 26:
});
});
</syntaxhighlight>
</syntaxhighlight>
</div>


== See Also ==
== See Also ==
{{Player_block}}
{{Player_block}}

Revision as of 08:00, 15 June 2018

Sets the amount of ammo for the selected weapon

Syntax

player.setWeaponAmmo(weaponHash, ammo);

Parameters

  • weaponHash: Int
  • ammo: Int

Examples

Gives you a weapon and lets you change the amount of ammo for that weapon. We use the assault rifle weapon has in this example.

Server-Side
mp.events.addCommand('weapon', (player) => {
    player.giveWeapon(3220176749, 1000);
})

mp.events.addCommand('setammo', (player, _, ammo) => {
    player.setWeaponAmmo(3220176749, parseInt(ammo));
});

See Also