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!

[Development] Custom MU Core Template

Joined
Oct 2, 2006
Messages
1,562
Reaction score
372
Hello RZ Community

As the title says i'm currently Developing a new template for MU Core 1.0.8
and this will be release in the release section. This template i created is already used by 1 MU Owner powered by IGCN

1 Screenshot

ScriptKid - [Development] Custom MU Core Template - RaGEZONE Forums


It's 70% Done.

With Online Count (with Bars)
Server Stats (Online and Offline)
Number of Accounts
Number of Guilds
Number of Characters

Please suggest if you have anything in mind :)

Thanks!
 
Last edited:
faronnia.com
Loyal Member
Joined
Aug 12, 2007
Messages
1,200
Reaction score
441
A vote reward system would be pretty cool with MuCore 1.0.8 . I tried a few alternative vote reward systems, but they weren't compatible with the PHP version which this web requires (5.3.8).

Good release, awesome template.
 
Joined
Mar 17, 2007
Messages
737
Reaction score
266
i have here some scripts if u want for mucore , if u want more i will post here !
that i use in my own templates ....



Accounts

PHP:
<?
$statistics_accounts=mssql_query("SELECT count(*) memb___id FROM MuOnline.dbo.MEMB_INFO");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['accounts_reults']=$row['memb___id'];
?>
<?=$core['accounts_reults'];?>
<?

}
?>


Characters

PHP:
<?
$statistics_accounts=mssql_query("SELECT count(*) AccountID FROM MuOnline.dbo.Character");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['character_reults']=$row['AccountID'];
?>
                <?=$core['character_reults'];?>
                <?

}
?>


Guilds

PHP:
 <?
$statistics_accounts=mssql_query("SELECT count(*) G_Name FROM MuOnline.dbo.Guild");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['guild_reults']=$row['G_Name'];
?>
 <?=$core['guild_reults'];?>
                <?

}
?>


Online Characters
PHP:
 <?
$statistics_players=mssql_query("SELECT count(*) ConnectStat FROM MuOnline.dbo.MEMB_STAT WHERE ConnectStat='1'");
while($row=mssql_fetch_assoc($statistics_players)){
$core['config']['statistics_results']=$row['ConnectStat'];
?>
                <?=$core['config']['statistics_results'];?>
                <?

}
?>


Top 10 Characters
PHP:
<?
include("config.php");
$cnn=@mssql_connect($core['db_host'],$core['db_user'],$core['db_password']) or die('Error al conectar al sql');
$db=@mssql_select_db($core['db_name'],$cnn) or die('Error al conectar la database'); 
$query=mssql_query("select TOP 10 * from MuOnline.dbo.Character Where ctlcode !='32' and ctlcode !='8' order by Resets desc, cLevel desc");
while($row=mssql_fetch_assoc($query)){
$namez=$row['Name'];
$rst[37]=$row['Resets'];
$resetsz=$row['Resets'];

?>
                                                                       
                          <?=++$count2;?> 
                          <?=$namez;?>
                          <?=$rst[37];?>
<?

}
?>


Guilds
PHP:
<?
include("config.php");
$cnn=@mssql_connect($core['db_host'],$core['db_user'],$core['db_password']) or die('Error al conectar al sql');
$db=@mssql_select_db($core['db_name'],$cnn) or die('Error al conectar la database'); 
$Guild=mssql_query("select TOP 10 * from MuOnline.dbo.guild order by G_Score desc");
while($row=mssql_fetch_assoc($Guild)){
$G_Namez=$row['G_Name'];
$G_Markz=$row['G_Mark'];
$G_Scorez=$row['G_Score'];
$Resetsz=$row['Resets'];
$logo=urlencode(bin2hex($G_Markz));
?>

    <?=++$count1;?>
    <?=$G_Namez;?>
    <?=$G_Scorez;?><img src="get.php?aL=<?=$logo;?>.png" alt="" width="15" height="15">
  <?

}
?>


Title Page
PHP:
<?if(isset($page_title)){    echo ''.$page_title .'';}else{    echo '';}?>


Server Time
PHP:
<?php echo date(" H:i:s"); ?> <?php echo date("d,M Y"); ?>
 
Joined
Oct 2, 2006
Messages
1,562
Reaction score
372
A vote reward system would be pretty cool with MuCore 1.0.8 . I tried a few alternative vote reward systems, but they weren't compatible with the PHP version which this web requires (5.3.8).

Good release, awesome template.

I think there is already a Vote Reward System by Bizarre Minds?

