Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

RaiderZ Setup Tutorial

Joined
Oct 20, 2006
Messages
3,243
Reaction score
1,652
Location
Jolly England
**THIS IS A REPOST**

Welcome to the first tutorial dedicated to RaiderZ​


Please refer to this thread for more indepth tutorial.

http://forum.ragezone.com/f699/raide...-setup-757674/

This is an extremely simple game to set up and have ready to go live with, I will be leaving out steps and just telling you to do basic things that you SHOULD be able to do if you have ever ran a private server in the past.



Ok, so you got your files, now what the fuck do you do?

Well, let's start out with giving you the proper order in which you will have to run the files further down the road.

Master
Login
app
game
game2

NOTE: BUGFIX AHEAD OF TIME! copy-paste the gamesever 2 folder so you have two copies of it, and replace the 2nd copy with the configs from gameserver 1. The first gameserver is prone to crashes and plenty of LUA errors. (No fucking clue why)

So now you should have 6 folders.

MasterServer
LoginServer
AppServer
GameServer (useless but keep it around for archival/developmental reasons)
Gameserver 2
Gameserver 2 Copy (Really it's just GameServer 1.)


Now that you have the folders and files set up and ready to go, let's do our database work shall we?

You will need to install MSSQL server 2008 and I highly recommend using the management studio with that so you can import database .BAK's easier.

blah blah blah import the 3 databases blah blah you know how to do this if you don't google it.

Now, you need to setup a THIRTY-TWO BIT ODBC connection. Key word is 32bit so if you're on a 64bit OS make sure you run odbcad32.exe


EDIT: HERES PROPER PICTURES FOR THE ODBC SINCE YOU KIDS HAVE DOWNS SYNDROME

TtHp8 - RaiderZ Setup Tutorial - RaGEZONE Forums

hxypW - RaiderZ Setup Tutorial - RaGEZONE Forums

jmVk7 - RaiderZ Setup Tutorial - RaGEZONE Forums


Don't mind the TY-PC long story, my name really is Dawson.

You will set up ONE connection, choose no master database and make sure the driver you choose is "SQL Native Client"

Example of a good config and what you put in each specifically

Code:
; MasterServer server.ini

[SERVER_INFO]
// dont touch any of this.
NAME = "MasterServer"
SERVER_ID = 100
WORLD_ID = 1
ODBC = "SQL Native Client"
SOCKET_POOL_SIZE = 100
SERVER_MODE = 0

[CONFIG]
// can change but no point to
PORT = 7500


[ACCOUNTDB]
SERVER = "RAGEZONE\SQLEXPRESS" // update for your MSSQL server info (can use remote connections if you want to use multi boxes)
DATABASE = "RZ_ACCOUNTDB" // Accounts database name
USERNAME = "ragezone"
PASSWORD = "rageonze"

[DB]
SERVER = "RAGEZONE\SQLEXPRESS" // update for your MSSQL server info (can use remote connections if you want to use multi boxes)
DATABASE = "RZ_GAMEDB" // Games database name
USERNAME = "ragezone"
PASSWORD = "rageonze"

[LOGDB]
SERVER = "RAGEZONE\SQLEXPRESS" // update for your MSSQL server info (can use remote connections if you want to use multi boxes)
DATABASE = "RZ_LOGDB" // Logs database name
USERNAME = "ragezone"
PASSWORD = "rageonze"

// dont touch below this.

[PATH]
SYSTEM = "system"
FIELD = "field"

[LOG]
LOG_PATH = "log"
LOG_LEVEL = 1
From there... your on your own on how to customize/change things for now. best of luck with your servers guys.
 
i'm having problem here, in the connection with mssql:

Show this in log
------------------------------------------------------------------------------
-- Logging Start (04/25/13 00:12:48)
------------------------------------------------------------------------------
00:12:48 - "D:\Server RaiderZ\AppServer\AppServer.exe" 00:12:48 - Start application without service mode
00:12:48 - application_commandline : "D:\Server RaiderZ\AppServer\AppServer.exe"
00:12:48 - Server Socket Opened. (Port = 7502)
[e] 00:12:48 - Init GameDB fail.
00:12:48 - Can't Connect To DBMS
[e] 00:12:48 - Failed! InitDB
[e] 00:12:48 - Server Init Failed: 1: DB에 연결할 수 없음
00:12:49 - Server Closed
 
Back