Jump to content

Recommended Posts

Posted

=======================1st update of the post============================

-added clan name

-top online now show time not timestamp

-added raidboss status

Download links:

rbstatus.php

toponline.php

toppk.php

toppvp.php

 

ps:this are my first lines of php:D

 

==========================Original post=================================

Download links :

 

toponline.php

toppk.php

toppvp.php

 

 

Guild :

 

I will take top pvp and explain how to use it:

 

1) you will need a php server: easyphp for windows and lamp for linux will work perfectly

2) locate you www folder and paste the page.php there

3) open the page.php and start the  configuration:

 

 

 

$dbuser="root"; <= replace root with your mysql username

$dbpass="123123"; <= replace with mysql user's password

$dbname="l2jdb"; <= your gameserver data base

$NumberOfResults="20"; <= replace 20 with the number of results you want

 

4) test it!

 

like it is set now it will generate a html page with black background and a table in a middle. I don't host my site on the same pc like the server . On my site i've made iframes and just put the src="serverip/toppvp.php" and will work perfectly

 

 

       Now i will explain how this works:

 

 

$dbuser="root";
$dbpass="123123";
$dbname="l2jdb";  //the name of the database
$NumberOfResults="20";//	
$chandle = mysql_connect("localhost", $dbuser, $dbpass) or die("Connection Failure to Database"); 

this  connects the php server to mysql server if failds returns the message("xxxx")

 

mysql_select_db($dbname, $chandle)

 

selects the db you will work from the connection created above

 

$sql="select characters.char_name,characters.pvpkills,char_templates.ClassName,characters.online from characters,char_templates where characters.classid=char_templates.Classid order by characters.pvpkills DESC LIMIT ".$NumberOfResults;

 

 

For sql users this is clear but i will explain for others:

 

This scripts "select" the char_name from table characters and pvpkills from table character  and classname from char_templates

 

After from it declares the tables it will work on so : characters and char_templates

 

But it will select only the records where char_template id is the same with char...so it will return only the baseclass name

 

it will order by pvp kills so you will get only top recors

 

And finaly the maximum limit of results will be 20

 

 

 

echo"<html><head></head><body bgcolor='#000000' style='color:rgb(200,200,200)'>";
echo "<table  border='2' align=center width=500>";
echo "<tr><th>Nr.</th><th>Name</th><th>Pvp Kills</th><th>Main class</th><th>Status</th></tr>\n";

 

generates the 1st part of the html page and the begining of the table for records

 

$nr=1;
if ($result=mysql_query($sql)or die("Bed Sql syntax")) {
 while ($row=mysql_fetch_row($result)) {
 echo "<tr><td align=center>".$nr."</td>";
 $nr++;
   echo "<td align=center>".$row[0]."</td>";
   echo "<td align=center>".$row[1]."</td>";
echo "<td align=center>".$row[2]."</td>";
if($row[3])
{echo "<td align=center style='color:rgb(0,255,0)'>Online</td></tr>\n"; }
 else{echo "<td align=center style='color:rgb(255,0,0)'>Offline</td></tr>\n";}
 }
} else {
 echo "<!-- SQL Error ".mysql_error()." -->";
}

 

if the result of executing "mysql_query($sql)" dosn't faild , while there is a other line in the result creastes a new line in table and if there is a error report it,,,

 

echo "</table></body></html>";

finish the table and the html page

 

 

 

 

(i haven't sleep 3 h in the last 2 days...so don't kill me if my language is broken)

 

 

 

Posted

Thanks for your share Hardstyle but you could make it easier by uploading your 3 php files in a .rar..Thanks!

i didn't put them in 1 rar cuz i want 2 make more and update this post...not 2 spam mxc with new posts...and it will be easyer for ppl to take what they want

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Do you have local domestic purchasing channels available? Could you also tell me the specific price of the source code? Is there anyone who will share the complete L2OFF source code free of charge?
    • I am looking to purchase complete compilable native C++ L2OFF source for Lineage 2 Freya or High Five.   My budget is 500 EUR to 2000 EUR, price depends on package completeness and bug fixes.   Requirements: 1. Pure PTS C++ source, NOT L2J Java server. 2.Full project without missing core files. 3.Prefer packages with HFdll extender, hAuthD login server and Premium mall system. 4.Need test build / test server verification before payment. 5.Only accept deals with forum platform escrow guarantee, private direct transfer without platform escrow is not acceptable. 6.Accept USDT, SEPA transfer. Serious sellers send PM with full details, screenshots and final price. Scammers will be reported.
    • The best part is the "personal use". Give me full source files ill do work on my pc never open any server to earn cash and ill also claim i won't make server for cash.
    • Update: - Added Google OAuth API. - Added WhatsApp API (via Meta). - Added multiple templates (34 layouts in total). - Added CSS protections. - Added new email/WhatsApp confirmation page. - Added bcrypt encryption for aCis 409. - Added support for L2jMobius / Lucera2. - Added charts for registrations/visits by country. - Added limits on confirmation resends. Fixes: - Fixed Russian language system. - Fixed Stripe checkouts.  
    • USA DL — THE DOCUMENT THAT STILL BREAKS EVERYONE A lot of people still think American driver’s licenses are “just plastic with a photo”. In reality, even in 2026 it remains one of the hardest documents to render properly. The difficulty isn’t in the picture. It’s in how everything works together. ▪ What actually makes it so complicated: - multi-level holograms and UV elements that behave differently under various lighting - microtext and fine lines that immediately give away fakes under magnification - specific material texture and laminate that can’t be guessed or improvised - biometric features and hidden elements that are checked at the border and during verification The usual approach almost always fails here. 🧠 USA DL is still one of those documents where “looks similar” doesn’t mean “actually works”. Want your American driving license to not just look decent, but genuinely pass checks? Write to us in DMs — we’ll review your case and render it so the document doesn’t let you down when it matters most. › TG: @mustang_service_ms ( https:// t.me/ mustang_service_ms ) › Channel: Mustang Service ( https:// t.me/ +JPpJCETg-xM1NjNl ) #documents #drawing #USA #editing #DL
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..