• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

L2J [Share] L2C6Map Functional

Status
Not open for further replies.
Junior Spellweaver
Joined
Jan 21, 2006
Messages
171
Reaction score
0
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

You must be registered for see attachments list
Last edited:
Master Summoner
Joined
Dec 28, 2005
Messages
544
Reaction score
0
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
 
Newbie Spellweaver
Joined
Jan 1, 2007
Messages
32
Reaction score
0
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?
 
Elite Diviner
Joined
Feb 10, 2006
Messages
405
Reaction score
0
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. ;)
 
Junior Spellweaver
Joined
Jan 21, 2006
Messages
171
Reaction score
0
First Post Edited

The first post have been edited!
 
Junior Spellweaver
Joined
Jan 21, 2006
Messages
171
Reaction score
0
C6 English LiveMap

The first post have already been edited!!!
 
Infinity/Divinity Dev
Banned
Joined
Jun 7, 2004
Messages
759
Reaction score
0
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]
 
Junior Spellweaver
Joined
Jan 21, 2006
Messages
171
Reaction score
0
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
Top