For who all got a error when visiting online.php a parse error..
This is how to fix it.
FIND THIS IN ONLINE.PHP
PHP Code:
case 'itemshop':
$userinfo[where] = "Viewing <a href='itemshop.php?s=$session[sessionhash]'>Itemshop<a>";
break;
case 'battlefight':
$userinfo[where] = 'Viewing a Battle';
break;
case 'battle':
$userinfo[where] = 'Viewing <a href='battle.php?s=$session[sessionhash]'>Battle Main</a>';
break;
case 'battleupdate':
$userinfo[where] = 'Updating a Battle';
break;
case 'heal':
$userinfo[where] = 'Healing Center';
break;
Replace With
PHP Code:
case 'itemshop':
$userinfo[where] = "Viewing <a href='itemshop.php?s=$session[sessionhash]'>Itemshop<a>";
break;
case 'battlefight':
$userinfo[where] = "Viewing a Battle";
break;
case 'battle':
$userinfo[where] = "Viewing <a href='battle.php?s=$session[sessionhash]'>Battle Main</a>";
break;
case 'battleupdate':
$userinfo[where] = "Updating a Battle";
break;
case 'heal':
$userinfo[where] = "Healing Center";
break;