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

UNNAMED acc. maker 0.3.2 beta for TFS

Status
Not open for further replies.

Warning: Error parsing C:/Documents and Settings/Gustavo/Desktop/vTm/config.lua on line 129 in C:\xampp\htdocs\vTm\config-and-functions.php on line 13


TFS 3.01
 
I wonder what can be wrong for me :/ When searching for a character I get following error:

Code:
Fatal error: Uncaught exception 'E_OTS_NotLoaded' in C:\OT Server\xampp\htdocs\pot\OTS_Guild.php:210 Stack trace: #0 C:\OT Server\xampp\htdocs\characters.php(69): OTS_Guild->getName() #1 C:\OT Server\xampp\htdocs\index.php(94): include('C:\OT Server\xa...') #2 {main} thrown in C:\OT Server\xampp\htdocs\pot\OTS_Guild.php on line 210

I'm to tierd right now to look it up.. Hope you guys can help me ^^
 
Mm how to fix this ?
Fatal error: Uncaught exception 'E_OTS_NotLoaded' in C:\xampp\htdocs\unitra\pot\OTS_GuildRank.php:179 Stack trace: #0 C:\xampp\htdocs\unitra\characters.php(59): OTS_GuildRank->getGuild() #1 C:\xampp\htdocs\unitra\index.php(94): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\unitra\pot\OTS_GuildRank.php on line 179
 
Mm how to fix this ?
Login on page admin account (1?). Open guilds page, press "Cleanup Guilds" and "Cleanup Players", then in config.lua of ots edit line:
PHP:
ingameGuildManagement = "yes"
change to:
PHP:
ingameGuildManagement = "no"
You can't use in-game and on page guild manager in same time
 
@Gesior
Big thx ;)

News Ticker (small news) doesnt work on acc for 0.3 on crying damson :/

and what with highscores for each vocation ?

New highscores, user select vocation: All, None, Sorcerer, Druid... (load number of vocations and vocation names from config.php, work with custom vocations config)
PHP:
<?PHP
$list = $_REQUEST['list'];
$page = $_REQUEST['page'];
$vocation = substr($_GET['vocation'], 0, 3);
if(is_numeric($_GET['vocation']))
	$vocation_sql = ' AND `players`.`vocation`='.(int) $vocation;
switch($list)
{
  case "fist":
   $id = 0;
   $list_name = 'Fist Fighting';
   break;
  case "club":
   $id = 1;
   $list_name = 'Club Fighting';
   break;
  case "sword":
   $id = 2;
   $list_name = 'Sword Fighting';
   break;
  case "axe":
   $id = 3;
   $list_name = 'Axe Fighting';
   break;
  case "distance":
   $id = 4;
   $list_name = 'Distance Fighting';
   break;
  case "shield":
   $id = 5;
   $list_name = 'Shielding';
   break;
  case "fishing":
   $id = 6;
   $list_name = 'Fishing';
   break;
}
if(!isset($id))
	if($list == "magic")
		$list_name = "Magic Level";
	else
	{
		$list_name = 'Experience';
		$list = 'experience';
	}
if(count($config['site']['worlds']) > 1)
{
	$worlds .= '<i>Select world:</i> ';
	foreach($config['site']['worlds'] as $idd => $world_n)
	{
		$worlds .= ' <a href="?subtopic=highscores&list='.$list.'&vocation='.$vocation.'&world='.$idd.'">'.$world_n.'</a> , ';
		if($idd == (int) $_GET['world'])
		{
			$world_id = $idd;
			$world_name = $world_n;
		}
	}
	$main_content .= substr($worlds, 0, strlen($worlds)-3);
}
if(!isset($world_id))
{
	$world_id = 0;
	$world_name = $config['server']['serverName'];
}
$offset = $page * 100;
if(isset($id))
	$skills = $SQL->query('SELECT name,online,value,level,vocation,promotion FROM players,player_skills WHERE players.world_id = '.$world_id.' AND players.deleted = 0'.$vocation_sql.' AND players.group_id < '.$config['site']['players_group_id_block'].' AND players.id = player_skills.player_id AND player_skills.skillid = '.$id.' ORDER BY value DESC, count DESC LIMIT 101 OFFSET '.$offset);
elseif($list == "magic")
	$skills = $SQL->query('SELECT name,online,maglevel,level,vocation,promotion FROM players WHERE players.world_id = '.$world_id.' AND players.deleted = 0'.$vocation_sql.' AND players.group_id < '.$config['site']['players_group_id_block'].' AND name != "Account Manager" ORDER BY maglevel DESC, manaspent DESC LIMIT 101 OFFSET '.$offset);
elseif($list == "experience")
	$skills = $SQL->query('SELECT name,online,level,experience,vocation,promotion FROM players WHERE players.world_id = '.$world_id.' AND players.deleted = 0'.$vocation_sql.' AND players.group_id < '.$config['site']['players_group_id_block'].' AND name != "Account Manager" ORDER BY level DESC, experience DESC LIMIT 101 OFFSET '.$offset);
//wyswietlanie wszystkiego
$main_content .= '<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR><TD><IMG SRC="'.$layout_name.'/images/general/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD><TD><CENTER><H2>Ranking for '.$list_name.' on '.$world_name.'</H2></CENTER><BR><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%></TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD WIDTH=10% CLASS=whites><B>Rank</B></TD><TD WIDTH=75% CLASS=whites><B>Name</B></TD><TD WIDTH=15% CLASS=whites><b><center>Level</center></B></TD>';
if($list == "experience")
	$main_content .= '<TD CLASS=whites><b><center>Points</center></B></TD>';
