Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
NotificationsYou must be signed in to change notification settings

root-cause/v-clothingnames

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GXT entries and human readable names of GTA V clothing items.

Many items have "NO_LABEL" and "NULL" as their names, which probably means they aren't available for purchase in GTA Online clothes shops OR they're old enough to have their names hardcoded in game scripts.

Files without a prefix (e.g. masks.json) are the clothing items for bothmp_m_freemode_01 andmp_f_freemode_01 models. (aka for SET_PED_COMPONENT_VARIATION)

Files prefixed withmale_ are the clothing items formp_m_freemode_01 model. (aka for SET_PED_COMPONENT_VARIATION)

Files prefixed withfemale_ are the clothing items formp_f_freemode_01 model. (aka for SET_PED_COMPONENT_VARIATION)

Files prefixed withprops_male_ are the props formp_m_freemode_01 model. (aka for SET_PED_PROP_INDEX)

Files prefixed withprops_female_ are the props formp_f_freemode_01 model. (aka for SET_PED_PROP_INDEX)

Visithttps://wiki.rage.mp/index.php?title=Clothes for preview images.

JS Example

// Getting the name of https://wiki.rage.mp/images/c/c2/Clothing_M_11_70.jpgconstmaleTops=require("./male_tops.json");constclothingID=70;console.log(`Name of the item:${maleTops[clothingID][0].Localized}`);// Outputs: "Name of the item: Brown Leather Fur Jacket"// List all variation names of the clothing aboveObject.keys(maleTops[clothingID]).forEach(variation=>{console.log(`Variation${variation} -${maleTops[clothingID][variation].Localized}`)});/*    Outputs:    Variation 0 - Brown Leather Fur Jacket    Variation 1 - Tan Leather Fur Jacket    Variation 2 - Black Leather Fur Jacket    Variation 3 - Ochre Leather Fur Jacket    Variation 4 - White Leather Fur Jacket    Variation 5 - Leopard Leather Fur Jacket    Variation 6 - Fall Leather Fur Jacket    Variation 7 - Hunter Leather Fur Jacket    Variation 8 - Gray Leather Fur Jacket    Variation 9 - All Black Leather Fur Jacket    Variation 10 - Burgundy Leather Fur Jacket    Variation 11 - Dark Gray Leather Fur Jacket*/

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp