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!

Tales Runner server setup

Status
Not open for further replies.
Newbie Spellweaver
Joined
Apr 12, 2008
Messages
11
Reaction score
0
can't start AgentServer for some reason ;/ can u explain how to edit the settings?

and i get error in RoomServer :
2012/03/03 22:14:49 - usp_startRoomServer error : [Microsoft][ODBC SQL Server Driver][SQL Server]cannot find proper server
2012/03/03 22:14:49 - !!!!!! Can't get room servernum
 
Last edited:
Junior Spellweaver
Joined
Mar 15, 2009
Messages
151
Reaction score
51
can't start AgentServer for some reason ;/ can u explain how to edit the settings?

and i get error in RoomServer :
2012/03/03 22:14:49 - usp_startRoomServer error : [Microsoft][ODBC SQL Server Driver][SQL Server]cannot find proper server
2012/03/03 22:14:49 - !!!!!! Can't get room servernum

Edit the tables like KillerStefan said.
It's pretty straightforward.

If you're using the latest koreaTest files (and possibly other files), that is 2012-03-02_1_koreaTest.zip, a stored procedure won't work correctly.
To fix it, you should execute this, to alter the procedure:
Code:
USE [talesrunner]
GO
/****** Object:  StoredProcedure [dbo].[usp_startRoomServer]    Script Date: 03/03/2012 21:40:06 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
/*****************************************************************************
 Name: 
 Desc:

 Return-values:
 
 Parameters:
 Input
 ----------------------------

 Output
 ----------------------------

 Auth: 
 Date:
 Version:
******************************************************************************
 Change History
******************************************************************************
 Date: 2011.11.23
 ----------------------------
 
 Author: Kim SangUk
 ----------------------------

 Description: 룸 서버가 켜질때 유저의 팜 리스트 정보의 룸 서버 번호와, 룸 핸들 값을 초기화 한다
 ---------------------------- 

******************************************************************************
 Date: 2012.01.31
 ----------------------------
 
 Author: Kim SangUk
 ----------------------------

 Description: 각 서버별 팜 캐시 최대치 추가
 ---------------------------- 

******************************************************************************/

ALTER PROCEDURE [dbo].[usp_startRoomServer]
	@ip varchar(20),
	@port int
AS

SET NOCOUNT ON
EXEC dbo.usp_LogTranCount @@procid

declare @roomservernum int;
declare @farmCacheMax int;
declare @limitRoomCount int;

select @roomservernum = fdNum, @farmCacheMax = fdFarmCacheMax, @limitRoomCount = fdLimitRoomCount
from tblServerListRoomSvr with (nolock) 
where	fdServerIP = @ip and 
		fdServerPort = @port;

update tblServerListRoomSvr
set fdStartServerDateTime = getdate()
where	fdServerIP = @ip and 
		fdServerPort = @port;

update tblUserFarmList set fdRoomServerNum = 0, fdRoomHandle = 0, fdCacheRoomServerNum = 0
where fdRoomServerNum = @roomservernum

if @roomservernum is null
	begin
		raiserror('cannot find proper server', 16, 1);
		return;
	end
else
	select	  servernum = @roomservernum,
			  farmCacheMax = @farmCacheMax,
			  limitRoomCount = @limitRoomCount,
			  dbtime = getdate();

That should be all you need to make the servers start without problems.
 
Experienced Elementalist
Joined
Jun 25, 2006
Messages
204
Reaction score
70
maybe thats the format but it does look like the decryption code from manneke is correct
I tried it on a different ini and it still extracts readable data

talesrunner
talesrunner
rpa#kstp
 
Junior Spellweaver
Joined
Mar 15, 2009
Messages
151
Reaction score
51
Thanks for the contributions manneke and Arnie16 but the output of the decrypted ini is different.
The format is User DSN, Database, Password.

I'm pretty sure we are right, actually.
I've set up the files using the ini twice, and they can access the DB correctly.

Maybe they changed it in a recent version?

Edit: The order of the error messages in the RoomServer confirms it:
KillerStefan - Tales Runner server setup - RaGEZONE Forums
 
Last edited:
Sharing is caring
Developer
Joined
Feb 1, 2007
Messages
2,086
Reaction score
728
maybe thats the format but it does look like the decryption code from manneke is correct
I tried it on a different ini and it still extracts readable data

talesrunner
talesrunner
rpa#kstp

I'm pretty sure we are right, actually.
I've set up the files using the ini twice, and they can access the DB correctly.

Maybe they changed it in a recent version?

Edit: The order of the error messages in the RoomServer confirms it:
KillerStefan - Tales Runner server setup - RaGEZONE Forums


Yeah that's the correct info, I didn't know the details changed.
 
Newbie Spellweaver
Joined
Apr 12, 2008
Messages
11
Reaction score
0
thank you !
ok , now i get some weird errors in the AgentServer xD
2012/03/04 18:21:56 - Make try to connect to billing server Demon [100]
2012/03/04 18:21:56 - Make try to connect to billing server Demon [200]
2012/03/04 18:21:56 - Make try to connect to billing server Demon [300]

seems like it's cant connect or something
and i get this error 2

2012/03/05 00:16:30 - Unknown protocol in CAgentServerManager::dispatchTCPPacket : 10134 from -1[]

(im not even sure it's an error l0l - just asking)

btw, manneke , can i have ur msn/skype please? c:
 
Last edited:
Joined
Sep 27, 2006
Messages
557
Reaction score
88
someone upload me the tales runner client so i can look at how the client parses the .pkg files.

Anyone know exactly whats up with the client to server? If it conncets etc..
 
Newbie Spellweaver
Joined
Dec 31, 2009
Messages
9
Reaction score
0
Stefan
you said u r going to update us everyday in this topic
why dont you?
 
Newbie Spellweaver
Joined
Feb 1, 2009
Messages
12
Reaction score
2
someone upload me the tales runner client so i can look at how the client parses the .pkg files.

Anyone know exactly whats up with the client to server? If it conncets etc..
You can try the Hong Kong Version:

Would love to help development.
 
Sharing is caring
Developer
Joined
Feb 1, 2007
Messages
2,086
Reaction score
728
Update us please


I released the files to get development started but it seems the care is long gone.
It disappoints me really but that doesn't stop me and my team working on it.

I am not giving any updates until groundbreaking progress has been made as in actually getting in-game since it would all look like false promises anyway and I'm done with posting deadlines publicly that I can't reach.

We will not give up because we can't stop.
Tales Runner private server is happening when you least expect it.
 
Experienced Elementalist
Joined
Sep 8, 2007
Messages
203
Reaction score
24
There are 2 missing Servers actually. BillingServer which is not important at all. LoginServer is missing and im looking into what exactly it is supposed to do, I think I can still pass login without it. AgentServer contains some login information. Using latest Server 3/28/2012.
Login data is stored at dbo.userinfo and at dbo.UserInfoLogin.
 
Status
Not open for further replies.
Back
Top