Jump to content

Need Help :D Im New


Rio

Recommended Posts

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. :D

Link to comment

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...