比如
local item = Actor:getBagItemEx("屠龙")
local heroA = Actor:getHero()
if heroA ~= nil then
if item ~= nil then
local makeid = item:getMakeIndex()
Actor:bagItemToBag(makeid)
local zhuti = Actor:getBagCount("屠龙")
local hero = heroA:getBagCount("屠龙")
print("主体包裹中屠龙数量:"..zhuti)
print("英雄包裹中屠龙数量:"..hero)
end