• Networking: The investigation is still on the way, we've switched to backup telecom carriers since the episode but we're still working in settling everything as it must be. We'll add more updates as we have them available. Incoming and outgoing emails will be restricted, and user registration has been disabled until the issue is resolved.

[Share] L2C6Map Functional L2J 

Status
Not open for further replies.
Junior Spellweaver
Joined
Jan 21, 2006
Messages
171
Reaction score
0
Location
M
This map is 100% Working and it is compressed

And soomebody have c6 control castle??

I am making a c6 full web page.

Reason for Editing:

Now in the *.rar file is C6 English Full Map.
 

Attachments

Last edited:
2 BIG mistakes.....

1st The C6 new area is in japanese ( = just paste on paint)
2nd the C6 map shows more thinks than just a new island so please w8 until :
1 : C6 English PTS
2 : C6 servers

Your mistake, it's T1 not C6 -.- how often it need to be said?
 
Your mistake, it's T1 not C6 -.- how often it need to be said?

And? All know what he mean with C6, we can give Interlude a name like "Lineage 3", too and all understand it. ;)

@Vega: Dont hear spyridonas, if he dont like it then he can do it. ;)
 
does not work with mysql 5.1

map.php:
Parse error: parse error, expecting `','' or `';'' in c:\program files\easyphp1-8\www\map.php on line 271
and
index.php

Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client in c:\program files\easyphp1-8\www\connection.php on line 15
Coudn't connect to [192.168.0.175]
 
My index.php, map.php isn't needed, you can delete it
And Red Words, you ccan change it to your language

Code:
<html>
<head>
<body bgcolor="#000000" text="lime" link="#009933" vlink="#009933" padding="0" leftmargin="0">
<font size="2"> 
<TITLE>.::[COLOR="Red"]L2LegendSwords Server[/COLOR]::. - .::Map Viewer::.</TITLE>

<script>
<!--
//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit="5:00"

if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh(){
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else{ 
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes "+cursec+" seconds to automatic refresh!"
else
curtime=cursec+" seconds to automatic refresh!"
window.status=curtime
setTimeout("beginrefresh()",1000)
}
}

window.onload=beginrefresh
//-->
</script>

</head>
<?php
include"connection.php";
?>
<?php
if($show ==''){
$query_players=mysql_query("SELECT char_name,x,y,race,z,accesslevel,level FROM characters where online = 1");
if (@mysql_num_rows($query_players)==0){
echo "<font color=red size=4>[COLOR="Red"]No hay Jugadores Conectados[/COLOR]</font>";
exit();}
echo "<div style=position:absolute;top:0px;left:0px><img src=C5.jpg></div>";

while ($res=mysql_fetch_array($query_players))
  {
	$name=$res['char_name'];
	$valx=$res['x'];
	$valy=$res['y'];
	$valz=$res['z'];
	$race=$res['race'];
  $level=$res['level'];
  $access=$res['accesslevel'];
	
  $x=0.55*116+0.55*($valx+107823)/200; //Aden
  $y=0.55*2580+0.55*($valy-255420 )/200;  //Aden
	echo "<div style=\"position:absolute;top:".$y."px;left:".$x."px\"> ";
if ($access >= 90) {
echo "
<img src=6.png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"> ";
}
else {
echo "
<img src=".$race.".png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"> ";
}
echo "
</div>";
	}
}

if($show =='human'){
$query_players=mysql_query("SELECT char_name,x,y,race,z,accesslevel, level FROM characters WHERE race = 0 and online='1'");
if (@mysql_num_rows($query_players)==0){
echo "<font color=red size=4>[COLOR="Red"]No hay Jugadores Conectados[/COLOR]</font>";
exit();}
echo "<div style=position:absolute;top:0px;left:0px><img src=C5.jpg></div>";

while ($res=mysql_fetch_array($query_players))
  {
	$name=$res['char_name'];
	$valx=$res['x'];
	$valy=$res['y'];
	$valz=$res['z'];

	$race=$res['race'];
  $level=$res['level'];
  $access=$res['accesslevel'];
	
  $x=0.55*116+0.55*($valx+107823)/200; //Aden
  $y=0.55*2580+0.55*($valy-255420 )/200;  //Aden

	echo "<div style=\"position:absolute;top:".$y."px;left:".$x."px\"><img src=".$race.".png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"></div>";
	}
}

