I know that years have been passed but im trying to add Faclon Bastion bosses to the killcount, i think due to the nature of their message they are uncountable on the persistent, so i tried to use an auto for it, yet it doesnt work
auto(100)
local message = 'The following items dropped by Grand Chaplain Gaunder are available'

foreach newmessage m do
if m.type == 19 then
if m.content == message then
killCount.add(1, 'Grand Chaplain Gaunder')
end
end
end