我有一个带有名称的库存,现在我想要名称随着添加更多相同项目而增加的数字。
项目代码:
_root.player_inventory = new Array(_root.array);
for (a = 0; a < _root.invslots; a++)
{
_root.player_inventory[a] = "none";
}
堆叠代码:
_root.player_inventory[a] = new Array(_root.stackAmount);
for (b = 0; b < _root.stackAmount; b++)
{
_root.player_inventory[b] = 0;
//player_inventory[a][b] = "[" + a + "][" + b + "]";
//mainArrayTxt = "[" + a + "][" + b + "]";
//b = 0;
}
我的商品代码很好;我只想为其添加堆叠。
我从本教程中获得了代码:http: //www.newgrounds.com/portal/view/448642