[Development] Custom MU Core Template
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
http://i152.photobucket.com/albums/s...ergymucore.png
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!
re: [Development] Custom MU Core Template
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.
re: [Development] Custom MU Core Template
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 Code:
<?
$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 Code:
<?
$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 Code:
<?
$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 Code:
<?
$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 Code:
<?
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 Code:
<?
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 Code:
<?if(isset($page_title)){ echo ''.$page_title .'';}else{ echo '';}?>
Server Time
PHP Code:
<?php echo date(" H:i:s"); ?> <?php echo date("d,M Y"); ?>
re: [Development] Custom MU Core Template
Quote:
Originally Posted by
KingLordMaster
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?
Quote:
Originally Posted by
FCV2005
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 Code:
<?
$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 Code:
<?
$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 Code:
<?
$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 Code:
<?
$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 Code:
<?
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 Code:
<?
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 Code:
<?if(isset($page_title)){ echo ''.$page_title .'';}else{ echo '';}?>
Server Time
PHP Code:
<?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?
re: [Development] Custom MU Core Template
for top 1 player you need to change 10->1
PHP Code:
<?
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];?>
<?
}
?>
re: [Development] Custom MU Core Template
re: [Development] Custom MU Core Template
Te,plate to be release on the 2nd week of December :)
re: [Development] Custom MU Core Template
Quote:
Originally Posted by
ScriptKid
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
http://i152.photobucket.com/albums/s...ergymucore.png
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 ?
re: [Development] Custom MU Core Template
this includes PSD of the whole background
re: [Development] Custom MU Core Template
try to change the other bars and panels to a glossy or metallic texture..
re: [Development] Custom MU Core Template
This Project is Still Progress ? Or NoT?
re: [Development] Custom MU Core Template
yup sorry about the delay, been busy :)
re: [Development] Custom MU Core Template
template release in the release section.
re: [Development] Custom MU Core Template
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
re: [Development] Custom MU Core Template
sir fcv can you make some code of the GM online in a template?
re: [Development] Custom MU Core Template
Quote:
Originally Posted by
FCV2005
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 Code:
<?
$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 Code:
<?
$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 Code:
<?
$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 Code:
<?
$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 Code:
<?
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 Code:
<?
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 Code:
<?if(isset($page_title)){ echo ''.$page_title .'';}else{ echo '';}?>
Server Time
PHP Code:
<?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