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

PHP how to upgade ur acc menager to newest TFS database tables.

QuaS

Cykotitan Pwned =/
Joined
Sep 11, 2008
Messages
838
Reaction score
28
Location
Poland/ Wroclaw
Based on gesior one.


Files to change:
PHP:
pot/ots_player.php
characters.php
install.php
killstatistics.php

killstatistics.php and ots_player are in package available to download in attachments.


Character change manually:


Find:
PHP:
			$player_deaths = $SQL->query('SELECT * FROM player_deaths WHERE '.$player->getId().' = player_id ORDER BY time DESC');

and change for:
PHP:
			$player_deaths = $SQL->query('SELECT * FROM player_deaths WHERE '.$player->getId().' = player_id ORDER BY date DESC');
 
Back
Top