首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看Lua
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
1