if($show =='elf'){
$query_players=mysql_query("SELECT char_name,x,y,race,z,accesslevel, level FROM characters WHERE race = 1 and online='1'");
if (@mysql_num_rows($query_players)==0){
echo "<font color=red size=4>[COLOR="Red"]No hay Jugadores Conectados[/COLOR]</font>";
exit();}
echo "<div style=position:absolute;top:0px;left:0px><img src=C5.jpg></div>";

while ($res=mysql_fetch_array($query_players))
  {
	$name=$res['char_name'];
	$valx=$res['x'];
	$valy=$res['y'];
	$valz=$res['z'];

	$race=$res['race'];
  $level=$res['level'];
  $access=$res['accesslevel'];
	
  $x=0.55*116+0.55*($valx+107823)/200; //Aden
  $y=0.55*2580+0.55*($valy-255420 )/200;  //Aden

	echo "<div style=\"position:absolute;top:".$y."px;left:".$x."px\"><img src=".$race.".png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"></div>";
	}
}

if($show =='darkelf'){
$query_players=mysql_query("SELECT char_name,x,y,race,z,accesslevel, level FROM characters WHERE race = 2 and online='1'");
if (@mysql_num_rows($query_players)==0){
echo "<font color=red size=4>[COLOR="Red"]No hay Jugadores Conectados[/COLOR]</font>";
exit();}
echo "<div style=position:absolute;top:0px;left:0px><img src=C5.jpg></div>";

while ($res=mysql_fetch_array($query_players))
  {
	$name=$res['char_name'];
	$valx=$res['x'];
	$valy=$res['y'];
	$valz=$res['z'];

	$race=$res['race'];
  $level=$res['level'];
  $access=$res['accesslevel'];
	
  $x=0.55*116+0.55*($valx+107823)/200; //Aden
  $y=0.55*2580+0.55*($valy-255420 )/200;  //Aden

	echo "<div style=\"position:absolute;top:".$y."px;left:".$x."px\"><img src=".$race.".png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"></div>";
	}
}

if($show =='orc'){
$query_players=mysql_query("SELECT char_name,x,y,race,z,accesslevel, level FROM characters WHERE race = 3 and online='1'");
if (@mysql_num_rows($query_players)==0){
echo "<font color=red size=4>No hay Jugadores Conectados</font>";
exit();}
echo "<div style=position:absolute;top:0px;left:0px><img src=C5.jpg></div>";

while ($res=mysql_fetch_array($query_players))
  {
	$name=$res['char_name'];
	$valx=$res['x'];
	$valy=$res['y'];
	$valz=$res['z'];

	$race=$res['race'];
  $level=$res['level'];
  $access=$res['accesslevel'];
	
  $x=0.55*116+0.55*($valx+107823)/200; //Aden
  $y=0.55*2580+0.55*($valy-255420 )/200;  //Aden

	echo "<div style=\"position:absolute;top:".$y."px;left:".$x."px\"><img src=".$race.".png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"></div>";
	}
}

if($show =='dwarf'){
$query_players=mysql_query("SELECT char_name,x,y,race,z,accesslevel, level FROM characters WHERE race = 4 and online='1'");
if (@mysql_num_rows($query_players)==0){
echo "<font color=red size=4>[COLOR="Red"]No hay Jugadores Conectados[/COLOR]</font>";
exit();}
echo "<div style=position:absolute;top:0px;left:0px><img src=C5.jpg></div>";

while ($res=mysql_fetch_array($query_players))
  {
	$name=$res['char_name'];
	$valx=$res['x'];
	$valy=$res['y'];
	$valz=$res['z'];

	$race=$res['race'];
  $level=$res['level'];
  $access=$res['accesslevel'];
	
  $x=0.55*116+0.55*($valx+107823)/200; //Aden
  $y=0.55*2580+0.55*($valy-255420 )/200;  //Aden

	echo "<div style=\"position:absolute;top:".$y."px;left:".$x."px\"><img src=".$race.".png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"></div>";
	}
}

