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

Windows Ban time gesior bug

crewneles

New Member
Joined
Mar 21, 2010
Messages
50
Reaction score
1
Gesior good on my site, I ban a player, when I look at the ban and click on the player of this bug''
Fatal error: Call to undefined method OTS_Account: getBanTime () in C: \ xampp \ htdocs \ characters.php on line 292'', anyone know how to fix?
well it's hard not found a solution ...
here are the lines of my Character.php

291: if ($ account-> isBanned ())
292: if ($ account-> getBanTime ()> 0)
293: $main_content .= '<font color="red"> [Banished until'. Date ("j FY, G: i", $ account-> getBanTime ()).']</ font> ';
294: else
295: $main_content .= '<font color="red"> [Banished Forever] </ font>';
 
PHP:
if ($account->isBanned())
if ($account->getBanTime() > 0)
$main_content .= '<font color="red"> [Banished until'. Date("j FY, G: i", $account->getBanTime()).']</ font> ';
else
$main_content .= '<font color="red"> [Banished Forever] </ font>';
try it or edit your POTs.
 
Back
Top