Is there a way to make the ItemAlerter play a sound when a rare Jewellery Item drops? I tried this (the 'return' is at the very end of this, after he checked for mods):
Code:
if isJewelleryItem(itemName):
if rarity == 2:
print Style.YELLOW + str.format('JEW: {0}, rarity: {1}',itemName,rarity)
if SOUND_uniques == True:
unique = PlaySoundUnique()
unique.start()
number_of_uniques += 1
but it doesn't do anything besides showing a yellow message 
I managed to get alerted when a rare belt or a quality gem drops this way... but for jewellery items it doesn't want to work.
Also, it didn't alert me when a Tabula Rasa dropped.... luckily I was right next to it and saw it drop, otherwise I would have missed it.