dimitri1234 Posted September 8, 2011 Posted September 8, 2011 Hello there, I want to create my own Infernus skin, but when I export the infernus.txd I only get three textures, and there are supposed to more textures.. Like carback, carplate etc.. Help?
Benevolence Posted September 9, 2011 Posted September 9, 2011 You also need a .dff I believe. Once you have both .txd and .dff you need a script like this addEventHandler('onClientResourceStart', resourceRoot, function() txd = engineLoadTXD ( "lambmur.txd" ) -- ***.txd: the txd file what you want use. for exampe infernus.txd engineImportTXD ( txd, 411 ) -- ***: the original vehicle id what you want replace. for example 411 dff = engineLoadDFF ( "lambmur.dff", 411 ) -- ***.dff: the dff file what you want use. for exampla infernus.dff. *** the original vehicle id what you want replace. for example 411 engineReplaceModel ( dff, 411 ) -- the original vehicle id what you want replace. for example 411 end )
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