• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook pagefor updates, or we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.)

Tales Runner server setup

Status
Not open for further replies.
Initiate Mage
Joined
Oct 11, 2012
Messages
2
Reaction score
0
Anyone can teach me how to setup private server

I Can't download the server files from rhaon

Anyone send the server files to me and teach me to setup?

My e-mail and msn is :juniordary@hotmail.com

Can teamviewer me.
 
Initiate Mage
Joined
Oct 11, 2012
Messages
2
Reaction score
0
plaees!!! Anyone can give a talesrunner Server Controller I'm ThaiI I'm not good English but I want to open sever For fun

Contact me at skype:juniordary Msn:juniordary@hotmail.com
 
Newbie Spellweaver
Joined
Oct 12, 2012
Messages
31
Reaction score
2
546845_520664247960964_188349215_n - Tales Runner server setup - RaGEZONE Forums

Help ! Add ITEM Status +10000

Setup DB NAME ???

Help Add Email Name LEX nokikuteam1@hotmail.com
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Oct 12, 2012
Messages
31
Reaction score
2
2012/10/21 01:08:50 - usp_getuserinfo error : [Microsoft][SQL Server Native Client 10.0][SQL Server]there is no UserInfo
2012/10/21 01:08:50 - usp_license_getUserLicenseDetailInfoByNickname error : [Microsoft][SQL Server Native Client 10.0][SQL Server]not user
2012/10/21 01:08:53 - !!!!!!!!! Can't get community server list
2012/10/21 01:08:54 - usp_getuserinfo error : [Microsoft][SQL Server Native Client 10.0][SQL Server]there is no UserInfo
2012/10/21 01:08:54 - usp_license_getUserLicenseDetailInfoByNickname error : [Microsoft][SQL Server Native Client 10.0][SQL Server]not user
2012/10/21 01:09:03 - !!!!!!!!! Can't get community server list
2012/10/21 01:09:05 - Hash Reload OK.
2012/10/21 01:09:06 - Max query : name(usp_getCurrentGameMoney), time(41), query(usp_getCurrentGameMoney usernum(int)(3393) )
2012/10/21 01:09:11 - usp_logout error : [Microsoft][SQL Server Native Client 10.0][SQL Server]Procedure or function usp_logout has too many arguments specified.
 
Newbie Spellweaver
Joined
Sep 21, 2012
Messages
14
Reaction score
0
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.
what should i do now !?
 
Initiate Mage
Joined
Oct 10, 2012
Messages
1
Reaction score
0
How to fix this @killerStefan ?
 
Newbie Spellweaver
Joined
Oct 30, 2012
Messages
5
Reaction score
0
I Need

server >
database >
tools >

But I Have Talesrunner Client 02-02-korea Bit Downlaod ^_^

I Need

server >
database >
tools >

But I Have Talesrunner Client 02-02-korea Bit Downlaod ^_^
 
Newbie Spellweaver
Joined
Oct 30, 2012
Messages
5
Reaction score
0
I Need..
2012 KOR Test Version == Server Files ==
2012 KOR Version == Database ==
Server Controller == Tools ==

But I Have 02-02 Korea Talesrunner Client Bit Dowload
 
Junior Spellweaver
Joined
Mar 5, 2007
Messages
177
Reaction score
109
ok, I'm loading files, wait

Sem título - Tales Runner server setup - RaGEZONE Forums Sem título2 - Tales Runner server setup - RaGEZONE Forums

 

Attachments

You must be registered for see attachments list
Last edited:
Status
Not open for further replies.
Back
Top