- 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]
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]
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]
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'");
Code:
$query = mssql_query("Select class,LevelUpPoint,Strength,Dexterity,Vitality,Energy From Character where name='$character'");
Code:
$a = mssql_query("Update Character set LevelUpPoint='$newleveluppoints',Strength='$strengthnew',Dexterity='$agilitynew',Vitality='$vitalitynew',Energy='$energynew',LeaderShip='$commandnew' where name='$character'");
Code:
$a = mssql_query("Update Character set LevelUpPoint='$newleveluppoints',Strength='$strengthnew',Dexterity='$agilitynew',Vitality='$vitalitynew',Energy='$energynew'where name='$character'");
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'");
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'");
[/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
Attachments
Last edited: