In the meta.xml you have to add EACH file, else the script won't load them.
I suggest you using a table to load all the skins in just some lines.
Example:
-- script.lua:
local skins = {{fileName="skin1", skinID=46}, {fileName="skin2", skinID=53}}
function load()
for index, skin in pairs(skins) do
txd = engineLoadTXD ( skin.fileName .. ".txd" )
engineImportTXD ( txd, skin.skinID )
dff = engineLoadDFF ( skin.fileName .. ".dff", 0 )
engineReplaceModel ( dff, skin.skinID )
end
end
addEventHandler("onClientResourceStart",resourceRoot,
function ()
local version = getVersion()
if string.find(version.mta, "1.1.1") then
setTimer ( load, 1000, 1)
end
end)
-- meta.xml: