rootcause Posted April 10, 2018 Posted April 10, 2018 Bunch of JSON files that contain data about GTA Online tattoos, here's what to expect: // Filenames are collection names. { "Name": "TAT_FM_008", // Name of the tattoo, GXT string "LocalizedName": "Skull", // Name of the tattoo in English "HashNameMale": "FM_Tat_Award_M_000", // Male overlay name "HashNameFemale": "FM_Tat_Award_F_000", // Female overlay name "Zone": "ZONE_HEAD", // Tattoo zone "ZoneID": 1, // Tattoo zone ID "Price": 20000 // Price } You can use this data with setDecoration to make a tattoo feature for your server. GitHub 5
razzkulz Posted April 12, 2018 Posted April 12, 2018 Do these include the hash names for hair tattoos? The ones that automatically apply on your hair so they look better.
rootcause Posted April 13, 2018 Author Posted April 13, 2018 5 hours ago, razzkulz said: Do these include the hash names for hair tattoos? The ones that automatically apply on your hair so they look better. Nope, these are just the tattoo decals but I got the hair ones here: https://github.com/root-cause/CharCreator/blob/master/CharCreator.js#L68
razzkulz Posted April 13, 2018 Posted April 13, 2018 17 hours ago, rootcause said: Nope, these are just the tattoo decals but I got the hair ones here: https://github.com/root-cause/CharCreator/blob/master/CharCreator.js#L68 Thank you very much!
rootcause Posted January 2, 2019 Author Posted January 2, 2019 Added Arena War DLC tattoo data. It's huge! Rockstar did a great job this time. 1 1 1
Parker Queen Posted March 27, 2019 Posted March 27, 2019 Greetings! How can I remove a tattoo after its been applied?
rednotchillipepper Posted April 23, 2019 Posted April 23, 2019 Does it sync? I heard something about tattoos not syncing
vaskidze Posted April 25, 2019 Posted April 25, 2019 В 23.04.2019 в 22:38, rednotchillipepper сказал: Does it sync? I heard something about tattoos not syncing which tattoos are not synchronized?
rootcause Posted July 23, 2019 Author Posted July 23, 2019 Added Diamond Casino & Resort DLC tattoo data, click click.
Barsuk777 Posted November 5, 2019 Posted November 5, 2019 В 10.04.2018 в 19:56, rootcause сказал: Bunch of JSON files that contain data about GTA Online tattoos, here's what to expect: // Filenames are collection names. { "Name": "TAT_FM_008", // Name of the tattoo, GXT string "LocalizedName": "Skull", // Name of the tattoo in English "HashNameMale": "FM_Tat_Award_M_000", // Male overlay name "HashNameFemale": "FM_Tat_Award_F_000", // Female overlay name "Zone": "ZONE_HEAD", // Tattoo zone "ZoneID": 1, // Tattoo zone ID "Price": 20000 // Price } You can use this data with setDecoration to make a tattoo feature for your server. GitHub Hi, please tell me, I want to make a tattoo shop, as I understand the key function here https://wiki.rage.mp/index.php?title=Player::setDecoration I found all the tattoo collections https://github.com/root-cause/v-tattoos I understand correctly ? if you take 1 tattoo, then to install it on the player you need to specify in player.setDecoration (collection, overlay); collection- is the name of the collection I take them from the name of the files on the github repository overlay- is a hash name as I understand it is different for each gender ---------------------- " { Name: "TAT_BB_021", "LocalizedName": "Pirate Skull", "HashNameMale": "MP_Bea_M_Head_000", "HashNameFemale": " ", "Zone": "ZONE_HEAD", "ZoneID": 1, "Price": 12000 } -------------------- It turns out that now I have to ask for the male character player.setDecoration ("mpbeach_overlays", "MP_Bea_M_Head_000"); Not Changes and error expected Number
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now