HU/getPedAmmoInClip: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Shared function hu}}
This function returns an integer that contains the ammo in a specified [[ped]]'s weapon. See [[weapon|Weapon Info]]
Ez a function visszaad egy integert, mely tartalmazza egy meghatározott [[ped]] fegyverének lőszerét. Lásd [[weapon|Weapon Info]]  


==Syntax==
==Szintaxis==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
int getPedAmmoInClip ( ped thePed [, int weaponSlot = current ] )
int getPedAmmoInClip ( ped thePed [, int weaponSlot = current ] )
Line 10: Line 10:
{{OOP||[[ped]]:getAmmoInClip|ammoInClip}}
{{OOP||[[ped]]:getAmmoInClip|ammoInClip}}


===Required Arguments===
===Kötelező paraméterek===
*'''thePed:''' The [[ped]] whose ammo you want to check.
*'''thePed:''' A [[ped]], akinek a lőszerét ellenőrizni szeretné.


===Optional Arguments===
===Tetszőleges paraméterek===
*'''weaponSlot:''' an integer representing the weapon slot (set to the ped's currently selected slot if not specified).
*'''weaponSlot:''' an integer representing the weapon slot (set to the ped's currently selected slot if not specified).


===Returns===
===Visszatérési érték===
Returns an [[int]] containing the amount of ammo in the specified ped's currently selected or specified clip, or 0 if the ped specified is invalid.
Returns an [[int]] containing the amount of ammo in the specified ped's currently selected or specified clip, or 0 if the ped specified is invalid.


==Example==
==Példa==
This example outputs the amount of ammo the specified player has in his current slot. For example: 'ammo someguy'.
Ez a példa megmutatja, hogy egy adott játékosnak mennyi lőszere van a fegyvertárjában. Például: 'ammo someguy'.
 
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function showAmmo(thePlayer, command, who )
function showAmmo(thePlayer, command, who )
Line 39: Line 40:
}}
}}


==See Also==
==Lásd még==
{{Client_ped_functions}}
{{Client_ped_functions_hu}}


[[en:getPedAmmoInClip]]
[[en:getPedAmmoInClip]]
==Fordította==
* '''''[https://wiki.multitheftauto.com/wiki/User:Surge Surge]'''''

Latest revision as of 16:58, 8 October 2018

Ez a function visszaad egy integert, mely tartalmazza egy meghatározott ped fegyverének lőszerét. Lásd Weapon Info

Szintaxis

int getPedAmmoInClip ( ped thePed [, int weaponSlot = current ] )


OOP Syntax Help! I don't understand this!

Method: ped:getAmmoInClip(...)
Variable: .ammoInClip


Kötelező paraméterek

  • thePed: A ped, akinek a lőszerét ellenőrizni szeretné.

Tetszőleges paraméterek

  • weaponSlot: an integer representing the weapon slot (set to the ped's currently selected slot if not specified).

Visszatérési érték

Returns an int containing the amount of ammo in the specified ped's currently selected or specified clip, or 0 if the ped specified is invalid.

Példa

Ez a példa megmutatja, hogy egy adott játékosnak mennyi lőszere van a fegyvertárjában. Például: 'ammo someguy'.

function showAmmo(thePlayer, command, who )
	local targetPlayer = getPlayerFromName ( who )
	if ( thePlayer ) then
		local ammo = getPedAmmoInClip ( targetPlayer )
		outputChatBox ( who .. " has " .. ammo .. " ammo in his active clip" )
	else
		outputChatBox ( "Player '" .. who .. "' not found." )
	end
end
addCommandHandler( "ammo", showAmmo )

Issues

Issue ID Description
#7719 getPedTotalAmmo() & getPedAmmoInClip() serverside sometimes return invalid values

Lásd még

Fordította