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

Junior Spellweaver
Joined
Aug 1, 2012
Messages
145
Reaction score
16
Hello,
Guide TalesRunner Setup + DbFiles+Tools
Windows 8.1 Pro :p
the ip to all Tables is 127.0.0.1
Part 1:


Part 2:


Files Donwload

Enjoin!!!


Credits to PHPRap Db settings.
Credits Files to KillerStefan.
Client Credits To me :p
 
Last edited:
Newbie Spellweaver
Joined
Jan 20, 2013
Messages
89
Reaction score
37
kevin, I allow you to give me your server files and DB =DD
server contains a lot of bugs (I took your client) and run Korean client me do not feel like)))
I'm working on it ...
 
Newbie Spellweaver
Joined
Jan 20, 2013
Messages
89
Reaction score
37
I hope in the future there will be guides on how to add new content to the client and the server. (and how to translate client)
I added everything from .txt on the client to the database, but apparently this is not the..

by the way how to add yourself GP points?
 
Last edited:
Newbie Spellweaver
Joined
Jun 19, 2011
Messages
43
Reaction score
2
Help Plz
<SQLError Package="korea_2012_02_02"><Error>Cannot resolve the collation conflict between "Korean_Wansung_CI_AS" and "SQL_Latin1_General_CP1_CI_AS" in the equal to operation.</Error><Assembly>korea_2012_02_02</Assembly><Package>Package1.resx</Package><Batch>Batch6674</Batch><SQL>
/*****************************************************************************
Name:
Desc:

Return-values:

Parameters:
Input
----------------------------

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

Auth:
Date:
Version:
******************************************************************************
Change History
******************************************************************************
Date: 2009-10-13
----------------------------

Author: Jeon
----------------------------

Description:
----------------------------
컨텐츠 동작방식 설정정보(SettingContentsOption)를 기존 서버셋팅정보(tblServerSettingInfo)와
함께 로딩

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


CREATE PROCEDURE [dbo].[usp_getServerSettingInfo] AS
SET NOCOUNT ON
EXEC dbo.usp_LogTranCount @@procid

-- 임시 테이블 생성
declare @resultTable table
(
seq int identity ( 1, 1) not null primary key,
fdKey varchar(50) collate database_default,
fdValue varchar(255) collate database_default,
fdOnlyServerSetting bit
)

declare @NowTime datetime;

-- 현재 시간을 얻는다.
set @NowTime = getdate();

-- tblServerSettingInfo테이블의 내용을 임시 테이블에 복사한다.
insert into @resultTable
select fdKey, fdValue, fdOnlyServerSetting
from tblServerSettingInfo
union
select fdKey, fdValue, fdOnlyServerSetting
from SettingContentsOption

-- 스케쥴러 테이블에서 임시테이블에 있는 동일한 키의 값을 임시테이블에 오버라이드 한다.
update @resultTable
set fdValue = t2.fdValue
from @resultTable as t1 left outer join
tblServerSettingScheduler as t2 on
t1.fdKey = t2.fdKey
where t2.fdValue is not null and
@NowTime >= t2.fdStartTime and
@NowTime <= t2.fdEndTime;

select KeyName = fdKey, Value = fdValue , OnlyServerSetting = fdOnlyServerSetting
from @resultTable;
</SQL></SQLError>

Ok i UnderStand
Sorry :D:
 
Joined
Feb 28, 2012
Messages
738
Reaction score
65
I think I'm having too much fun
Kevin Teran - Tales Runner Setup Video + Server Files by kevin3584 - RaGEZONE Forums
 
Newbie Spellweaver
Joined
Jan 20, 2013
Messages
89
Reaction score
37
I've been given some insight on it.
It's done through the login codes in tr4, and database modification in AvatarDescATR stuff.
when buying the item, nothing happens = (
tblavataritemdescattr
tblavataritemdesc
tblavataritemdesctrduciendo
etc.
all this I have tried to write into the database
 
Junior Spellweaver
Joined
Apr 30, 2011
Messages
118
Reaction score
14
Add the item ids in tblavataritemdesc with correct info.
 
Newbie Spellweaver
Joined
Jan 20, 2013
Messages
89
Reaction score
37
Kevin Teran - Tales Runner Setup Video + Server Files by kevin3584 - RaGEZONE Forums

oh yeah!!! =D
Code:
tblavataritemdesc
tblavataritemdescattr
tblavataritemdescex
tblavataritemsetattr
tblavataritemsetdesc
 
Back
Top