SetWeaponAmmo: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
(16 intermediate revisions by 10 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server function}}  
{{Server client function}}  
<section name="setWeaponAmmo" class="server" show="true">
Sets the ammo to a certain amount for a specified weapon (if they already have it), regardless of current ammo.
Sets the ammo to a certain amount for a specified weapon (if they already have it), regardless of current ammo.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">bool setWeaponAmmo ( player thePlayer, int weapon, int totalAmmo, [int ammoInClip = current] )</syntaxhighlight>  
<syntaxhighlight lang="lua">bool setWeaponAmmo ( player thePlayer, int weapon, int totalAmmo [, int ammoInClip = 0 ] )</syntaxhighlight>  


===Required Arguments===  
===Required Arguments===  
Line 13: Line 14:
===Optional Arguments===  
===Optional Arguments===  
{{OptionalArg}}  
{{OptionalArg}}  
{{New feature|3|1.0|
*'''ammoInClip:''' The amount of ammo to set in the player's clip.  This will be taken from the main ammo.  If left unspecified or set to 0, the current clip will remain.
*'''ammoInClip:''' The amount of ammo to set in the player's clip.  This will be taken from the main ammo.  If left unspecified, the current clip will remain.
}}


==Returns==
Returns a boolean value ''true'' or ''false'' that tells you if it was successful or not.
==Example== 
<syntaxhighlight lang="lua">
local randPlayer = getRandomPlayer() -- Get a random player
giveWeapon(randPlayer,35,100) -- Give them a rocket launcher with 100 rockets.
setWeaponAmmo(randPlayer,35,50) -- Decide we're only going to give them 50 rockets.
</syntaxhighlight>
</section>
<section name="setWeaponAmmo (custom weapons)" class="client" show="true">
Set the ammo of a custom weapon which was created through [[createWeapon]]. By default, a custom weapon has 9999 ammo (which means infinite ammo).
==Syntax==
<syntaxhighlight lang="lua">bool setWeaponAmmo ( weapon theWeapon, int ammo )</syntaxhighlight>
{{OOP||[[Element/Weapon|weapon]]:setAmmo|ammo|getWeaponAmmo}}
===Required arguments===
* '''theWeapon:''' The weapon to set the ammo of.
* '''ammo:''' The total ammo amount for the given weapon (including ammo in clip).


==Returns==
==Returns==
Returns a boolean value ''true'' or ''false'' that tells you if it was successful or not.
Returns ''true'' on success, ''false'' otherwise.


==Example==   
==Example==   
This example will give players an M4 weapon with 200 ammo followed by 5 more ammo when they spawn.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- TODO: Old code was outdated
local weapon = createWeapon ("deagle",0, 0, 10) -- Create the weapon
setWeaponAmmo(weapon,5000)
</syntaxhighlight>
</syntaxhighlight>
</section>
==Requirements==
{{Requirements|n/a|1.3.0-9.04555|}}
</section>


==See Also==
==See also==
{{Weapon functions}}
{{Weapon functions}}
{{Example_Needed}}
{{Client weapon creation functions}}
[[ru:setWeaponAmmo]]

Latest revision as of 22:28, 15 July 2018

Click to collapse [-]
setWeaponAmmo

Sets the ammo to a certain amount for a specified weapon (if they already have it), regardless of current ammo.

Syntax

bool setWeaponAmmo ( player thePlayer, int weapon, int totalAmmo [, int ammoInClip = 0 ] )

Required Arguments

  • thePlayer: A player object referencing the specified player
  • weapon: A whole number integer that refers to a weapon ID.
  • totalAmmo: A whole number integer serving as the total ammo amount for the given weapon (including ammo in clip).

Optional Arguments

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • ammoInClip: The amount of ammo to set in the player's clip. This will be taken from the main ammo. If left unspecified or set to 0, the current clip will remain.

Returns

Returns a boolean value true or false that tells you if it was successful or not.

Example

local randPlayer = getRandomPlayer() -- Get a random player
giveWeapon(randPlayer,35,100) -- Give them a rocket launcher with 100 rockets.
setWeaponAmmo(randPlayer,35,50) -- Decide we're only going to give them 50 rockets.
Click to collapse [-]
setWeaponAmmo (custom weapons)

Set the ammo of a custom weapon which was created through createWeapon. By default, a custom weapon has 9999 ammo (which means infinite ammo).

Syntax

bool setWeaponAmmo ( weapon theWeapon, int ammo )

OOP Syntax Help! I don't understand this!

Method: weapon:setAmmo(...)
Variable: .ammo
Counterpart: getWeaponAmmo


Required arguments

  • theWeapon: The weapon to set the ammo of.
  • ammo: The total ammo amount for the given weapon (including ammo in clip).

Returns

Returns true on success, false otherwise.

Example

local weapon = createWeapon ("deagle",0, 0, 10) -- Create the weapon
setWeaponAmmo(weapon,5000) 

Requirements

Minimum server version n/a
Minimum client version 1.3.0-9.04555

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.3.0-9.04555" />

</section>

See also