$main_content .= '</TR><TR>';
foreach($skills as $skill)
{
	if($number_of_rows < 100)
	{
		if($list == "magic")
			$skill['value'] = $skill['maglevel'];
		if($list == "experience")
			$skill['value'] = $skill['level'];
		if(!is_int($number_of_rows / 2)) { $bgcolor = $config['site']['darkborder']; } else { $bgcolor = $config['site']['lightborder']; } $number_of_rows++;
		$main_content .= '<tr bgcolor="'.$bgcolor.'"><td>'.($offset + $number_of_rows).'.</td><td><a href="?subtopic=characters&name='.urlencode($skill['name']).'">'.($skill['online']>0 ? "<font color=\"green\">".$skill['name']."</font>" : "<font color=\"red\">".$skill['name']."</font>").'</a><br><small>'.$skill['level'].' '.$vocation_name[$world_id][$skill['promotion']][$skill['vocation']].'</small></td><td><center>'.$skill['value'].'</center></td>';
		if($list == "experience")
			$main_content .= '<td><center>'.$skill['experience'].'</center></td>';
		$main_content .= '</tr>';
	}
	else
		$show_link_to_next_page = TRUE;
}
$main_content .= '</TABLE><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1 WIDTH=100%>';
if($page > 0)
	$main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.$list.'&page='.($page - 1).'" CLASS="size_xxs">Previous Page</A></TD></TR>';
if($show_link_to_next_page)
	$main_content .= '<TR><TD WIDTH=100% ALIGN=right VALIGN=bottom><A HREF="?subtopic=highscores&list='.$list.'&page='.($page + 1).'" CLASS="size_xxs">Next Page</A></TD></TR>';
$main_content .= '</TABLE></TD><TD WIDTH=5%><IMG SRC="'.$layout_name.'/images/general/blank.gif" WIDTH=1 HEIGHT=1 BORDER=0></TD><TD WIDTH=15% VALIGN=top ALIGN=right><TABLE BORDER=0 CELLPADDING=4 CELLSPACING=1><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Choose a skill</B></TD></TR><TR BGCOLOR="'.$config['site']['lightborder'].'"><TD><A HREF="?subtopic=highscores&list=experience&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Experience</A><BR><A HREF="?subtopic=highscores&list=magic&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Magic</A><BR><A HREF="?subtopic=highscores&list=shield&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Shielding</A><BR><A HREF="?subtopic=highscores&list=distance&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Distance</A><BR><A HREF="?subtopic=highscores&list=club&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Club</A><BR><A HREF="?subtopic=highscores&list=sword&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Sword</A><BR><A HREF="?subtopic=highscores&list=axe&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Axe</A><BR><A HREF="?subtopic=highscores&list=fist&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Fist</A><BR><A HREF="?subtopic=highscores&list=fishing&vocation='.$vocation.'&world='.$world_id.'" CLASS="size_xs">Fishing</A><BR></TD></TR><TR BGCOLOR="'.$config['site']['vdarkborder'].'"><TD CLASS=whites><B>Vocation</B></TD></TR><TR BGCOLOR="'.$config['site']['lightborder'].'"><TD><A HREF="?subtopic=highscores&list='.$list.'&vocation=&world='.$world_id.'" CLASS="size_xs">All</A><BR>';
foreach($vocation_name[$world_id][0] as $voc_id => $voc_name)
	$main_content .= '<A HREF="?subtopic=highscores&list='.$list.'&vocation='.$voc_id.'&world='.$world_id.'" CLASS="size_xs">'.$voc_name.'</A><BR>';
$main_content .= '</TD></TR></TABLE></TD><TD><IMG SRC="'.$layout_name.'/images/general/blank.gif" WIDTH=10 HEIGHT=1 BORDER=0></TD></TR></TABLE>';
?>

everyone have this error
Code:
Warning: Invalid argument supplied for foreach() in C:\xampp2\htdocs\highscores.php on line 100
 
Code:
Warning: Error parsing C:/Users/Sam Britton/Desktop/cryingdamson-gui/config.lua on line 126 in C:\Users\Sam Britton\Desktop\xampp\htdocs\install.php on line 150
File config.lua loaded from C:/Users/Sam Britton/Desktop/cryingdamson-gui/config.lua and it's not valid TFS config.lua file. Go to STEP 1 - select other directory. If it's your config.lua file from TFS contact with acc. maker author.
:S:S
 
Yes... the config lua of tfs 0.3.1 don't valid for unnamed 0.3.2 beta3 =/

i need the website for open my server =///////

please gesior fix :)
 
Warning: Error parsing C:/Users/Sam Britton/Desktop/cryingdamson-gui/config.lua on line 126...
Open config and delete line 126 and other if show error.
 
Code:
STEP 5
Set Admin Account

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42S22]: Column not found: 1054 Unknown column 'name' in 'field list'' in C:\xampp\htdocs\pot\OTS_Account.php:229 Stack trace: #0 C:\xampp\htdocs\pot\OTS_Account.php(229): PDO->query('SELECT `id`, `n...') #1 C:\xampp\htdocs\install.php(459): OTS_Account->load(1) #2 {main} thrown in C:\xampp\htdocs\pot\OTS_Account.php on line 229

HELP Me please :((((
 
@Gesior

What with new highscores for each vocation ?

Warning: Invalid argument supplied for foreach() in C:\xampp2\htdocs\highscores.php on line 100
 
When are you going to release a new version :p? Btw, great job gesior! You are great!
 
WHAT? HAHAHAHAHAHAHAHAHAHAH! Who is noob? LOT OF LOUGHTING! HAHAAHHAHA. OUAHAHAHHAHAA, :blink:

YES HUEAHUEhuAUHEHUA LOT OF LOHYFHTINH !!!

and now, go to school.
 
Status
Not open for further replies.
Back
Top