i have here some scripts if u want for mucore , if u want more i will post here !
that i use in my own templates ....



Accounts

PHP:
<?
$statistics_accounts=mssql_query("SELECT count(*) memb___id FROM MuOnline.dbo.MEMB_INFO");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['accounts_reults']=$row['memb___id'];
?>
<?=$core['accounts_reults'];?>
<?

}
?>


Characters

PHP:
<?
$statistics_accounts=mssql_query("SELECT count(*) AccountID FROM MuOnline.dbo.Character");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['character_reults']=$row['AccountID'];
?>
                <?=$core['character_reults'];?>
                <?

}
?>


Guilds

PHP:
 <?
$statistics_accounts=mssql_query("SELECT count(*) G_Name FROM MuOnline.dbo.Guild");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['guild_reults']=$row['G_Name'];
?>
 <?=$core['guild_reults'];?>
                <?

}
?>


Online Characters
PHP:
 <?
$statistics_players=mssql_query("SELECT count(*) ConnectStat FROM MuOnline.dbo.MEMB_STAT WHERE ConnectStat='1'");
while($row=mssql_fetch_assoc($statistics_players)){
$core['config']['statistics_results']=$row['ConnectStat'];
?>
                <?=$core['config']['statistics_results'];?>
                <?

}
?>


Top 10 Characters
PHP:
<?
include("config.php");
$cnn=@mssql_connect($core['db_host'],$core['db_user'],$core['db_password']) or die('Error al conectar al sql');
$db=@mssql_select_db($core['db_name'],$cnn) or die('Error al conectar la database'); 
$query=mssql_query("select TOP 10 * from MuOnline.dbo.Character Where ctlcode !='32' and ctlcode !='8' order by Resets desc, cLevel desc");
while($row=mssql_fetch_assoc($query)){
$namez=$row['Name'];
$rst[37]=$row['Resets'];
$resetsz=$row['Resets'];

?>
                                                                       
                          <?=++$count2;?> 
                          <?=$namez;?>
                          <?=$rst[37];?>
<?

}
?>


Guilds
PHP:
<?
include("config.php");
$cnn=@mssql_connect($core['db_host'],$core['db_user'],$core['db_password']) or die('Error al conectar al sql');
$db=@mssql_select_db($core['db_name'],$cnn) or die('Error al conectar la database'); 
$Guild=mssql_query("select TOP 10 * from MuOnline.dbo.guild order by G_Score desc");
while($row=mssql_fetch_assoc($Guild)){
$G_Namez=$row['G_Name'];
$G_Markz=$row['G_Mark'];
$G_Scorez=$row['G_Score'];
$Resetsz=$row['Resets'];
$logo=urlencode(bin2hex($G_Markz));
?>

    <?=++$count1;?>
    <?=$G_Namez;?>
    <?=$G_Scorez;?><img src="get.php?aL=<?=$logo;?>.png" alt="" width="15" height="15">
  <?

}
?>


Title Page
PHP:
<?if(isset($page_title)){    echo ''.$page_title .'';}else{    echo '';}?>


Server Time
PHP:
<?php echo date(" H:i:s"); ?> <?php echo date("d,M Y"); ?>

Thanks FCV. I think i got the Accounts, Online Players, Character and Guild counts there. Maybe a Top 1 Player will do? can you post some more codes?
 
Joined
Mar 17, 2007
Messages
737
Reaction score
266
for top 1 player you need to change 10->1

PHP:
 <?
include("config.php");
$cnn=@mssql_connect($core['db_host'],$core['db_user'],$core['db_password']) or die('Error al conectar al sql');
$db=@mssql_select_db($core['db_name'],$cnn) or die('Error al conectar la database'); 
$query=mssql_query("select TOP 1 * from MuOnline.dbo.Character Where ctlcode !='32' and ctlcode !='8' order by Resets desc, cLevel desc");
while($row=mssql_fetch_assoc($query)){
$namez=$row['Name'];
$rst[37]=$row['Resets'];
$resetsz=$row['Resets'];

?>
                                                                       
                          <?=++$count2;?> 
                          <?=$namez;?>
                          <?=$rst[37];?>
<?

}
?>
 
Junior Spellweaver
Joined
Jun 24, 2011
Messages
198
Reaction score
10
Hello RZ Community

As the title says i'm currently Developing a new template for MU Core 1.0.8
and this will be release in the release section. This template i created is already used by 1 MU Owner powered by IGCN

1 Screenshot

ScriptKid - [Development] Custom MU Core Template - RaGEZONE Forums


