HU/getClothesTypeName: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server client function}} This function is used to get the name of a certain clothes type. ==Syntax== <syntaxhighlight lang="lua"> string getClothesTypeName ( int...")
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
{{Shared function hu}}
This function is used to get the name of a certain clothes type.
Ezzel a funkcióval visszakaphatjuk egy bizonyos ruhatípus nevét.


==Syntax==
==Szintaxis==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
string getClothesTypeName ( int clothesType )
string getClothesTypeName ( int clothesType )
</syntaxhighlight>
</syntaxhighlight>


===Required Arguments===
===Kötelező paraméterek===
*'''clothesType''': An integer determining the type of clothes you want to get the clothes of.
*'''clothesType''': Egy egész szám, amely meghatározza azon ruhák típusát, melyet megszeretne kapni.


==Returns==
==Visszatérési érték==
This function returns a string (the name of the clothes type) if found, ''false'' otherwise.
Visszatérési értéke egy string (a ruhatípus neve), ha megtalálta, egyébként ''false''.


==Example==
==Példa==
This example is used to output in the chatbox what clothes type the player who uses the 'clothes' command is wearing.
This example is used to output in the chatbox what clothes type the player who uses the 'clothes' command is wearing.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
Line 26: Line 26:
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==Lásd még==
{{Clothes and body functions}}
{{Clothes and body functions}}


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

Revision as of 18:25, 24 September 2018

Ezzel a funkcióval visszakaphatjuk egy bizonyos ruhatípus nevét.

Szintaxis

string getClothesTypeName ( int clothesType )

Kötelező paraméterek

  • clothesType: Egy egész szám, amely meghatározza azon ruhák típusát, melyet megszeretne kapni.

Visszatérési érték

Visszatérési értéke egy string (a ruhatípus neve), ha megtalálta, egyébként false.

Példa

This example is used to output in the chatbox what clothes type the player who uses the 'clothes' command is wearing.

function getClothes ( thePlayer, key, clothesType )
  local texture, model = getPedClothes ( source, clothesType )
  if ( texture and model ) then
    outputChatBox ( getPlayerName ( thePlayer ) .. " is wearing " .. texture .. " " .. model .. " on his " .. getClothesTypeName ( clothesType ) )
  end
end
addCommandHandler ( "clothes", getClothes )

Lásd még

Fordította