I was toying around with the idea of hosting a mafia game at some point in the future, but wasn't sure if I would manage (or could be bothered) to do all the necessary work required (tallying votes seems like such a pain).
Then I realised I could probably edit my script to find posts that contained bold tags.
A little playing around later and voilà:
jQuery('.spot_h').remove()
for (var i = 5; i > 0; i--)
{
var threadURL = "/forum/general/gog_mafia_26_stalker_the_dangers_of_the_zone/page" + i + " .spot_h"
var $newdiv = $( "<div class='page" + i + "posts'/>" )
$( ".list_h" ).prepend($newdiv)
$( ".page" + i + "posts").load(threadURL, function() {
jQuery('.post_text_c:not(:has(span.bold))').parents('.spot_h').remove();
})
}
I'm not sure if it 100% works but it seems to only find posts with bold tags, and presumably finds all posts with bold tags. Same as last one, you need to change the thread name and the page number.
Hope it helps, particularly the mods, but it can be useful for players keeping a vote count too. Plus perhaps it could become a general rule that all messages aimed at the mod are bolded and would then be really easy to find (I know this is often already the case anyway).