kaos057 Posted May 3, 2012 Share Posted May 3, 2012 I started messing around with ped skins trying to get a female cop. I found a couple nice ones that seem to be used in SAMP but dont work in MTA. So does that mean they are different and are not compatible? Link to comment
Jaysds1 Posted May 3, 2012 Share Posted May 3, 2012 SAMP stuff/objects don't work here anymore, MTA changed every single thing that SAMP players used... Link to comment
kaos057 Posted May 4, 2012 Author Share Posted May 4, 2012 So then you cant change ped models? just textures? Link to comment
Jaysds1 Posted May 4, 2012 Share Posted May 4, 2012 you could change ped models and textures but SAMP isn't compatible with MTA Link to comment
diegofkda Posted May 4, 2012 Share Posted May 4, 2012 Actually, he's talking about custom models with skin. Yes, you can change the skin model using engineLoadDFF. Link to comment
Ren_712 Posted May 4, 2012 Share Posted May 4, 2012 How does samp take care of addnig new objects ? I'm affraid to ask. Link to comment
kaos057 Posted May 4, 2012 Author Share Posted May 4, 2012 So then if I have a txd/dff file that works in regular GTA:SA It should work using the engine functions? Like I said I just cant get it to work unless I change only the txd to a txd I made myself using the original txd. Link to comment
Stanley Sathler Posted May 5, 2012 Share Posted May 5, 2012 SkinToBeModified = 235 --ID Skin TxdFilePath = "cop_female.txd" DffFilePath = "cop_female.dff" SkinTXD = engineLoadTXD(TxdFilePath) engineImportTXD(SkinTXD, SkinToBeModified) SkinDFF = engineLoadDFF(DffFilepath, SkinToBeModified) engineReplaceModel(SkinDFF, SkinToBeModified) And don't forget: you must set the skin files in Meta.xml using: <file src="cop_female.txd" /> <file src="cop_female.dff" /> Enjoy yourself. And remember: learn the functions. Nobody will create a script for you like I did. Link to comment
Recommended Posts