Originally Posted by
serlev
If you did notice already I dont know but our Alert program doesnt alert any QUIVERs..
By looking at Belt section I added a part for Quivers to ItemAlertPoE.py and also described Quivers at NotifyItems.py..
ItemAlert:
if isQuiverItem(itemName):
if rarity == 3:
print Fore.YELLOW + str.format('UNI QUIV: {0}, rarity: {1}',itemName,rarity)
number_of_uniques += 1
elif rarity == 2 and ALERT_RARES == True:
print Style.BRIGHT + Fore.YELLOW + str.format('QUIVER: {0}, rarity: {1}, itemlevel: {2}',itemName,rarity,itemlevel)
serlev = PlaySoundWorker()
serlev.start()
print >>self.logFile, '---------------------------------'
return
and at Notify:
def isQuiverItem(itemName):
return True if not _filterItems else itemName in getQuiverItems()
.....
.....
def getQuiverItems():
return _quiverItems
.......
_quiverItems = []
keywords = ["Quivers"]
for key in ItemList._items:
if any(x in ItemList._items[key][2] for x in keywords): _quiverItems.append(ItemList._items[key][1])
But still there is no result !... I think program also needs all Quiver item names and codes in ItemList.py..
If so, I dont know how to find them to insert to ItemList..
If anyone have an idea how to do it and inform here I appreciate..
P.S. Just noticed now, it doesnt work for any Shields either..
Something is wrong on GGG server side either I suppose.. Now the same shields I used before to test are being well alerted.. But quivers have no response still..