Kresten Posted August 25, 2013 Share Posted August 25, 2013 Hello there, I am new on these forums , basically what I need is to find the Skin ID of this skin mod below: http://www.mediafire.com/download/d6lh3 ... hrider.txd http://www.mediafire.com/download/sldd5 ... hrider.dff Can you tell me how to find the Skin ID ? Thank you very much ! Link to comment
0 PhantomNL Posted August 25, 2013 Share Posted August 25, 2013 All skins can be found at the Wiki of Multi Theft Auto; https://wiki.multitheftauto.com/wiki/Character_Skins Link to comment
0 Kresten Posted August 25, 2013 Author Share Posted August 25, 2013 Phantom that doesn't solve my problem.. Check the file I provided. I think you will understand why.. Link to comment
0 PhantomNL Posted August 25, 2013 Share Posted August 25, 2013 I did check the file you provided, although those files don't have a Skin ID, only the default skins of GTA/MTA have a Skin ID. If this still doesn't awnser your question, then I don't know. All I know is that you CAN replace skins with the default skins, also with the files you provided, but you need to make a script for that. And that there are no Skin ID's for downloaded skins. Link to comment
0 Kresten Posted August 26, 2013 Author Share Posted August 26, 2013 I did check the file you provided, although those files don't have a Skin ID, only the default skins of GTA/MTA have a Skin ID. If this still doesn't awnser your question, then I don't know. All I know is that you CAN replace skins with the default skins, also with the files you provided, but you need to make a script for that. And that there are no Skin ID's for downloaded skins. I mean like, based on which default GTA/MTA Skin ID was this made ? Or it wasn't made based on any default Skin ID ? Thanks a lot for the help provided. Link to comment
0 Kresten Posted August 27, 2013 Author Share Posted August 27, 2013 Anyone out there ? Link to comment
0 PhantomNL Posted August 28, 2013 Share Posted August 28, 2013 If I look to the name of the files, I would say it's based on Ryder's skin, I'm not sure though. Ryder's skin is 271. Link to comment
0 Kresten Posted August 28, 2013 Author Share Posted August 28, 2013 Thank you, any additional help would really be appreciated ! Link to comment
0 Kresten Posted August 31, 2013 Author Share Posted August 31, 2013 Bumping this up ...... Link to comment
0 PhantomNL Posted September 4, 2013 Share Posted September 4, 2013 No one is able to help if you don't explain what you exactly want. Link to comment
0 PhantomNL Posted September 25, 2013 Share Posted September 25, 2013 You are getting this wrong, if you want to put in a custom skin, you have to make a script for it, there are no default skin ID's made for any downloaded skins. You have to overwrite them with an existing skin ID yourself. This script is used to replace skins (ped skins, vehicle skins, and weapon skins.) This script replacing skin number 7 with Franklin from Grand Theft Auto 5: function replaceModel() txd = engineLoadTXD("Franklin.txd", 7 ) engineImportTXD(txd, 7) dff = engineLoadDFF("Franklin.dff", 7 ) engineReplaceModel(dff, 7) end addEventHandler ( "onClientResourceStart", getResourceRootElement(getThisResource()), replaceModel) addCommandHandler ( "reloadcar", replaceModel ) "Phantom" version="1.0" type="script"/> I'll explain it a bit; As you can see in the meta file, it will use 'Franklin.lua' script to work. You can also see, that there are 2 other files linked, wich are both called 'Franklin'. 1 .txd file, and 1 .dff file. Those are both needed to replace the skin. Now let's take a look at the script itself; You can see, again, that the script will use the 2 files. Behind that, you can see a '7', in this script. This indicates the existing MTA skin ID, wich is skin 7. You can add in any number you want, but it's smart that if you downloaded a woman skin, you would replace it with an existing woman skin. I hope this helps you further, I am not very good in explaining these kinda things, but if you need more help, I'll try and explain better (; You will need these pages to replace stuff: Ped Skin ID's: https://wiki.multitheftauto.com/wiki/All_Skins_Page Vehicle Skin ID's: https://wiki.multitheftauto.com/wiki/Vehicle_IDs Weapon Skin ID's: https://wiki.multitheftauto.com/wiki/Weapons <--- 'Model ID' is the one you need, not 'ID'! I hope this helped you further, if you already knew this by now, then I won't be posting any things anymore here! (; Good luck! Link to comment
Question
Kresten
Hello there,
I am new on these forums , basically what I need is to find the Skin ID of this skin mod below:
http://www.mediafire.com/download/d6lh3 ... hrider.txd
http://www.mediafire.com/download/sldd5 ... hrider.dff
Can you tell me how to find the Skin ID ?
Thank you very much !
Link to comment
11 answers to this question
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