• 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 Lost account

Natan Beckman

Well-Known Member
Joined
Aug 1, 2010
Messages
548
Reaction score
54
Location
Teresina-PI/Br
How do I set lots account?
100%

What is this?
Fatal error: Call to undefined method OTS_Account::getBanTime() in C:\xampp\htdocs\characters.php on line 292
 
in sql:
PHP:
UPDATE `table_name` SET `record`='value', `record`='value'


and in characters.php file you have wrong used function getBanTime from OTS_Account class (line 292)
 
I had to disable showing the ban time in characters.php or something to fix this, I can't remember exactly.
 
and in characters.php file you have wrong used function getBanTime from OTS_Account class (line 292)

No, it's missing function

@thread, add in /htdocs/pot/OTS_Account.php:
PHP:
	public function getBanTime()
	{
		if( !$this->isLoaded() )
			throw new E_OTS_NotLoaded();

		$ban = new OTS_AccountBan();
		$ban->find($this->data['id']);
		return $ban->getExpires();
	}
 
Last edited:
Back
Top