• 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!

Raids on GesiorACC

CML

New Member
Joined
Jun 5, 2015
Messages
10
Reaction score
0
I'm Looking for Raids page which will show active raids on my OT and will refresh automaticly.
 
take a look at serverinfo.php from znote and make a new one based on that idea I mean:

PHP:
    if (file_exists($config['server_path'].'/data/XML/raids.xml')) {
        $raids_path = simplexml_load_file($config['server_path'].'/data/XML/raids.xml');
    } else {
        echo 'Couldn\'t locate stages.xml';
    }
   
    echo '<h2>Server raids</h2>';
    if ($raids_path->config['enabled'] != 0) {
        ...
    }
 
Thanks dude, but im not really in to php and it looks hard for me i was hoping somewhere or someone have ready one and will be nice enought for share
 
Back
Top