December 16, 20169 yr Have some problem to complete a quest that I first need an item then use it on an object. I want to end part one with the "Is complete condition". What code should I use? Would really appreciate some assistance here. Quote return ItemsManager.XXXXXXXX
December 17, 20169 yr Hello, If you want complete quest when you don't have item in bag (1234 is item id): return wManager.Wow.Helpers.ItemsManager.GetItemCountByIdLUA(1234) <= 0; Or if you want complete quest when you have item in bag (1234 is item id): return wManager.Wow.Helpers.ItemsManager.GetItemCountByIdLUA(1234) >= 3; (replace 3 by minimun item count)
Create an account or sign in to comment