Well this has to do with the random logo modification I did. Details on how to get it working are in the readme. Essentially you have to add a plugin to global_start
with something like this
Code:
$imagearray[1]="http://www.yourdomain.com/forums/images/xbox/logo1.jpg";
$imagearray[2]="http://www.yourdomain.com/forums/images/xbox/logo2.jpg";
$imagearray[3]="http://www.yourdomain.com/forums/images/xbox/logo3.jpg";
$imagearray[4]="http://www.yourdomain.com/forums/images/xbox/logo4.jpg";
$random=rand(1,4);
Replace the domain name with yours.
In your case the code should look like this.
Code:
$imagearray[1]="http://www.complete-anime.com/Vbulletin/images/xbox/logo1.jpg";
$imagearray[2]="http://www.complete-anime.com/Vbulletin/images/xbox/logo2.jpg";
$imagearray[3]="http://www.complete-anime.com/Vbulletin/images/xbox/logo3.jpg";
$imagearray[4]="http://www.complete-anime.com/Vbulletin/images/xbox/logo4.jpg";
$random=rand(1,4);
Also I haven't tested but this should work for most people.
Code:
$imagearray[1]="images/xbox/logo1.jpg";
$imagearray[2]="images/xbox/logo2.jpg";
$imagearray[3]="images/xbox/logo3.jpg";
$imagearray[4]="images/xbox/logo4.jpg";
$random=rand(1,4);