its not so hard to write something you want.
just make a new forum, where only your newsposters can open threads.
every first post in a thread would be used as a news, all other posts are the comments
do it so:
news.php:
PHP Code:
<?php
error_reporting(7);
require('./global.php');
$news = $DB_site->query("SELECT thread.title, thread.threadid, thread.iconid, thread.postusername, thread.replycount FROM thread WHERE thread.forumid = 10 ORDER BY thread.threadid DESC LIMIT 5");
print("<table width='95%' align='center' cellspacing=0>");
$lastdate="";
while($new=$DB_site->fetch_array($news)) {
$newstext=$DB_site->query_first("
SELECT post.pagetext, post.dateline FROM post
WHERE post.threadid='$new[threadid]'
ORDER BY postid LIMIT 1
");
print("<tr>");
if(date("d.m.Y",$newstext[dateline])!=$lastdate) {
print(date("d.m.Y",$newstext[dateline])); }
$lastdate=date("d.m.Y",$newstext[dateline]);
print("<th class='head' align='left' bgcolor='#".$headcolor."'><font size=1>".date("d.m.Y - H:i:",$newstext[dateline])."</font><br>".$new[title]."</th>");
print("<th class='head' align='right' bgcolor='#".$headcolor."'>".$new[postusername]."<br><font size=1><a href='http://www.strategy-forum.de/showthread.php?s=&threadid=".$new[threadid]."'>Kommentare(".$new[replycount].")</a></font></th></tr>");
print("<tr></tr><tr><td class=news colspan='2' bgcolor='#".$newscolor."'>".bbcodeparse2($newstext[pagetext],1,1,1,1)."</td>");
print("</tr><tr><td height=5></td></tr>");
}
print("</table>");
?>
just change the forumid, and the design a bit and you have what you want