February 11, 20179 yr Im currently using my warlock fightclass in quester mode. Got the following setting for using healthstone in my fightclass. But get this error when the bot should perform this action: Am I missing something?
February 19, 20179 yr Try using following lua script for bag = 0,4,1 do for slot = 1, GetContainerNumSlots(bag), 1 do local name = GetContainerItemLink(bag,slot); if name and string.find(name,"Healthstone") then local st = GetContainerItemCooldown(bag, slot); if st == 0 then UseContainerItem(bag,slot); break; end; end; end; end
Create an account or sign in to comment