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

[Gesior acc. maker][TFS 0.3]Powergamers and online time stats

For lazy people who want everything in english, even though geisor has posted the translation several times:

htdocs\charinfo.php -- Delete everything and paste this V
PHP:
<?php
//include charts.php to access the SendChartData function
include("config-and-functions.php");
include("charts.php");
if($_REQUEST['type'] == "exp")
{
	$chart[ 'axis_category' ] = array ( 'size'=>11, 'color'=>"000000", 'alpha'=>100, 'font'=>"arial", 'bold'=>true, 'skip'=>1 ,'orientation'=>"diagonal_up" ); 
	$chart[ 'axis_ticks' ] = array ( 'value_ticks'=>true, 'category_ticks'=>true ); 
	$chart[ 'axis_value' ] = array ( 'alpha'=>90, 'orientation'=>"horizontal" ); 
	$chart[ 'chart_border' ] = array ( 'top_thickness'=>0, 'bottom_thickness'=>3, 'left_thickness'=>3, 'right_thickness'=>0 ); 
	$chart[ 'chart_grid_h' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_grid_v' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_rect' ] = array ( 'x'=>65, 'y'=>5, 'width'=>450, 'height'=>200, 'positive_alpha'=>20 ); 
	$chart[ 'chart_pref' ] = array ( 'rotation_x'=>10, 'rotation_y'=>15 ); 
	$chart[ 'chart_type' ] = "parallel 3d column" ; 
	$chart[ 'chart_value' ] = array ( 'color'=>"FFFF00", 'alpha'=>100, 'size'=>14, 'position'=>"cursor" ); 
	$chart[ 'legend_label' ] = array ( 'layout'=>"horizontal", 'font'=>"arial", 'bold'=>true, 'size'=>12, 'color'=>"000000", 'alpha'=>90 ); 
	$chart[ 'legend_rect' ] = array ( 'x'=>25, 'y'=>250, 'width'=>350, 'height'=>50, 'margin'=>20, 'fill_color'=>"000000", 'fill_alpha'=>7, 'line_color'=>"000000", 'line_alpha'=>0, 'line_thickness'=>0 ); 
	$chart[ 'series_color' ] = array ("00FF00" ); 
	$chart[ 'series_gap' ] = array ( 'bar_gap'=>50, 'set_gap'=>50) ; 
	$player = new OTS_Player();
	$player->load($_REQUEST['guid']);
	if($player->isLoaded())
	{
		$player_exp[0] = (int) $player->getExperience();
		$player_exp[1] = (int) $player->getCustomField("exphist_lastexp");
		$player_exp[2] = (int) $player_exp[1] - $player->getCustomField("exphist1");
		$player_exp[3] = (int) $player_exp[2] - $player->getCustomField("exphist2");
		$player_exp[4] = (int) $player_exp[3] - $player->getCustomField("exphist3");
		$player_exp[5] = (int) $player_exp[4] - $player->getCustomField("exphist4");
		$player_exp[6] = (int) $player_exp[5] - $player->getCustomField("exphist5");
		$player_exp[7] = (int) $player_exp[6] - $player->getCustomField("exphist6");
		$chart [ 'chart_data' ] = array ( array ( "", "7 days ago", "","6 days ago", "", "5 days ago", "", "4 days ago", "", "3 days ago", "", "2 days ago", "", "1 day ago", "", "Today"),
										  array ( "Experience X days ago", $player_exp[7],"",$player_exp[6], "",$player_exp[5], "",$player_exp[4], "",$player_exp[3], "", $player_exp[2], "", $player_exp[1], "", $player_exp[0]));
	}
}
elseif($_REQUEST['type'] == "online")
{
	$chart[ 'axis_category' ] = array ( 'size'=>11, 'color'=>"000000", 'alpha'=>100, 'font'=>"arial", 'bold'=>true, 'skip'=>1 ,'orientation'=>"diagonal_up" ); 
	$chart[ 'axis_ticks' ] = array ( 'value_ticks'=>true, 'category_ticks'=>true ); 
	$chart[ 'axis_value' ] = array ( 'alpha'=>90, 'orientation'=>"horizontal" ); 
	$chart[ 'chart_border' ] = array ( 'top_thickness'=>0, 'bottom_thickness'=>3, 'left_thickness'=>3, 'right_thickness'=>0 ); 
	$chart[ 'chart_grid_h' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_grid_v' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_rect' ] = array ( 'x'=>65, 'y'=>5, 'width'=>445, 'height'=>200, 'positive_alpha'=>20 ); 
	$chart[ 'chart_pref' ] = array ( 'rotation_x'=>10, 'rotation_y'=>15 ); 
	$chart[ 'chart_type' ] = "parallel 3d column" ; 
	$chart[ 'chart_value' ] = array ( 'color'=>"FF0000", 'alpha'=>100, 'size'=>14, 'position'=>"cursor" ); 
	$chart[ 'legend_label' ] = array ( 'layout'=>"horizontal", 'font'=>"arial", 'bold'=>true, 'size'=>12, 'color'=>"000000", 'alpha'=>90 ); 
	$chart[ 'legend_rect' ] = array ( 'x'=>25, 'y'=>250, 'width'=>350, 'height'=>50, 'margin'=>20, 'fill_color'=>"000000", 'fill_alpha'=>7, 'line_color'=>"000000", 'line_alpha'=>0, 'line_thickness'=>0 ); 
	$chart[ 'series_color' ] = array ("FFFF00" ); 
	$chart[ 'series_gap' ] = array ( 'bar_gap'=>50, 'set_gap'=>50) ; 
	$player = new OTS_Player();
	$player->load($_REQUEST['guid']);
	if($player->isLoaded())
	{
		$player_exp[0] = bcdiv($player->getCustomField("onlinetimetoday"), 3600, 2);
		$player_exp[1] = bcdiv($player->getCustomField("onlinetime1"), 3600, 2);
		$player_exp[2] = bcdiv($player->getCustomField("onlinetime2"), 3600, 2);
		$player_exp[3] = bcdiv($player->getCustomField("onlinetime3"), 3600, 2);
		$player_exp[4] = bcdiv($player->getCustomField("onlinetime4"), 3600, 2);
		$player_exp[5] = bcdiv($player->getCustomField("onlinetime5"), 3600, 2);
		$player_exp[6] = bcdiv($player->getCustomField("onlinetime6"), 3600, 2);
		$player_exp[7] = bcdiv($player->getCustomField("onlinetime7"), 3600, 2);
		$chart [ 'chart_data' ] = array ( array ( "", "7 days ago", "","6 days ago", "", "5 days ago", "", "4 days ago", "", "3 days ago", "", "2 days ago", "", "1 day ago", "", "Today"),
										  array ( "Hours on-line", $player_exp[7],"",$player_exp[6], "",$player_exp[5], "",$player_exp[4], "",$player_exp[3], "", $player_exp[2], "", $player_exp[1], "", $player_exp[0]));
	}
}
elseif($_REQUEST['type'] == "expgain")
{
	$chart[ 'axis_category' ] = array ( 'size'=>11, 'color'=>"000000", 'alpha'=>100, 'font'=>"arial", 'bold'=>true, 'skip'=>1 ,'orientation'=>"diagonal_up" ); 
	$chart[ 'axis_ticks' ] = array ( 'value_ticks'=>true, 'category_ticks'=>true ); 
	$chart[ 'axis_value' ] = array ( 'alpha'=>90, 'orientation'=>"horizontal" ); 
	$chart[ 'chart_border' ] = array ( 'top_thickness'=>0, 'bottom_thickness'=>3, 'left_thickness'=>3, 'right_thickness'=>0 ); 
	$chart[ 'chart_grid_h' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_grid_v' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_rect' ] = array ( 'x'=>65, 'y'=>5, 'width'=>445, 'height'=>200, 'positive_alpha'=>20 ); 
	$chart[ 'chart_pref' ] = array ( 'rotation_x'=>10, 'rotation_y'=>15 ); 
	$chart[ 'chart_type' ] = "parallel 3d column" ; 
	$chart[ 'chart_value' ] = array ( 'color'=>"00FF00", 'alpha'=>100, 'size'=>14, 'position'=>"cursor" ); 
	$chart[ 'legend_label' ] = array ( 'layout'=>"horizontal", 'font'=>"arial", 'bold'=>true, 'size'=>12, 'color'=>"000000", 'alpha'=>90 ); 
	$chart[ 'legend_rect' ] = array ( 'x'=>25, 'y'=>250, 'width'=>350, 'height'=>50, 'margin'=>20, 'fill_color'=>"000000", 'fill_alpha'=>7, 'line_color'=>"000000", 'line_alpha'=>0, 'line_thickness'=>0 ); 
	$chart[ 'series_color' ] = array ("FF0000" ); 
	$chart[ 'series_gap' ] = array ( 'bar_gap'=>50, 'set_gap'=>50) ; 
	$player = new OTS_Player();
	$player->load($_REQUEST['guid']);
	{
		$player_exp[0] = (int) $player->getExperience() - $player->getCustomField("exphist_lastexp");
		$player_exp[1] = (int) $player->getCustomField("exphist1");
		$player_exp[2] = (int) $player->getCustomField("exphist2");
		$player_exp[3] = (int) $player->getCustomField("exphist3");
		$player_exp[4] = (int) $player->getCustomField("exphist4");
		$player_exp[5] = (int) $player->getCustomField("exphist5");
		$player_exp[6] = (int) $player->getCustomField("exphist6");
		$player_exp[7] = (int) $player->getCustomField("exphist7");
		$chart [ 'chart_data' ] = array ( array ( "", "7 days ago", "","6 days ago", "", "5 days ago", "", "4 days ago", "", "3 days ago", "", "2 days ago", "", "1 day ago", "", "Today"),
										  array ( "Daily earned experience", $player_exp[7],"",$player_exp[6], "",$player_exp[5], "",$player_exp[4], "",$player_exp[3], "", $player_exp[2], "", $player_exp[1], "", $player_exp[0]));
	}
}
SendChartData ($chart);