if($show =='gm'){
$query_players=mysql_query("SELECT char_name,x,y,race,z,accesslevel, level FROM characters WHERE accesslevel >= 90 and online = 1");
if (@mysql_num_rows($query_players)==0){
echo "<font color=red size=4>[COLOR="Red"]No hay Jugadores Conectados[/COLOR]</font>";
exit();}
echo "<div style=position:absolute;top:0px;left:0px><img src=C5.jpg></div>";

while ($res=mysql_fetch_array($query_players))
  {
	$name=$res['char_name'];
	$valx=$res['x'];
	$valy=$res['y'];
	$valz=$res['z'];

	$race=$res['race'];
  $level=$res['level'];
  $access=$res['accesslevel'];
	
  $x=0.55*116+0.55*($valx+107823)/200; //Aden
  $y=0.55*2580+0.55*($valy-255420 )/200;  //Aden

	echo "<div style=\"position:absolute;top:".$y."px;left:".$x."px\"><img src=6.png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"></div>";
	}
}

if($show == search & $value == $value){
$query_players=mysql_query("SELECT * FROM characters WHERE `char_name` LIKE '%$value%' and `online` = '1'");
if (@mysql_num_rows($query_players)==0){
echo "<font color=red size=4>[COLOR="Red"]No hay Jugadores Conectados[/COLOR]</font>";
exit();}
echo "<div style=position:absolute;top:0px;left:0px><img src=C5.jpg></div>";

while ($res=mysql_fetch_array($query_players))
  {
	$name=$res['char_name'];
	$valx=$res['x'];
	$valy=$res['y'];
	$valz=$res['z'];

	$race=$res['race'];
  $level=$res['level'];
  $access=$res['accesslevel'];
	
  $x=0.55*116+0.55*($valx+107823)/200; //Aden
  $y=0.55*2580+0.55*($valy-255420 )/200;  //Aden

	echo "<div style=\"position:absolute;top:".$y."px;left:".$x."px\"> ";
if ($access >= 90) {
echo "
<img src=6.png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"> ";
}
else {
echo "
<img src=".$race.".png title=\"$name x:$valx y:$valy z:$valz lvl:$level\"> ";
}
echo "
</div>";
	}
}

$query_online_count="SELECT count(*) FROM characters WHERE online = '1'";
$result = mysql_query($query_online_count);
$online = mysql_result ($result, 0, 0);

echo '<div style=position:absolute;top:10px;left:120px><table><tr><td align=center><b><u><font color=000000><a href=map.php?show=>'.$online.'</a></font></b></u></td><td><b><u><font color=000000><a href=map.php?show=>[COLOR="Red"]Jugadores Conectados[/COLOR]</a></font></u></b></td><tr>
 <tr><td><a href=map.php?show=human><img src=0.png width=15></td><td><b><font color=red>[COLOR="Red"]Humanos[/COLOR]</font></b></a></td><tr>
 <tr><td><a href=map.php?show=elf><img src=1.png width=15></td><td><b><font color=yellow>[COLOR="Red"]Elfos[/COLOR]</font></b></a></td><tr>
 <tr><td><a href=map.php?show=darkelf><img src=2.png width=15></td><td><b><font color=blue>[COLOR="Red"]Elfos Oscuros[/COLOR]</font></b></a></td><tr>
 <tr><td><a href=map.php?show=orc><img src=3.png width=15></td><td><b><font color=green>[COLOR="Red"]Orcos[/COLOR]</font></b></a></td><tr>
 <tr><td><a href=map.php?show=dwarf><img src=4.png width=15></td><td><b><font color=cyan>[COLOR="Red"]Enanos[/COLOR]</font></b></a></td></tr>
 <tr><td><a href=map.php?show=gm><img src=6.png width=15></td><td><b><font color=purple>GMs</font></b></a></td></tr>
</table></div>';
echo '<div style=position:absolute;top:185px;left:120px><table>
<tr><td>
<form action="map.php?show=search" method=post>
<INPUT type=username name=value size="20"></td></tr><tr><td><INPUT type=submit value="Search Chars">
</form>
</td></tr>
</table></div>';
"<!-- Autor Unknown, Modificaci
 
Status
Not open for further replies.
Back