HU/getClothesTypeName: Difference between revisions
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__ | ||
{{ | {{Shared function hu}} | ||
Ezzel a funkcióval visszakaphatjuk egy bizonyos ruhatípus nevét. | |||
== | ==Szintaxis== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
string getClothesTypeName ( int clothesType ) | string getClothesTypeName ( int clothesType ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== | ===Kötelező paraméterek=== | ||
*'''clothesType''': | *'''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. | 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> | ||
== | ==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
- addPedClothes
- getBodyPartName
- getClothesByTypeIndex
- getClothesTypeName
- getPedClothes
- getTypeIndexFromClothes
- removePedClothes