?>
 
For lazy people who want everything in english, even though geisor has posted the translation several times:

htdocs\charinfo.php -- Delete everything and paste this V
PHP:
<?php
//include charts.php to access the SendChartData function
include("config-and-functions.php");
include("charts.php");
if($_REQUEST['type'] == "exp")
{
	$chart[ 'axis_category' ] = array ( 'size'=>11, 'color'=>"000000", 'alpha'=>100, 'font'=>"arial", 'bold'=>true, 'skip'=>1 ,'orientation'=>"diagonal_up" ); 
	$chart[ 'axis_ticks' ] = array ( 'value_ticks'=>true, 'category_ticks'=>true ); 
	$chart[ 'axis_value' ] = array ( 'alpha'=>90, 'orientation'=>"horizontal" ); 
	$chart[ 'chart_border' ] = array ( 'top_thickness'=>0, 'bottom_thickness'=>3, 'left_thickness'=>3, 'right_thickness'=>0 ); 
	$chart[ 'chart_grid_h' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_grid_v' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_rect' ] = array ( 'x'=>65, 'y'=>5, 'width'=>450, 'height'=>200, 'positive_alpha'=>20 ); 
	$chart[ 'chart_pref' ] = array ( 'rotation_x'=>10, 'rotation_y'=>15 ); 
	$chart[ 'chart_type' ] = "parallel 3d column" ; 
	$chart[ 'chart_value' ] = array ( 'color'=>"FFFF00", 'alpha'=>100, 'size'=>14, 'position'=>"cursor" ); 
	$chart[ 'legend_label' ] = array ( 'layout'=>"horizontal", 'font'=>"arial", 'bold'=>true, 'size'=>12, 'color'=>"000000", 'alpha'=>90 ); 
	$chart[ 'legend_rect' ] = array ( 'x'=>25, 'y'=>250, 'width'=>350, 'height'=>50, 'margin'=>20, 'fill_color'=>"000000", 'fill_alpha'=>7, 'line_color'=>"000000", 'line_alpha'=>0, 'line_thickness'=>0 ); 
	$chart[ 'series_color' ] = array ("00FF00" ); 
	$chart[ 'series_gap' ] = array ( 'bar_gap'=>50, 'set_gap'=>50) ; 
	$player = new OTS_Player();
	$player->load($_REQUEST['guid']);
	if($player->isLoaded())
	{
		$player_exp[0] = (int) $player->getExperience();
		$player_exp[1] = (int) $player->getCustomField("exphist_lastexp");
		$player_exp[2] = (int) $player_exp[1] - $player->getCustomField("exphist1");
		$player_exp[3] = (int) $player_exp[2] - $player->getCustomField("exphist2");
		$player_exp[4] = (int) $player_exp[3] - $player->getCustomField("exphist3");
		$player_exp[5] = (int) $player_exp[4] - $player->getCustomField("exphist4");
		$player_exp[6] = (int) $player_exp[5] - $player->getCustomField("exphist5");
		$player_exp[7] = (int) $player_exp[6] - $player->getCustomField("exphist6");
		$chart [ 'chart_data' ] = array ( array ( "", "7 days ago", "","6 days ago", "", "5 days ago", "", "4 days ago", "", "3 days ago", "", "2 days ago", "", "1 day ago", "", "Today"),
										  array ( "Experience X days ago", $player_exp[7],"",$player_exp[6], "",$player_exp[5], "",$player_exp[4], "",$player_exp[3], "", $player_exp[2], "", $player_exp[1], "", $player_exp[0]));
	}
}
elseif($_REQUEST['type'] == "online")
{
	$chart[ 'axis_category' ] = array ( 'size'=>11, 'color'=>"000000", 'alpha'=>100, 'font'=>"arial", 'bold'=>true, 'skip'=>1 ,'orientation'=>"diagonal_up" ); 
	$chart[ 'axis_ticks' ] = array ( 'value_ticks'=>true, 'category_ticks'=>true ); 
	$chart[ 'axis_value' ] = array ( 'alpha'=>90, 'orientation'=>"horizontal" ); 
	$chart[ 'chart_border' ] = array ( 'top_thickness'=>0, 'bottom_thickness'=>3, 'left_thickness'=>3, 'right_thickness'=>0 ); 
	$chart[ 'chart_grid_h' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_grid_v' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_rect' ] = array ( 'x'=>65, 'y'=>5, 'width'=>445, 'height'=>200, 'positive_alpha'=>20 ); 
	$chart[ 'chart_pref' ] = array ( 'rotation_x'=>10, 'rotation_y'=>15 ); 
	$chart[ 'chart_type' ] = "parallel 3d column" ; 
	$chart[ 'chart_value' ] = array ( 'color'=>"FF0000", 'alpha'=>100, 'size'=>14, 'position'=>"cursor" ); 
	$chart[ 'legend_label' ] = array ( 'layout'=>"horizontal", 'font'=>"arial", 'bold'=>true, 'size'=>12, 'color'=>"000000", 'alpha'=>90 ); 
	$chart[ 'legend_rect' ] = array ( 'x'=>25, 'y'=>250, 'width'=>350, 'height'=>50, 'margin'=>20, 'fill_color'=>"000000", 'fill_alpha'=>7, 'line_color'=>"000000", 'line_alpha'=>0, 'line_thickness'=>0 ); 
	$chart[ 'series_color' ] = array ("FFFF00" ); 
	$chart[ 'series_gap' ] = array ( 'bar_gap'=>50, 'set_gap'=>50) ; 
	$player = new OTS_Player();
	$player->load($_REQUEST['guid']);
	if($player->isLoaded())
	{
		$player_exp[0] = bcdiv($player->getCustomField("onlinetimetoday"), 3600, 2);
		$player_exp[1] = bcdiv($player->getCustomField("onlinetime1"), 3600, 2);
		$player_exp[2] = bcdiv($player->getCustomField("onlinetime2"), 3600, 2);
		$player_exp[3] = bcdiv($player->getCustomField("onlinetime3"), 3600, 2);
		$player_exp[4] = bcdiv($player->getCustomField("onlinetime4"), 3600, 2);
		$player_exp[5] = bcdiv($player->getCustomField("onlinetime5"), 3600, 2);
		$player_exp[6] = bcdiv($player->getCustomField("onlinetime6"), 3600, 2);
		$player_exp[7] = bcdiv($player->getCustomField("onlinetime7"), 3600, 2);
		$chart [ 'chart_data' ] = array ( array ( "", "7 days ago", "","6 days ago", "", "5 days ago", "", "4 days ago", "", "3 days ago", "", "2 days ago", "", "1 day ago", "", "Today"),
										  array ( "Hours on-line", $player_exp[7],"",$player_exp[6], "",$player_exp[5], "",$player_exp[4], "",$player_exp[3], "", $player_exp[2], "", $player_exp[1], "", $player_exp[0]));
	}
}
elseif($_REQUEST['type'] == "expgain")
{
	$chart[ 'axis_category' ] = array ( 'size'=>11, 'color'=>"000000", 'alpha'=>100, 'font'=>"arial", 'bold'=>true, 'skip'=>1 ,'orientation'=>"diagonal_up" ); 
	$chart[ 'axis_ticks' ] = array ( 'value_ticks'=>true, 'category_ticks'=>true ); 
	$chart[ 'axis_value' ] = array ( 'alpha'=>90, 'orientation'=>"horizontal" ); 
	$chart[ 'chart_border' ] = array ( 'top_thickness'=>0, 'bottom_thickness'=>3, 'left_thickness'=>3, 'right_thickness'=>0 ); 
	$chart[ 'chart_grid_h' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_grid_v' ] = array ( 'thickness'=>2, 'color'=>"000000", 'alpha'=>60 ); 
	$chart[ 'chart_rect' ] = array ( 'x'=>65, 'y'=>5, 'width'=>445, 'height'=>200, 'positive_alpha'=>20 ); 
	$chart[ 'chart_pref' ] = array ( 'rotation_x'=>10, 'rotation_y'=>15 ); 
	$chart[ 'chart_type' ] = "parallel 3d column" ; 
	$chart[ 'chart_value' ] = array ( 'color'=>"00FF00", 'alpha'=>100, 'size'=>14, 'position'=>"cursor" ); 
	$chart[ 'legend_label' ] = array ( 'layout'=>"horizontal", 'font'=>"arial", 'bold'=>true, 'size'=>12, 'color'=>"000000", 'alpha'=>90 ); 
	$chart[ 'legend_rect' ] = array ( 'x'=>25, 'y'=>250, 'width'=>350, 'height'=>50, 'margin'=>20, 'fill_color'=>"000000", 'fill_alpha'=>7, 'line_color'=>"000000", 'line_alpha'=>0, 'line_thickness'=>0 ); 
	$chart[ 'series_color' ] = array ("FF0000" ); 
	$chart[ 'series_gap' ] = array ( 'bar_gap'=>50, 'set_gap'=>50) ; 
	$player = new OTS_Player();
	$player->load($_REQUEST['guid']);
	{
		$player_exp[0] = (int) $player->getExperience() - $player->getCustomField("exphist_lastexp");
		$player_exp[1] = (int) $player->getCustomField("exphist1");
		$player_exp[2] = (int) $player->getCustomField("exphist2");
		$player_exp[3] = (int) $player->getCustomField("exphist3");
		$player_exp[4] = (int) $player->getCustomField("exphist4");
		$player_exp[5] = (int) $player->getCustomField("exphist5");
		$player_exp[6] = (int) $player->getCustomField("exphist6");
		$player_exp[7] = (int) $player->getCustomField("exphist7");
		$chart [ 'chart_data' ] = array ( array ( "", "7 days ago", "","6 days ago", "", "5 days ago", "", "4 days ago", "", "3 days ago", "", "2 days ago", "", "1 day ago", "", "Today"),
										  array ( "Daily earned experience", $player_exp[7],"",$player_exp[6], "",$player_exp[5], "",$player_exp[4], "",$player_exp[3], "", $player_exp[2], "", $player_exp[1], "", $player_exp[0]));
	}
}
SendChartData ($chart);

?>

Daily earned experience

Ahhh, Thanks !

/Limannen
 
Geisor, just wanted to let you know in exphist.php you can change
PHP:
function coloured_value($valuein)
{
	$value2 = $valuein;
	while(strlen($value2) > 3)
	{
		$value .= ','.substr($value2, -3, 3);
		$value2 = substr($value2, 0, strlen($value2)-3);
	}
	$value = $value2.$value;
	if($valuein > 0)
		return '<font color="green">+'.$value.'</font>';
	elseif($valuein < 0)
		return '<font color="red">'.$value.'</font>';
	else
		return '<font color="black">'.$value.'</font>';
}
to something already built into php like this:
PHP:
function coloured_value($valuein)
{
	if($valuein > 0)
		return '<font color="green">+'.number_format($valuein).'</font>';
	elseif($valuein < 0)
		return '<font color="red">'.number_format($valuein).'</font>';
	else
		return '<font color="black">'.number_format($valuein).'</font>';
}
and this will make it use the local number format (, . w/e) and it wont put a , on numbers like ,393,000.
 
Awesome, working perfectly. But how can I make it so it doesn't show:

Account Manager
Rook Sample
Sorcerer Sample
Etc..
 
Lol
If you don't know how to install it.. DON'T ASK ME! It's script for OTSes with admins who know anything about PHP and LUA!

I understand ... many messages arrive at you!
But I would like a help:
I can not do the downloads to a folder in my www.
I do not know if it is compatible with my server: 8.5! (I would like to know what versions are compatible)

Thanks!
 
I believe this is it..

Also, in characters.php, before:
PHP:
			//deaths list
Add:
PHP:
			include "charts.php";
			if($player->getCustomField("group_id") == 1) {
			$main_content .= "<table><tr width=\"100%\"><td width='9%'></td><td><center>".InsertChart ( "charts.swf", "charts_library", "charinfo.php?type=exp&uniqueID=" . uniqid(rand(),true) . "&guid=" . $player->getId(), 500, 300 )."</center></td></tr></table>";
			}
			$main_content .= "<table><tr width=\"100%\"><td width='9%'></td><td><center>".InsertChart ( "charts.swf", "charts_library", "charinfo.php?type=online&uniqueID=" . uniqid(rand(),true) . "&guid=" . $player->getId(), 500, 300 )."</center></td></tr></table>";
			if($player->getCustomField("group_id") == 1) {
			$main_content .= "<table><tr width=\"100%\"><td width='9%'></td><td><center>".InsertChart ( "charts.swf", "charts_library", "charinfo.php?type=expgain&uniqueID=" . uniqid(rand(),true) . "&guid=" . $player->getId(), 500, 300 )."</center></td></tr></table>";}
 

Attachments

Last edited:
Last edited:
Can someone help me with this error: Fatal error: Cannot redeclare isPremium() (previously declared in D:\mtibia\xampp\htdocs\config-and-functions.php:79) in D:\mtibia\xampp\htdocs\config-and-functions.php on line 82?
 
Can someone help...

charinfo.php isn't working... it says: Fatal error: Cannot redeclare isPremium() (previously declared in D:\mtibia\xampp\htdocs\config-and-functions.php:79) in D:\mtibia\xampp\htdocs\config-and-functions.php on line 82

How to fix it?
 
Why no one helps =(

Fatal error: Cannot redeclare isPremium() (previously declared in D:\mtibia\xampp\htdocs\config-and-functions.php:79) in D:\mtibia\xampp\htdocs\config-and-functions.php on line 82
 
i got it all working but its not changing day, all the exp they exp is only on 1 day :S
 
charinfo.php isn't working... it says: Fatal error: Cannot redeclare isPremium() (previously declared in D:\mtibia\xampp\htdocs\config-and-functions.php:79) in D:\mtibia\xampp\htdocs\config-and-functions.php on line 82
 
Back
Top