function G_ClothesMgr:GetClothesByCreatureID(nCreatureId)
local tbClothes = {}
for nClothesId, _ in pairs( self.tbClothes ) do
local nCId = G_ClothesCfg:GetCreatureId(nClothesId)
if nCreatureId == nCId then
if G_ClothesCfg:GetWeight(nClothesId) > 0 then
table.insert( tbClothes, nClothesId)
end
end
end
阅读全部
|
SilverHowie
贴于 2024年5月13日 19:48
hide
bbsi