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!

GrandChase Season 2 Server

Status
Not open for further replies.
Joined
Aug 14, 2009
Messages
1,097
Reaction score
134
I'll update this later. Probably in another post that works for SQL 2012.
I found that this server doesn't work properly if you're running the server on the same computer as the client. Try a virtual machine.

Files:

SQL Server 2005 x86/x64:
...or...
SQL Server 2008 x86:
...or...
SQL Server 2008 x64:

Databases:

The log database:
Password: WiNdOwSxP-Db0ByHeHeTrI
Use SQL Server 2005 or 2008. I use 2008.

Server files that are "desbugados":

Extract all of them, and then use and replace the GameServer files in the other "desbugados" ones.

DarkStronge's "even more debugged" files:

main.exe: View attachment main.part04.rarView attachment main.part03.rarView attachment main.part02.rarView attachment main.part01.rar

-------------------------

Configuring the database:

Install SQL Server and the Management Studio*.
*should be included

Here's a hint for the next part: .

Open up a new query, and then type:

Code:
USE [gc]
INSERT INTO [dbo].[ClientChecksum] (ProtocolVer, Checksum, RegDate)
SELECT 321,0x[B]CRC32HERE[/B],CURRENT_TIMESTAMP

...and then execute it.

Now replace everything with:

Code:
SELECT cast(checksum AS bigint) as rtxt FROM dbo.ClientChecksum

...and then copy the result. (the last one)

Put the result in between the parentheses of anything that says "Checksum" in config_server.lua. Only once, though. There should be 2 checksum parts.

-------------------------

Creating a user:

Here's a hint with the MD5 part, again: .

Open up the dbo.users table. (Right click + Edit)

Choose "text string" in and then type in your password in the text box where it says data. Now select MD5 and click calculat

Type in your username in the column that says ID.
Use that MD5 thing as your password.
Change your GP in gamepoint.
Type something random into email.

You're done.

-------------------------

ConnectStatusDB:

Right click + edit.
Delete everything else except the first one.
Edit your server name, and change your server IP to your local IP. (Hint: cmd+ipconfig)

You're done.

-------------------------

msg database:

Open MsgRouterList.
Change your IP.

Open MsgServerList.
Input these:
UserNum 0, IP (your local IP), Port 9300, ProtocolVersion 215

You're done.

-------------------------

ODBC:


Now go into your folders and edit the odbc dsn files with notepad/wordpad.
Edit it. It's self explanitory. Change the "PW" part to your password. Change the "Server" part to your "instance" name. (example: .\SQLEXPRESS or WAFFLE-PC\SQLEXPRESS)

-------------------------

GameServer:

Open config_server.lua.

Change the IPs to your local IP.

-------------------------

Running the server:

Open them up.

-------------------------

Client:

Use the IPU client. It'll be decrypted already. Probably.

Use a hex editor like HxD and then find LoginServerIP. Change the IP after that.

-------------------------

Creating a nickname for your user:

Go into NickNames. It's a table.
Put your info in.

-------------------------

Running the client:

Create a bat file with:

Code:
main.exe __kogstudios_original_service__

...and then run it.

-------------------------

Credits:

hehetri/lucasmf2507 - the sql server 2005 database :D
Kei - the original tutorial
not me - because I leeched this a lot
DarkStronge/iLek - creating the even more debugged files (the "almost everything works" files)
Divine/Divin3 - for allowing this to be released <3
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Aug 14, 2009
Messages
1,097
Reaction score
134
Why? I just decided not to help you anymore because of that. You can't make me delete the links. RZBR is a nice little copy of this website. RaGEZONE is a free forum.
Here are the rules, you should read them: link
7) Do not post two or more times in a row. If you have something to add to your last post then simply edit it. This may be waived if the contents of your post are too much to be allowed in a single post.
 
Newbie Spellweaver
Joined
Mar 9, 2011
Messages
42
Reaction score
1
THANKS MAN!! i got my server to work !!! my dream is true *-* now to rub it in peoples faces on forums :D
really nice tutorial
 
Junior Spellweaver
Joined
Sep 4, 2012
Messages
119
Reaction score
8
im just here to see the download link of mssql 2008 :junglejane:
 
Joined
Feb 28, 2012
Messages
738
Reaction score
65
The client main gives bugtrap error windows 7 64 bit.
Run it as administrator.
The way most games work is the company has an authenticated licences attached to the client, witch will give it administrator purposes without actually having to do it. You have to do it manually by running as administrator instead. The same error happened for Korean Tales Runners client, you would get an xtrap error if you didn't run the client as admin. I don't know if your questions been answered or solved yet by the way.
 
Joined
Aug 14, 2009
Messages
1,097
Reaction score
134
Run it as administrator.
The way most games work is the company has an authenticated licences attached to the client, witch will give it administrator purposes without actually having to do it. You have to do it manually by running as administrator instead. The same error happened for Korean Tales Runners client, you would get an xtrap error if you didn't run the client as admin. I don't know if your questions been answered or solved yet by the way.

Ah, great point! UAC is the problem.
 
Status
Not open for further replies.
Back
Top