This hack is just I used.
But i think I would had post it in english.


This newsfader hack is can use in every vb Version.
I like it!
I can translate into english for you:
newshackforvb2:
1)open ADMIN/INDEX.PHP
find??
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr bgcolor="#3F3849"><td><font color="#BCB6CD">
<b>Announcement</b>
</font></td></tr></table>
<a href="announcement.php?s=<?php echo $session[sessionhash]; ?>&action=add">add</a> |
<a href="announcement.php?s=<?php echo $session[sessionhash]; ?>&action=modify">edit</a>
</td></tr>
just below it,add this??
<tr><td>
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr bgcolor="#3F3849"><td><font color="#BCB6CD">
<b>Forum news</b>
</font></td></tr></table>
<a href="newsfade.php?s=<?php echo $session[sessionhash]; ?>&action=add"> add</a> |
<a href="newsfade.php?s=<?php echo $session[sessionhash]; ?>&action=modify"> edit</a>
</td></tr>
2)open??index.php
find??
$permissions=getpermissions();
if (!$permissions['canview']) {
show_nopermission();
}
just below it add this??
// Hack newsfade
$newsfadebits = "";
$newsfades=$DB_site->query("SELECT title,pagetext FROM announcement WHERE enddate>=$datenow AND forumid=0 ORDER BY startdate DESC");
while ($newsfade=$DB_site->fetch_array($newsfades)) {
$newsfadebits.="\"".addslashes($newsfade[pagetext])."\",\"$newsfade[title]\",\n";
}
$newsfadebits = substr($newsfadebits,0,-2);
// End Hack newsfad
3)edit template forumhome:
find??
<meta name="description" content="$bbtitle is a discussion forum powered by vBulletin. To visit the forum, go to $bburl/ . To find out about vBulletin, go to
http://www.vbulletin.com/ .">
<title>$bbtitle - powered by vBulletin</title>
$headinclude
Just below it,add??
<SCRIPT LANGUAGE='JavaScript1.2' TYPE='text/javascript'>
prefix="";
arNews = [
$newsfadebits
]
</SCRIPT>
<SCRIPT LANGUAGE='JavaScript1.2' SRC='fader.js' TYPE='text/javascript'></script>
</head>
<body>
??note: this should be added before "$header"??
then find??
$unregwelcomemessage
</table>
<!-- /text -->
<br>
<!-- main -->
just below it,add this code??
<table bgcolor="#FFFFFF" cellpadding="4" cellspacing="1" width="100%" border="0">
<TR bgcolor="#6C6081" id=cat><TD colspan=6>
<normalfont color="#F5D300">Forum news</normalfont></td>
</tr>
<tr><td colspan=6 bgcolor="#f7f7f7" height=30 valign="top" align="center">
<div id="elFader" style="position:relative;visibility:hidden;width:5 00"><div align="center">Forumnews</div></div>
</td></tr>
<table bgcolor="#FFFFFF" cellpadding="4" cellspacing="1" width="100%" border="0">
<tr align="center">
upload NEWSFADER.PHP to you vb/ADMIN
upload FADER.JS to your vb/
this all!!