Welcome to RaGEZONE - MMORPG Development Forums (sponsored by tfn.gr) Mark forums read | View Forum Leaders
RaGEZONE - MMORPG Development Forums (sponsored by tfn.gr)

Conquer Releases Discuss, [UPDATED]AuthServer and GameServer (Separed projects) at Conquer Online forum; This is two project, the first is a AuthServer, and secound is the GameServer the GameServer support multiple servers, for ...




Reply
Thread Tools
[UPDATED]AuthServer and GameServer (Separed projects)
 
 
Newbie

Rank: Omicron


Reply With Quote
 
Join Date: Feb 2008
Posts: 8
07-31-2008, 08:42 PM
 
This is two project, the first is a AuthServer, and secound is the GameServer
the GameServer support multiple servers, for exemple, the Official Servers from TQ,
For Open a multiple server you need, create a new .ini file into Servers Folder (/Debug/Servers) of your AuthServer
for make multiple servers you will need change the gameport for the new server
for exemple, if other server use port: 5816, the new server will use port 5817, and the tree server will use por 5818...
You will need input the ports in the Config.ini into your Debug/Config.ini from the GameServer Project
(all server will need a new Debug Folder, just copy it)
for the AuthServer (LoginServer) will need just one folder, but you need create for each server new .ini files
for example. if you want a server whats name is " MyPServer ", you create a MyPServer.ini, and into of this file you put the name
and the port of this Servers
for connect
Run the LoginServer.exe from Debug Folder of your LoginProcject
and Run each GameServer.exe of you have

Sorry for my english, but is all you need, if semeone have a better guide of it, PM me
Work Patch = 5017
Based on Loft + COFuture
Working On the Game Server:
Create Characters,
Login,
Jump,
Walk
you can use one account for all servers what you have
like TQ Servers
BB, Cya, for bugs, tell me

Download
LINK: [Only Registered and Activated Users Can See Links. Click Here To Register...]
 
 
permalink
 

RaGEZONE is proudly sponsored by
 
^For any questions PM me^

Rank: Member


Reply With Quote
 
Join Date: Jun 2008
Location: Right beside you.....
Posts: 242
07-31-2008, 08:56 PM
 
it seems to be a new good work of Junior! - But i get an error when i try to open the GameServer.cproj and LoginServer.cproj
 
 
permalink
 

 
Boredom

Rank: Member


Reply With Quote
 
Join Date: Jun 2006
Location: Northern Ireland
Posts: 552
07-31-2008, 08:56 PM
 
What's different from the last release?
 
 
permalink
 


 
Newbie

Rank: Omicron


Reply With Quote
 
Join Date: Feb 2008
Posts: 8
07-31-2008, 09:36 PM
 
the game server authentication is complete, and others, only you testing too see
 
 
permalink
 

 
The Omega

Rank: New Blood


Reply With Quote
 
Join Date: Jan 2008
Location: Germany
Posts: 116
07-31-2008, 09:45 PM
 
Its to hard work to transfer current sources into This but ty for it :)
 
 
permalink
 

 
Alpha

Rank: New Blood


Reply With Quote
 
Join Date: Jun 2007
Location: US
Posts: 146
07-31-2008, 09:52 PM
 
i dont think ppl need more than 1 servers maybe 2 like one for pvp and one for lvling server
 
 
permalink
 

 
RPG Guru

Rank: Member


Reply With Quote
 
Join Date: Feb 2008
Location: England
Posts: 338
07-31-2008, 10:03 PM
 
Quote: Originally Posted by [GMs] View Post
i dont think ppl need more than 1 servers maybe 2 like one for pvp and one for lvling server
Agreed, unless a pserver gets as many members as the real conquer as. lol
 
 
permalink
 

 
The Omega

Rank: New Blood


Reply With Quote
 
Join Date: Mar 2008
Location: Anywhere & Everywhere
Posts: 107
07-31-2008, 10:32 PM
 
Quote: Originally Posted by Ultimatum View Post
Agreed, unless a pserver gets as many members as the real conquer as. lol
won't happen, despite TQ's lack of commitment to the public and their greed for money... still more people are being attracted to the game wtf o.0 :eek:
 
 
permalink
 

 
RPG Guru

Rank: Member


Reply With Quote
 
Join Date: Feb 2008
Location: England
Posts: 338
07-31-2008, 11:08 PM
 
O ye just a little bug fixer, all it said was "connecting to server plz wait". Console: General.cs line 917 or something like that forgot XD.
Anyway

From
Code:
ServerPort = GetInfo.ReadValue("Server", "ServerPort");
To
Code:
string AuthPort = GetInfo.ReadValue("Server", "ServerPort");
ServerPort = Convert.ToInt16(AuthPort);
 
 
permalink
 

 
The Omega

Rank: New Blood


Reply With Quote
 
Join Date: Mar 2008
Location: Anywhere & Everywhere
Posts: 107
08-01-2008, 12:13 AM
 
Quote: Originally Posted by Ultimatum View Post
O ye just a little bug fixer, all it said was "connecting to server plz wait". Console: General.cs line 917 or something like that forgot XD.
Anyway

From
Code:
ServerPort = GetInfo.ReadValue("Server", "ServerPort");
To
Code:
string AuthPort = GetInfo.ReadValue("Server", "ServerPort");
ServerPort = Convert.ToInt16(AuthPort);
Without using 2 lines of code which is clearly pointless :
Code:
 Int16 ServerPort = Int16.Parse(Ini.ReadValue("Server", "ServerPort"));
Also i'd suggest using ushort instead of int16...
CO's ports only reach 9958 therefore a variable with the range -32768 - 32762 (Min - Max) really isn't necessary
Whereas Ushorts range is 0 - 65535 Which is far more suitable

