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!

RaiderZ Setup Tutorial

Banned
Banned
Joined
Oct 20, 2006
Messages
3,245
Reaction score
1,652
**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 duck 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 Ducking 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.
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Mar 6, 2010
Messages
90
Reaction score
3
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
Top