Rio Posted February 3, 2015 Share Posted February 3, 2015 Hey Guys I am New To this forums But Playing and learning since 2 yrs on mta sa. I need Help. Can Anyone Tell Me How To Add Custom Skins To Mta Server. I needed It To put it for my staff on the Server Who Suggests, I will be Most Thankful. Link to comment
Tomas Posted February 3, 2015 Share Posted February 3, 2015 Hey! Welcome to the programming side! You need to use the following functions: engineLoadTXD, engineImportTXD, engineLoadDFF, engineReplaceModel. (Click on the functions to be redirected to the function page in the wiki). An example here: -- Client txd = engineLoadTXD ( "rhino.txd" ) engineImportTXD ( txd, 432) dff = engineLoadDFF ( "rhino.dff", 0 ) engineReplaceModel ( dff, 432) You need to add the files to the meta, an example: <meta> <script src="client.lua" type="client"/> <file src="rhino.txd"/> <file src="rhino.dff"/> </meta> Link to comment
Rio Posted February 4, 2015 Author Share Posted February 4, 2015 Thank You Very Much Loc Link to comment
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