Both options would be nice, recently created threads and most recent last posts ...
Yes very similar to the recent posts block except this is a marquee .. your Recent Posts Block is what made me remember that mod by MARCO1 which I never made it work for me ...
For the RSS feeds you use external.php ... the code below is what I think is used ..
Code:
<h2 align="center" class="blockhead">{vb:raw vboptions.MARCO1_latesttablename}</h2>
<div class="blockbody">
<div class="blockrow">
<!--Messages-->
<marquee dir="rtl" direction="left" OnMouseOut="this.setAttribute('scrollamount', 4, 0);" onMouseOver="this.setAttribute('scrollamount', 0, 0);" scrollamount="4" height=30>
<script type="text/javascript" src="{vb:raw vboptions.bburl}/external.php?&type=js"></script>
<script type="text/javascript">
for (var i = 0; i < threads.length; i++)
{
document.write('<a href="{vb:raw vboptions.bburl}/showthread.php?t=' + threads[i]['threadid'] + '">' + threads[i]['title'] + '</a>' + ' ' + 'By :' + threads[i]['poster'] + ' ');
}
//
</script></marquee>
<!--/Messages-->
</div>
</div>