[Release] OpenMu Web Clone [Update 0.6]

eXTenTioN

New Member
Joined
Jul 13, 2009
Messages
557
Reaction score
149
Code:
[CENTER]Register Module-100%
News Module-100%
Downloads Module-100%
Rankings Module-100%
Online Users Module-100%
Vote Reward Module-100%
Change Password Module-100%
Add Stats Module-100%
Clear PK Status Module-100%
Warp Character Module-100%
Reset Character Module-100%
Lost Password Module-100%
Grand Reset module-100%
Detailed Config-100%
WebSite Secure-100%
[/CENTER]
Installation Guide:
Code:
[CENTER] Open the file "config.php"
Set your SQL Server Password: $password = "SQL Password";
Open the "query analyzer"(Start->All Programs->Microsoft Sql  Server->Query Analyzer)
Write your SQL Server Password on the password field and put the codes  from "Query" into the field for the query codes!
[/CENTER]


Configuration Guide:

Code:
[CENTER] Open the file "config.php"
$password = ".."; - Here you must write your SQL Server Password
$ip = ".."; - Here you must write your IP Address
$port = ".."; - Here you must write your GameServer Port
$title = ".."; - Here you must write your WebSite Title
$servername = ".."; - Here you must write your ServerName
$version = ".."; - Here you must write your Server Version
$experiance = ".."; - Here you must write your Server Experiance rate
$drop = ".."; - Here you must write your server Drop Rate
$forum = ".."; - Here you must write your Forum address
$webshop = ".."; - Here you must write your WebShop address
$votehours = ".."; - Here you must write your Vote Reward Module vote  time
$votecredits = ".."; - Here you must write your Vote Reward Credits  reward
$votelink = ".."; - Here you must write your Vote Reward Link
$md5 = ".."; - Here you must write your Register MD5 (0-off , 1-on)
$pkmoney = ".."; - Here you must write your pkclear money
$resetmoney = ".."; - Here you must write your reset money
$maxstats = ".."; - Here you must write your maxstats points
$resettype = ".."; - Here you must write your reset type(keep(for  keeping the points) , bonus(for bonus points) , reset(for reset stats)
$resetlevel = ".."; - Here you must write your reset level
$resetpoints = ".."; - Here you must write your reset points
$resetclearinv = ".."; - Here you must write if the inventory cleares  when you reset character (no-disable , yes-enable)
$resetclearskill = ".."; - Here you must write if the skills cleares  when you reset character (no-disable , yes-enable)
$maxresets = ".."; - Here you must write your resets limit
$grandreset = "1"; - Here you must write your grand reset module  enable/disable (1(enable) , 0(disable))
$grandresetcredits = "10";  - Here you must write your grand reset  credits
[/CENTER]
Query
Code:
[CENTER] Open the Query Analyzer (Start -> All Programs -> Microsoft Sql  Server -> Query Analyzer
Vote Reward:
CREATE TABLE [votereward] (
    [memb___id] [varchar] (255) COLLATE Chinese_PRC_CI_AS NOT NULL ,
    [time] [bigint] NOT NULL ,
) ON [PRIMARY]
GO

Grand Reset:
alter table character add GrResets int not null default 0[/CENTER]
Guide For Old Versions:

Code:
[CENTER] Open the file "includes/modules.class.php"
Search for this

First:
[CODE]$query = mssql_query("Select  class,LevelUpPoint,Strength,Dexterity,Vitality,Energy,LeaderShip From  Character where name='$character'");
Replace With
Code:
$query = mssql_query("Select  class,LevelUpPoint,Strength,Dexterity,Vitality,Energy From Character  where name='$character'");
Second:
Code:
$a = mssql_query("Update Character set  LevelUpPoint='$newleveluppoints',Strength='$strengthnew',Dexterity='$agilitynew',Vitality='$vitalitynew',Energy='$energynew',LeaderShip='$commandnew'  where name='$character'");
Replace With
Code:
$a = mssql_query("Update Character set  LevelUpPoint='$newleveluppoints',Strength='$strengthnew',Dexterity='$agilitynew',Vitality='$vitalitynew',Energy='$energynew'where  name='$character'");
Third:
Code:
$a = mssql_query("Update Character Set  Strength='25',Dexterity='25',Vitality='25',Energy='25',LeaderShip='25',Money='$newmoney',clevel='1',Experience='0',Resets='$newresets',LevelUpPoint='$newpoints'  where name='$character'");
Replace With
Code:
$a = mssql_query("Update Character Set  Strength='25',Dexterity='25',Vitality='25',Energy='25'',Money='$newmoney',clevel='1',Experience='0',Resets='$newresets',LevelUpPoint='$newpoints'  where name='$character'");
[/CENTER]
[/CODE] Updates:
Code:
[COLOR=Red][B]Update 0.1[/B][/COLOR]
Files:
modules/stats.php
modules/rankings.php
config.php
includes/modules.class.php

Info:
Fixed Status on rankings
Fixed some links on the statistics
Added Ip configoration and port configoration on the config file 
Some fixes on the core

[B][COLOR=Red]Update 0.2[/COLOR][/B]
Files:
includes/modules.class.php
others/footer.php

Info:
Fixed Reset Module
Fixed Credits

[B][COLOR=Red]Update 0.3[/COLOR][/B]
Files:
includes/modules.class.php
others/menu.php
others/menu2.php
config.php
New Files:
modules/vote.php
Info:
Added Vote Reward System

[B][COLOR=Red]Update 0.4[/COLOR][/B]
Files:
includes/modules.class.php
others/menu.php
others/menu2.php
config.php
modules/options.php
modules/rankings.php
modules/rankings/players.php

New Files:
modules/grand.php
modules/index.php
modules/rankings/index.php
includes/index.php
includes/javascript/index.php
images/index.php
logs/index.php
others/index.php

Info:
Added Grand Reset Module
Added index.php in all folders

[B][COLOR=Red]Update 0.4.1[/COLOR][/B]
Files:
includes/modules.class.php

Info:
Fixed Grand Reset Module

[B][COLOR=Red]Update 0.4.2[/COLOR][/B]
Files:
others/footer.php

Info:
Fixed Credits

[B][COLOR=Red]Update 0.4.3[/COLOR][/B]
Files:
includes/modules.class.php

Info:
Fixed Grand ResetCredits query

[B][COLOR=Red]Update 0.4.4[/COLOR][/B]
Files:
includes/modules.class.php

Info:
Fixed Vote Reward Credits query

[B][COLOR=Red]Update 0.5[/COLOR][/B]
Files:
includes/modules.class.php
modules/online.php

Info:
Fixed Online Players paging
Fixed LostPassword bug

[B][COLOR=Red]Update 0.6[/COLOR][/B]
Files:
modules/rankings/players.php

Info:
Fixed Website bug in FireFox 4
Credits: Bupyc, MeMoS & eXTenTioN (for clone)
 

Attachments

  • OpenMu Web Update 0.6.rar
    558.4 KB · Views: 557
Last edited:
некои ако може да направи Golden Archer Ranking мн ше сам му благодарен
 
ето ти я

PHP:
<center>
<?PHP 
require('config.php');
$get_stones = ("Select AccountID,StoneCount from T_BLOOD_CASTLE order by StoneCount desc");

echo '
<table class="sort-table" id="table-1" height=0 border="0" cellpadding="4" cellspacing="0">                
<thead><tr>
<td width=1 aling=left>#</td>
<td width=50 aling=left>Account</td>
<td width=50 aling=left>Stones</td>
</tr></thead>
';
for($i=0;$i < fetch_num_rows($get_stones);++$i) 
       {
$row = mssql_fetch_row($getstones);
$rank = $i+1;

echo "<tbody><tr>
<td align=left>$rank</td>
<td align=left><div class='link_rankings'>$row[0]</div></td>
<td align=left>$row[1]</td>
</tr></tbody>";
}
?>
</TABLE>
</center>
 
системата за trade online hours има ли я вътре ? както в Опен му ?
 
давами
Fatal error: Call to undefined function fetch_num_rows() in C:\xampp\htdocs\modules\stone.php on line 14
# Account Stones
 
нети разпознава функцията :) ще го оправа по късно :)
 
Update 0.6
Files:
modules/rankings/players.php

Info:
Fixed Website bug in FireFox 4
 
  • Like
Reactions: vankata222
ако ти се занимава направи един нов design
 
rankings problem (speechless) help plss

playerr.jpg
 
пфф така и няма един хубав сайт :s и няма да е лошо да промените името на друго
 
пфф така и няма един хубав сайт :s и няма да е лошо да промените името на друго

Сифте.
Също така и безплатни обяди няма.
 
rankings problem (speechless) help plss

playerr.jpg

fix with
alter table character add GrResets int not null default 0
alter table character add Resets int not null default 0

run this scripts in sql query analyzer
 
register problem:( i test it with md 5 and without md 5 :( but i cant register...

i have s 3 ep 2 :( please help me