• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Auction system bug

Add this to index.php


PHP:
	case "auctionsystem";
		$subtopic = "auctionsystem";
		$topic = "Auction System";
		include("auctionsystem.php");
	break;
 
Now my kill monsters is not working, it says every some time in the server "monsters kills have been reloaded" but when i get on the web it says the same, invalid subtopic.
 
PHP:
    case "monsterkills";
        $subtopic = "monsterkills";
        $topic = "Monster kills";
        include("NAME-OF-FILE.php");
    break;

?
 
if i add it i get this error, my web wont load and it says: Parse error: syntax error, unexpected T_CASE in C:\Xampp\xampp\htdocs\index.php on line 281
 
Back
Top