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

ModernAcc - Offline Problem

bury

Active Member
Joined
Jul 27, 2008
Messages
421
Solutions
7
Reaction score
25
Hello, my server is online and my friends can log in it at the moment, and create accs in the web, but the web says:




And if someone know this too, I published it in my other forum (here) and the solution that a webmate told me didnt work, or maybe I did something wrong... the problem is that I cant invite players to the guild if they are online... anybody could help me?



Thanks you!! :)
 
Last edited:
Hello, my server is online and my friends can log in it at the moment, and create accs in the web, but the web says:




And if someone know this too, I published it in my other forum (here) and the solution that a webmate told me didnt work, or maybe I did something wrong... the problem is that I cant invite players to the guild if they are online... anybody could help me?



Thanks you!! :)

Dude about guild I just can say you must be offline for getting invited into the guild! I went in many ots who had Modern Aac and same problem as you. :p
Maybe it's bug or something but as far as I know I think it's normal.

Simple Tutor for Gesior Aac "how to fix the online status."

1. Open the folder htdocs/layouts/tibiacom and open the file "layout.php" and go to the line nr. 706...
This is our line.

PHP:
<?PHP
         if($config['status']['serverStatus_online'] == 1)
            echo $config['status']['serverStatus_players'].'<br />Players Online';
         else
            echo '<font color="red"><b>Server<br />OFFLINE</b></font>';
         ?>

And change it for this!

PHP:
<?PHP
         $update_interval = 2;
         if($config['status']['serverStatus_online'] == 1)
         echo $config['status']['serverStatus_players'].'<br />Players Online';
         else 
            echo'<font color="red"><b>Server<br />Offline</b></font>';?>

Done :)
.....If it doesn't work then try to use this code:
PHP:
<?PHP
         $update_interval = 2;
         if($config['status']['serverStatus_online'] == 1)
         echo $config['status']['status'].$number_of_players_online.'<br />Players Online';
         else 
            echo'<font color="red"><b>Server<br />Offline</b></font>';?>

Here you can see some screenshots of repairing the status.

Not reparied status!
status2.png


Repaired status!
status1.png


And I hope your problem has solved :D!
 
Thanks for your help bro, in this case I couldnt made as you tell me because the structure of Gesior is a bit different, but I looking for it and finally I found how more or less xD

Solution here


You dont know any solution to my other thread? (stacking command with low levels)

Thanks :D
 
Back
Top