GiveWeaponAmmo

From Multi Theft Auto: Wiki
Revision as of 15:20, 6 June 2006 by MrJax (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

giveWeaponAmmo gives a specified ammount of ammo to a certain player, for a specified weapon (if they already have it).

Syntax

giveWeaponAmmo ( player, weapon, ammo )

Required Arguments

  • Player: A player object referencing the specified player
  • Weapon: A whole number integer that refers to a Weapon ID. Click weapon for a page with weapon ID listings.
  • Ammo: A whole number integer serving as the ammo amount for the given weapon

Example

addEventHandler ( "onSpawnpointUse", root, "onSpawnpointUse" )
function onSpawnpointUse ( player )
giveWeapon ( player, 31, 200 ) -- Gives the M4 weapon with 200 ammo to any player when they use a spawnpoint
giveWeaponAmmo ( player, 31, 5 ) -- Gives the player 5 more ammo for the M4
end

See Also