random midis are easy enough, first find ur midis' paths...
then at the bottom of battlefight.php, find
PHP Code:
eval("dooutput(\"".gettemplate('battle_arena')."\");");
and then decide how many midis that you want.... and replace ### with it in this bunch of code: (place this ABOVE that ^^)
PHP Code:
$randnum = rand(1, ##);
if($randnum == 1) {
$chosenmidi = "http://path.to.midi/midi.mid";
} elseif($randnum == 2) {
$chosenmidi = "http://path.to.midi/midi2.mid";
} elseif($randnum == 3) {
$chosenmidi = "http://path.to.midi/midi3.mid";
...
} elseif($randnum == ##) {
$chosenmidi = "http://path.to.midi/midi#.mid";
}
get the point? then in template battle_arena, find
PHP Code:
<title>$bbtitle - Battle</title>
$headinclude
</head>
and replace with:
PHP Code:
<title>$bbtitle - Battle</title>
<bgsound src="$chosenmidi" loop="-1">
$headinclude
</head>
yay. for a small fee ill do it for you *big grin*