PL/getClothesTypeName: Difference between revisions
Jump to navigation
Jump to search
ThePiotrek (talk | contribs) (Created page with "__NOTOC__ {{PL/Shared function}} Ta funkcja pozwala na pobranie nazwy wybranego typu ubrań. ==Składnia== <syntaxhighlight lang="lua"> string getClothesTypeName ( int clothesType ) </syntaxhighlight>...") |
ThePiotrek (talk | contribs) mNo edit summary |
||
Line 28: | Line 28: | ||
==Zobacz także== | ==Zobacz także== | ||
{{Clothes and body functions}} | {{Clothes and body functions}} | ||
[[en:GetClothesTypeName]] |
Revision as of 18:27, 19 July 2016
Ta funkcja pozwala na pobranie nazwy wybranego typu ubrań.
Składnia
string getClothesTypeName ( int clothesType )
Wymagane argumenty
- clothesType: Liczba całkowita reprezentująca typ ubrań którego nazwę chcesz pobrać
Wartości zwrotne
Funkcja zwraca ciąg znaków (nazwę typu ubrań) jeśli wyszukiwanie się powiodło, w innym przypadku false.
Przykład
Ten przykład dodaje komendę /clothes która wyświetla graczu informacje o jego obecnym ubiorze.
function getClothes ( thePlayer, key, clothesType ) local texture, model = getPedClothes ( source, clothesType ) if ( texture and model ) then outputChatBox ( getPlayerName ( thePlayer ) .. " ubiera " .. texture .. " " .. model .. " na jego " .. getClothesTypeName ( clothesType ) ) end end addCommandHandler ( "clothes", getClothes )