So i suggest
Code:
 ushort ServerPort = ushort.Parse(Ini.ReadValue("Server", "ServerPort"));
 
 
permalink
 

 
RPG Guru

Rank: Member


Reply With Quote
 
Join Date: Feb 2008
Location: England
Posts: 338
08-01-2008, 02:23 AM
 
nicely done and agreed but that's up to him, he as it down as short. Just change your authresponse junior if you wanna use ushort.
 
 
permalink
 

 
Euro Gunz Owner

Rank: Member


Reply With Quote
 
Join Date: Jul 2007
Posts: 488
08-01-2008, 09:00 AM
 
any idea where i can find client 5017?
 
 
permalink
 

 
RPG Guru

Rank: Member


Reply With Quote
 
Join Date: Feb 2008
Location: England
Posts: 338
08-01-2008, 09:21 AM
 
[Only Registered and Activated Users Can See Links. Click Here To Register...]
 
 
permalink
 

 
The Omega

Rank: New Blood


Reply With Quote
 
Join Date: Nov 2006
Posts: 100
08-01-2008, 10:53 AM
 
also ushort.parse(string) / integer.parse(string) instead of convert.

(If your really worrying about using a ushort over integer, you might as worry about above too.)
 
 
permalink
 

 
Euro Gunz Owner

Rank: Member


Reply With Quote
 
Join Date: Jul 2007
Posts: 488
08-01-2008, 11:09 AM
 
tyvm ultimatum ^^
anyone know a small tut for this?
required mysql or pgrsql or w/e??
 
 
permalink
 

 
Member

Rank: Omicron


Reply With Quote
 
Join Date: Jun 2008
Posts: 36
08-10-2008, 11:01 AM
 
Can someone post a MySQL dump sql file? Postgres dump wont upload for me.
 
 
permalink
 

 
Newbie

Rank: Omicron


Reply With Quote
 
Join Date: Aug 2008
Posts: 14
08-11-2008, 06:45 AM
 
My character won't register. I'll need your help, you already have my msn.
dao.kinshi@hotmail.com
or
vco.kinshi@hotmail.com
 
 
permalink
 

 
Newbie

Rank: Omicron


Reply With Quote
 
Join Date: Jul 2008
Location: USA
Posts: 15
08-14-2008, 02:35 AM
 
Erro
consulta SQL:

--
-- Banco de Dados: `conquer`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `account`
--
CREATE TABLE `account` (

`AccountID` char( 16 ) NOT NULL default '',
`Password` char( 32 ) default '',
`LastLogon` timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ,
`LogonCount` int( 11 ) NOT NULL default '0',
`Flags` int( 11 ) default '0',
`IPNPort` char( 50 ) default NULL ,
`LogonAction` int( 11 ) NOT NULL default '1',
PRIMARY KEY ( `AccountID` ) ,
KEY `ix_Account_AccountID` ( `AccountID` )
) ENGINE = MYISAM DEFAULT CHARSET = utf8;



Mensagens do MySQL :

#1046 - No database selected
 
 
permalink
 

 
Account Upgraded | Title Enabled!

Rank: Member


Reply With Quote
 
Join Date: Apr 2008
Location: Romania | Baia Mare
Posts: 229
08-14-2008, 02:16 PM
 
Hmmm is freezyng at Login Intro Server :D
 
 
permalink
 

 
Newbie

Rank: Omicron


Reply With Quote
 
Join Date: Jul 2008
Location: USA
Posts: 15
08-14-2008, 04:05 PM
 
this file dont import to myslq what i do?
 
 
permalink
 

 
Member

Rank: Omicron


Reply With Quote
 
Join Date: Aug 2008
Posts: 35
08-14-2008, 05:17 PM
 
Quote: Originally Posted by minino09 View Post
Erro
consulta SQL:

--
-- Banco de Dados: `conquer`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `account`
--
CREATE TABLE `account` (

`AccountID` char( 16 ) NOT NULL default '',
`Password` char( 32 ) default '',
`LastLogon` timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ,
`LogonCount` int( 11 ) NOT NULL default '0',
`Flags` int( 11 ) default '0',
`IPNPort` char( 50 ) default NULL ,
`LogonAction` int( 11 ) NOT NULL default '1',
PRIMARY KEY ( `AccountID` ) ,
KEY `ix_Account_AccountID` ( `AccountID` )
) ENGINE = MYISAM DEFAULT CHARSET = utf8;



Mensagens do MySQL :

#1046 - No database selected
Quote: Originally Posted by minino09 View Post
this file dont import to myslq what i do?
Obviously, you don't have a database selected.

Execute this query, inserting the database name you will be using:
Code:
USE `my_database`;
Then try importing. It imported fine for me, but it needs to import the items as well which could take long than for the popular LOTF source database because this project's item table structure has more fields for each item.
 
 
permalink
 

 
Newbie

Rank: Omicron


Reply With Quote
 
Join Date: Jul 2008
Location: USA
Posts: 15
08-16-2008, 07:27 PM
 
nvm tyyy

Last edited by minino09; 08-22-2008 at 04:09 PM.
 
 
permalink
 

 
Newbie

Rank: Omicron


Reply With Quote
 
Join Date: Mar 2008
Posts: 7
11-10-2008, 09:30 AM
 
hmm Wont Let Me Log I enabled Ports And Still Failure o.o I Run My Server Based On Lotf With no probs Just wanted to check if this ones much bettero.o
 
 
permalink
 

Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


All times are GMT +1. The time now is 10:22 PM.
Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RaGEZONE © 2001 - 2008





 
Evade Blackbelt School