It's 70% Done.

With Online Count (with Bars)
Server Stats (Online and Offline)
Number of Accounts
Number of Guilds
Number of Characters

Please suggest if you have anything in mind :)

Thanks!

this will be included the PSD ? files to edit the header and logo ?
 
Junior Spellweaver
Joined
Apr 25, 2012
Messages
126
Reaction score
5
try to change the other bars and panels to a glossy or metallic texture..
 
Junior Spellweaver
Joined
Jun 24, 2011
Messages
198
Reaction score
10
This Project is Still Progress ? Or NoT?
 
Banned
Banned
Joined
Dec 28, 2009
Messages
315
Reaction score
94
What more system/script are you planning to add?

Suggestion:
*Transferal System
*In Website-Webshop
*Online Trade Time
*In Game /post message to be displayed on Website
*Event counter Timer
 
-( . ) ( . )-
Loyal Member
Joined
Mar 28, 2012
Messages
1,356
Reaction score
68
sir fcv can you make some code of the GM online in a template?
 
Newbie Spellweaver
Joined
Sep 11, 2018
Messages
29
Reaction score
1
i have here some scripts if u want for mucore , if u want more i will post here !
that i use in my own templates ....



Accounts

PHP:
<?
$statistics_accounts=mssql_query("SELECT count(*) memb___id FROM MuOnline.dbo.MEMB_INFO");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['accounts_reults']=$row['memb___id'];
?>
<?=$core['accounts_reults'];?>
<?

}
?>


Characters

PHP:
<?
$statistics_accounts=mssql_query("SELECT count(*) AccountID FROM MuOnline.dbo.Character");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['character_reults']=$row['AccountID'];
?>
                <?=$core['character_reults'];?>
                <?

}
?>


Guilds

PHP:
 <?
$statistics_accounts=mssql_query("SELECT count(*) G_Name FROM MuOnline.dbo.Guild");
while($row=mssql_fetch_assoc($statistics_accounts)){
$core['guild_reults']=$row['G_Name'];
?>
 <?=$core['guild_reults'];?>
                <?

}
?>


Online Characters
PHP:
 <?
$statistics_players=mssql_query("SELECT count(*) ConnectStat FROM MuOnline.dbo.MEMB_STAT WHERE ConnectStat='1'");
while($row=mssql_fetch_assoc($statistics_players)){
$core['config']['statistics_results']=$row['ConnectStat'];
?>
                <?=$core['config']['statistics_results'];?>
                <?

}
?>


Top 10 Characters
PHP:
<?
include("config.php");
$cnn=@mssql_connect($core['db_host'],$core['db_user'],$core['db_password']) or die('Error al conectar al sql');
$db=@mssql_select_db($core['db_name'],$cnn) or die('Error al conectar la database'); 
$query=mssql_query("select TOP 10 * from MuOnline.dbo.Character Where ctlcode !='32' and ctlcode !='8' order by Resets desc, cLevel desc");
while($row=mssql_fetch_assoc($query)){
$namez=$row['Name'];
$rst[37]=$row['Resets'];
$resetsz=$row['Resets'];

?>
                                                                       
                          <?=++$count2;?> 
                          <?=$namez;?>
                          <?=$rst[37];?>
<?

}
?>


Guilds
PHP:
<?
include("config.php");
$cnn=@mssql_connect($core['db_host'],$core['db_user'],$core['db_password']) or die('Error al conectar al sql');
$db=@mssql_select_db($core['db_name'],$cnn) or die('Error al conectar la database'); 
$Guild=mssql_query("select TOP 10 * from MuOnline.dbo.guild order by G_Score desc");
while($row=mssql_fetch_assoc($Guild)){
$G_Namez=$row['G_Name'];
$G_Markz=$row['G_Mark'];
$G_Scorez=$row['G_Score'];
$Resetsz=$row['Resets'];
$logo=urlencode(bin2hex($G_Markz));
?>

    <?=++$count1;?>
    <?=$G_Namez;?>
    <?=$G_Scorez;?><img src="get.php?aL=<?=$logo;?>.png" alt="" width="15" height="15">
  <?

}
?>


Title Page
PHP:
<?if(isset($page_title)){    echo ''.$page_title .'';}else{    echo '';}?>


Server Time
PHP:
<?php echo date(" H:i:s"); ?> <?php echo date("d,M Y"); ?>

nothing works, only server time
the difference that i see its the "echo" thing..maybe thats why its not working?
PS : i add them on index.php in template
 
Back
Top