|
|
- function DelPoor(itemID)
- for bag = 0,4,1 do
- for slot = 1, GetContainerNumSlots(bag), 1 do
- local name = GetContainerItemLink(bag,slot)
- local desname = (select(2,GetItemInfo(itemID)))
- if name == desname then
- PickupContainerItem(bag,slot)
- DeleteCursorItem(bag,slot)
- end
- end
- end
- end
复制代码
此函数会直接删除背包里的指定物品,不会有确认提示框,请填写物品ID的时候一定慎重。
这个函数主要作用于一些唯一物品会导致拾取卡住。不要将这个函数用于坑人。
|
|