GiveWeaponAmmo: Difference between revisions
Jump to navigation
Jump to search
(→Syntax) |
No edit summary |
||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
{{Needs_Checking|I cant actually think of a use for this function anymore. giveWeapon is capable of doing everything this function does - and from my testing this function doesnt allow giving ammo to a weapon that shares ammo with another, e.g. giving AK-47 ammo when a player has M4 will not work. --[[User:Talidan2|Talidan2]] 17:06, 29 July 2007 (CDT)}} | |||
giveWeaponAmmo gives a specified ammount of ammo to a certain player, for a specified weapon (if they already have it). | giveWeaponAmmo gives a specified ammount of ammo to a certain player, for a specified weapon (if they already have it). | ||
Revision as of 22:06, 29 July 2007
This article needs checking. | |
Reason(s): I cant actually think of a use for this function anymore. giveWeapon is capable of doing everything this function does - and from my testing this function doesnt allow giving ammo to a weapon that shares ammo with another, e.g. giving AK-47 ammo when a player has M4 will not work. --Talidan2 17:06, 29 July 2007 (CDT) |
giveWeaponAmmo gives a specified ammount of ammo to a certain player, for a specified weapon (if they already have it).
Syntax
giveWeaponAmmo ( player thePlayer, int weapon, int ammo )
Required Arguments
- thePlayer: A player object referencing the specified player
- weapon: A whole number integer that refers to a weapon ID.
- ammo: A whole number integer serving as the ammo amount for the given weapon
Example
This example will give players an M4 weapon with 200 ammo followed by 5 more ammo when they spawn.
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
- getWeaponProperty
- getPickupWeapon
- getOriginalWeaponProperty
- getSlotFromWeapon
- getWeaponIDFromName
- getWeaponNameFromID
- setWeaponAmmo
- setWeaponProperty