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

Ban Time Gesior

xLosT

Member
Joined
Jan 11, 2010
Messages
1,021
Reaction score
13
Location
Brasil, Rio Grande do Sul
first error is the date is wrong
PHP:
[Banished until 31/12/1969, 21:00:00]


line ban
PHP:
        if ($player['expires'] == "-1") // If the banishment is permanent
            $expires = "Permament";
        else
            $expires = date("d/m/Y, G:i:s", $player['expires']);


second error is when a player deleted and not displayed in the character Deleted
PHP:
                       if($player->isDeleted())
                                $main_content .= '<font color="red"> [DELETED]</font>';
 
In your database there is a entry for that ban. What does "expires" say in database?
 
Post both full scripts and also the DATABASE entry!!
127.0.0.1/phpmyadmin -> Your database -> bans table -> Screenshot of entry which belongs to the player you are looking at.
 
Back
Top