Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Adding Golden Archer to 97d +99 - 100% Works

Newbie Spellweaver
Joined
Jul 9, 2014
Messages
25
Reaction score
2
i need the script or some way to track players how much stones they collected, or the archar is able to give back the stones so they can give them back to me ?

thank you great work
 
Last edited:
Newbie Spellweaver
Joined
Jul 9, 2014
Messages
25
Reaction score
2
// SQL Connection set

<?php
$hostname = "VANIRDRUIDES";
$username = "sa";
$password = "infinitflow0";
$dbName = "MuOnline";



// SQL Connection set CHECK

MSSQL_CONNECT($hostname,$username,$password) or DIE("DATABASE FAILED TO RESPOND.");
mssql_select_db($dbName) or DIE("Table unavailable");



// Display the data by query

$query = "SELECT * FROM T_BLOOD_CASTLE";

$result = mssql_query( $query );



// Some Desing

echo '<table>';
echo '<tr><td bgcolor=#ffffff><center><font face=Arial size=2><b>Rank</td><td bgcolor=#ffffff><font face=Arial size=2><b>Character</b></font></td><td bgcolor=#ffffff><font face=Arial size=2><b>Resets</b></font></td>';
for($i=0;$i < 10;++$i){
$top = mssql_fetch_row($result);
echo '<tr><td bgcolor=#ffffff width=40><font face=Arial size=2>';
echo $i + 1;
echo '.</font></td><td bgcolor=#ffffff width=110><FONT SIZE=2 face=Arial font color=blue><b>';
echo $top[0];
echo '</b></font></td><td bgcolor=#ffffff width=30><font face=Arial size=2 font color=gray>';
echo $top[1];
echo'</font></td></tr>';}
echo '</tr></table>';


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

echo '';



//Make sure to close out the database connection

mssql_close();

?>

:) MU Online is a great teacher
 
Last edited:
Newbie Spellweaver
Joined
Jun 18, 2015
Messages
26
Reaction score
0
Hy can help my, i have one problem i adding golden archer in server but i can't click on him, why?
 
Newbie Spellweaver
Joined
Nov 18, 2015
Messages
15
Reaction score
0
help me , Golden Archer does not work, I have to fix guide but it does not work for me . I put 200 stones but not any item.
 
Back
Top