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 Setup Video + Server Files by kevin3584

Newbie Spellweaver
Joined
Aug 24, 2013
Messages
7
Reaction score
0
And we should care why?
Also be wary this person has been ripping other servers for his files, including phoenix (stealing stolen files, what a shame), so don't help him out unless you want him to steal your poop in the process.
Iam Only test it (work or no) and phoenix have many bugs in maps and items. and if u Dont need help me, ok as u like
 
Newbie Spellweaver
Joined
Aug 24, 2013
Messages
7
Reaction score
0
No poop, because you ripped files but not the DB. It's not phoenix thats bugged, its your idiocy.

iam playing phoenix. phoenix Have many bugs in map Like ( all Co-op and new maps he download it) and chat is bug
 
Junior Spellweaver
Joined
Dec 21, 2009
Messages
188
Reaction score
40
You have to download all new maps you stupid idiot....

Just got back from probation and still being rude? Guess the trolls will keep on trolling. :lol:

I wouldn't recommend using Phoenix files anyway .Why not just start fresh!?
 
Joined
Feb 28, 2012
Messages
738
Reaction score
65
Just got back from probation and still being rude? Guess the trolls will keep on trolling. :lol:

I wouldn't recommend using Phoenix files anyway .Why not just start fresh!?

It's not trolling when you're stating the obvious.
I've been back for over 3 weeks, and was gone for one, where have you been?
 
Newbie Spellweaver
Joined
Aug 31, 2013
Messages
5
Reaction score
0
could u plz send me the link of the my sql and what is the steps before this videos . eg what did u do exactly in mysql and what u downloaded plz fast reply
 
Newbie Spellweaver
Joined
Aug 31, 2013
Messages
5
Reaction score
0
"network-related or instance-specific error occurred while establishing a connection to sql server . the server was no found or was not accessible" how to solve this prop
 
Newbie Spellweaver
Joined
Sep 7, 2013
Messages
6
Reaction score
0
Help
Kevin Teran - Tales Runner Setup Video + Server Files by kevin3584 - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Aug 30, 2013
Messages
42
Reaction score
1
I successful to open communityagentserver, communitysessionserver, loadbalanceserver, relayserver, but it get some error of roomserver,
the error log is:
2013/09/15 14:36:34 - usp_startRoomServer error : [Microsoft][ODBC SQL Server Driver][SQL Server]cannot find proper server
2013/09/15 14:36:34 - !!!!!! Can't get room servernum
Also, I can use agentserver.exe, I open and It haven't display the interface but it show the process in the task manager,
I have set the ODBC before, what's wrong for me?
 
Junior Spellweaver
Joined
Apr 30, 2011
Messages
118
Reaction score
14
I successful to open communityagentserver, communitysessionserver, loadbalanceserver, relayserver, but it get some error of roomserver,
the error log is:
2013/09/15 14:36:34 - usp_startRoomServer error : [Microsoft][ODBC SQL Server Driver][SQL Server]cannot find proper server
2013/09/15 14:36:34 - !!!!!! Can't get room servernum
Also, I can use agentserver.exe, I open and It haven't display the interface but it show the process in the task manager,
I have set the ODBC before, what's wrong for me?
I think kevin forgot a part inside his tutorial.
Run this query (change database with whatever your database's name is)(Run this in SQL Server Management Studio. Connect to your DB and click "New query")
Code:
USE [database]
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();
For the agentserver part, you need to configure your IP addresses properly.
 
Joined
Feb 28, 2012
Messages
738
Reaction score
65
share file database .MDF of you,please!i will convert db SQL server to MySQL,use MySQL more than easy

You can also use Navicat, which is also very easy if you prefer not to use MSSQL, but you would have to set it up there first.
I actually kind of prefer to use Navicat, I've just used it before in the past and it loads alot faster, but If I do any big edits its usually through the managment studio.
 
Back
Top