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!

[Release] Japanese TalesWeaver Server Files {일본 테일즈위버 서버 파일}

Experienced Elementalist
Joined
Aug 15, 2014
Messages
202
Reaction score
1
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

I Have made the server work well. But when i connect it with 3.50 CLIENT, the server said wrong CLIENT version.
When i connect it with 4.04, the gameguard stop me run the CLIENT.
 
Experienced Elementalist
Joined
Aug 15, 2014
Messages
202
Reaction score
1
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

The server file is good, just some database missing
 
Joined
Jul 8, 2009
Messages
445
Reaction score
63
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

Who will be the fairy and post a tutorial of how setup this files ?

And upload the client to Mega ?
 
Last edited:
Experienced Elementalist
Joined
Aug 15, 2014
Messages
202
Reaction score
1
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}


All the files you need
 
Last edited:
Initiate Mage
Joined
Aug 26, 2015
Messages
2
Reaction score
0
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

my user rights are not enough, maybe you can post all the detail
 
Joined
Aug 14, 2009
Messages
1,097
Reaction score
134
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

my user rights are not enough, maybe you can post all the detail

Here.

[手工架设] 天翼之链4.04服务端与客户端
应天翼迷友的请求,把详细教程与数据库及设置方法附上。

下面的帖子是不是很熟悉,其实就是我去年发的贴子,被各大论坛转载了好多次,现在我只是增加了一些内容。

作为一个天翼之链的粉丝,辗转于国服,SF,国际服,港服,日服。10年过去了,对这游戏热爱不减。
好了,开始进入正题:
一、架设环境:
vmware+solaris 10+部分依赖软件+mysql-5.0.51
二、准备工作:
1.solaris10下载地址:

2.依赖软件(群共享)
ncurses-5.6-sol10-x86-local
gd-2.0.35-sol10-x86-local
gcc-3.4.6-sol10-x86-local
openssl-0.9.8-sol10-x86-local
3.mysql(群共享)
4.服务端(server):

5.客户端(client):

6.数据库(database群共享)
三、服务端架设
1.下載 VMware Workstation 安裝 Solaris OS x86 版本;配置环境:
# bash
#PATH=/opt/csw/bin:/usr/sfw/bin:/usr/sbin:/usr/bin:/usr/openwin/bin:/usr/dt/bin:/usr/ccs/bin:$PATH
# export PS1='\u:\w#'
# echo $PATH

2.修改solaris系统静态IP,修改solaris远程登录权限;
修/etc/ssh/sshd_config的PermitRootLogin no,将no改成yes
输入命令重启ssh
#/lib/svc/method/sshd restart

3.使用用WINSCP或FILEZILA将依赖软件上传到solaris系统中并安装;
# gunzip *.gz
# pkgadd -d openssl-0.9.8-sol10-x86-local
# pkgadd -d ncurses-5.6-sol10-x86-local
# pkgadd -d gcc-3.4.6-sol10-x86-local
# pkgadd -d gd-2.0.35-sol10-x86-local
# ln -s /opt/csw/lib/libncurses.so.5 /usr/local/lib/libncurses.so.5
# ln -s /opt/csw/lib/libiconv.so.2.5.0 /usr/lib/libiconv.so.2

4.安裝必要lib
# cd /tw404/
# gunzip db-3.3.11-sol8-intel-local.gz
# pkgadd -d db-3.3.11-sol8-intel-local
必要Lib 連結
# ln -s /usr/local/lib/libgcc_s.so.1 /lib/libgcc_s.so.1
# ln -s /usr/local/lib/libstdc++.so.6.0.3 /lib/libstdc++.so.6
# ln -s/usr/local/BerkeleyDB.3.3/lib/libdb-3.3.so /lib/libdb-3.3.so

設置權限
# chmod -R 755 /tw404

5.安装mysql,具体过程如下:
* 移除內建 mysql 4.x
# pkginfo | grep -i mysql
# pkgrm SUNWmysqlr
# pkgrm SUNWmysqlt
# pkgrm SUNWmysqlu
*安装mysql5.0.51
# gunzip -cd mysql-5.0.51.tar.gz | gtar xvpf -
# cd mysql-5.0.51
# CC=gcc CFLAGS="-O3 -fomit-frame-pointer-DHAVE_CURSES_H" \
> CXX=gcc \
> CXXFLAGS="-O3 -fomit-frame-pointer-felide-constructors \
> -fno-exceptions -fno-rtti-DHAVE_CURSES_H" \
> ./configure --prefix=/usr/local/mysql--sysconfdir=/etc --localstatedir=/usr/local/mysql/data --enable-assembler--with-mysqld-ldflags=-all-static --with-charset=utf8 --with-extra-charsets=all
# gmake
# gmake install

* 設置權限
# mkdir /usr/local/mysql/data
# groupadd mysql
# useradd -g mysql mysql
# chgrp -R mysql /usr/local/mysql
# chown -R root /usr/local/mysql
# chown -R mysql /usr/local/mysql/data
# chmod -R 770 /usr/local/mysql

* 設定 Solaris Server 在啟動和關機時 自動運行 MySQL Server
# ln /usr/local/mysql/share/mysql/mysql.server /etc/rc3.d/S99mysql

* 啟動 MySQL
# /usr/local/mysql/bin/mysqld_safe--datadir=/usr/local/mysql/data --user=mysql &
如無法啟動 Mysql 重新啟動系統 再直接進行下一步設定密碼 因為開機時會自動啟動

* 初始化資料庫
#/usr/local/mysql/bin/mysql_install_db --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --user=mysql

* 設定 root/mysql 密碼
# /usr/local/mysql/bin/mysqladmin -u root password 'root 使用者密碼'
# /usr/local/mysql/bin/mysqladmin -u root -h`hostname` password 'MySql 登入密碼'

* 連接 MySQL
# /usr/local/mysql/bin/mysql -u root -p
Enter password: 輸入 MySQL 密碼

6.mydql增加gamedb用户,并设置gamedb用户名的密码为:vlql=nrt
建立資料庫
mysql> create database jtales12_account;
mysql> create database jtales12_castle;
mysql> create database jtales12_episode;
mysql> create database jtales12_friendList;
mysql> create database jtales12_gamestat;
mysql> create database jtales12_group;
mysql> create database jtales12_guild;
mysql> create database jtales12_pet;
mysql> create database jtales12_refuse;
mysql> create database jtales12_share;

導入資料表
mysql> use jtales12_account
mysql> source /tw404/mysql/jtales12_account
mysql> use jtales12_castle
mysql> source /tw404/mysql/jtales12_castle.sql
mysql> use jtales12_episode
mysql> source /tw404/mysql/jtales12_episode.sql
mysql> use jtales12_friendList
mysql> source /tw404/mysql/jtales12_friendList.sql
mysql> use jtales12_gamestat
mysql> source /tw404/mysql/jtales12_gamestat.sql
mysql> use jtales12_group
mysql> source /tw404/mysql/jtales12_group.sql
mysql> use jtales12_guild
mysql> source /tw404/mysql/jtales12_guild.sql
mysql> use jtales12_pet
mysql> source /tw404/mysql/jtales12_pet.sql
mysql> use jtales12_refuse
mysql> source /tw404/mysql/jtales12_refuse.sql
mysql> use jtales12_share
mysql> source /tw404/mysql/jtales12_share.sql

退出控制台
mysql> quit;

7.修改IP
/tw404/db/DB.cfg ,/tw404/jtales*/table/DBs.jtales跟 /tw404/jtales*/table/Servers.jtales三个文件的IP,将192.168.100.10替代成你自己的虚拟机IP

8.启动服务器
㈠ Startup db
# cd /tw404/db
# ls
# db
㈡ Startup jtales0
# cd /tw404/jtales0
# ls
# ./start
㈢ Startup jtales1
# cd /tw404/jtales1
# ls
# ./start
㈣ Startup jtales2
# cd /tw404/jtales2
# ls
# ./start

四、客户端启动:
修改Launcher StartGame.bat中的/ADDR后面的十位数为你的IP转换后的十位数,例如你的IP为243.10.30.74,那么先倒过来变成74.30.10.243 ,然后按下面公式转换成long型的:74×256^3+30×256^2+10×256+243= 1243482867,那么应改为/ADDR 1243482867。
运行Launcher StartGame.bat进入游戏,记得先把系统颜色调成16色。
技术交流群(For more information, please join QQ group):480839386

1.关于乱码的说明:这是日服端,而且客户端是台湾繁体的,所以会有乱码。
2.有条件的下载后上传百度盘吧,我这实在上传不了。
4.进入游戏的帐号(ID)和密码(Password)均为test
 
Initiate Mage
Joined
Aug 26, 2015
Messages
2
Reaction score
0
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

there is not sql database , and the group is no exsit



Give me vmware sol10 .vmdk file
1152805588@qq.com
 
Experienced Elementalist
Joined
Aug 15, 2014
Messages
202
Reaction score
1
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

I will release it , until I make everything work.
 
Newbie Spellweaver
Joined
Aug 13, 2015
Messages
89
Reaction score
1
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

[手工架设] 天翼之链4.04服务端与客户端

server client re upload please
 
Initiate Mage
Joined
Dec 15, 2015
Messages
1
Reaction score
0
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

Is there a way to obtain the v1.06 server files? or perhaps any global content?
 
Initiate Mage
Joined
Jan 6, 2016
Messages
3
Reaction score
0
someone create private server ? Give me link if yes

sry for bad english. But i play on JTW , GTW , KRW. I'am big fun of this game
 
Initiate Mage
Joined
May 14, 2014
Messages
4
Reaction score
0
Is there a person who understands about the following?
* The way to add the ability of stab+3
* The way to assign a picture to equipment.
* The way to add Joshua's secondary skill
* The way to assign a picture to MOB
* About each price of the skill and the equipment.
* The GM command


Is it possibly necessary to alter a client as well as a server file dishonestly?
 
Newbie Spellweaver
Joined
May 29, 2016
Messages
8
Reaction score
0
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

Hi eveyone,

Have you got the .sql file for the server ?

mysql> use jtales12_account
mysql> source /tw404/mysql/jtales12_account.sql
mysql> use jtales12_castle
mysql> source /tw404/mysql/jtales12_castle.sql
mysql> use jtales12_episode
mysql> source /tw404/mysql/jtales12_episode.sql
mysql> use jtales12_friendList
mysql> source /tw404/mysql/jtales12_friendList.sql
mysql> use jtales12_gamestat
mysql> source /tw404/mysql/jtales12_gamestat.sql
mysql> use jtales12_group
mysql> source /tw404/mysql/jtales12_group.sql
mysql> use jtales12_guild
mysql> source /tw404/mysql/jtales12_guild.sql
mysql> use jtales12_pet
mysql> source /tw404/mysql/jtales12_pet.sql
mysql> use jtales12_refuse
mysql> source /tw404/mysql/jtales12_refuse.sql
mysql> use jtales12_share
mysql> source /tw404/mysql/jtales12_share.sql

Thank you all :)

Shisui.


Here.

[手工架设] 天翼之链4.04服务端与客户端
应天翼迷友的请求,把详细教程与数据库及设置方法附上。

下面的帖子是不是很熟悉,其实就是我去年发的贴子,被各大论坛转载了好多次,现在我只是增加了一些内容。

作为一个天翼之链的粉丝,辗转于国服,SF,国际服,港服,日服。10年过去了,对这游戏热爱不减。
好了,开始进入正题:
一、架设环境:
vmware+solaris 10+部分依赖软件+mysql-5.0.51
二、准备工作:
1.solaris10下载地址:

2.依赖软件(群共享)
ncurses-5.6-sol10-x86-local
gd-2.0.35-sol10-x86-local
gcc-3.4.6-sol10-x86-local
openssl-0.9.8-sol10-x86-local
3.mysql(群共享)
4.服务端(server):

5.客户端(client):

6.数据库(database群共享)
三、服务端架设
1.下載 VMware Workstation 安裝 Solaris OS x86 版本;配置环境:
# bash
#PATH=/opt/csw/bin:/usr/sfw/bin:/usr/sbin:/usr/bin:/usr/openwin/bin:/usr/dt/bin:/usr/ccs/bin:$PATH
# export PS1='\u:\w#'
# echo $PATH

2.修改solaris系统静态IP,修改solaris远程登录权限;
修/etc/ssh/sshd_config的PermitRootLogin no,将no改成yes
输入命令重启ssh
#/lib/svc/method/sshd restart

3.使用用WINSCP或FILEZILA将依赖软件上传到solaris系统中并安装;
# gunzip *.gz
# pkgadd -d openssl-0.9.8-sol10-x86-local
# pkgadd -d ncurses-5.6-sol10-x86-local
# pkgadd -d gcc-3.4.6-sol10-x86-local
# pkgadd -d gd-2.0.35-sol10-x86-local
# ln -s /opt/csw/lib/libncurses.so.5 /usr/local/lib/libncurses.so.5
# ln -s /opt/csw/lib/libiconv.so.2.5.0 /usr/lib/libiconv.so.2

4.安裝必要lib
# cd /tw404/
# gunzip db-3.3.11-sol8-intel-local.gz
# pkgadd -d db-3.3.11-sol8-intel-local
必要Lib 連結
# ln -s /usr/local/lib/libgcc_s.so.1 /lib/libgcc_s.so.1
# ln -s /usr/local/lib/libstdc++.so.6.0.3 /lib/libstdc++.so.6
# ln -s/usr/local/BerkeleyDB.3.3/lib/libdb-3.3.so /lib/libdb-3.3.so

設置權限
# chmod -R 755 /tw404

5.安装mysql,具体过程如下:
* 移除內建 mysql 4.x
# pkginfo | grep -i mysql
# pkgrm SUNWmysqlr
# pkgrm SUNWmysqlt
# pkgrm SUNWmysqlu
*安装mysql5.0.51
# gunzip -cd mysql-5.0.51.tar.gz | gtar xvpf -
# cd mysql-5.0.51
# CC=gcc CFLAGS="-O3 -fomit-frame-pointer-DHAVE_CURSES_H" \
> CXX=gcc \
> CXXFLAGS="-O3 -fomit-frame-pointer-felide-constructors \
> -fno-exceptions -fno-rtti-DHAVE_CURSES_H" \
> ./configure --prefix=/usr/local/mysql--sysconfdir=/etc --localstatedir=/usr/local/mysql/data --enable-assembler--with-mysqld-ldflags=-all-static --with-charset=utf8 --with-extra-charsets=all
# gmake
# gmake install

* 設置權限
# mkdir /usr/local/mysql/data
# groupadd mysql
# useradd -g mysql mysql
# chgrp -R mysql /usr/local/mysql
# chown -R root /usr/local/mysql
# chown -R mysql /usr/local/mysql/data
# chmod -R 770 /usr/local/mysql

* 設定 Solaris Server 在啟動和關機時 自動運行 MySQL Server
# ln /usr/local/mysql/share/mysql/mysql.server /etc/rc3.d/S99mysql

* 啟動 MySQL
# /usr/local/mysql/bin/mysqld_safe--datadir=/usr/local/mysql/data --user=mysql &
如無法啟動 Mysql 重新啟動系統 再直接進行下一步設定密碼 因為開機時會自動啟動

* 初始化資料庫
#/usr/local/mysql/bin/mysql_install_db --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --user=mysql

* 設定 root/mysql 密碼
# /usr/local/mysql/bin/mysqladmin -u root password 'root 使用者密碼'
# /usr/local/mysql/bin/mysqladmin -u root -h`hostname` password 'MySql 登入密碼'

* 連接 MySQL
# /usr/local/mysql/bin/mysql -u root -p
Enter password: 輸入 MySQL 密碼

6.mydql增加gamedb用户,并设置gamedb用户名的密码为:vlql=nrt
建立資料庫
mysql> create database jtales12_account;
mysql> create database jtales12_castle;
mysql> create database jtales12_episode;
mysql> create database jtales12_friendList;
mysql> create database jtales12_gamestat;
mysql> create database jtales12_group;
mysql> create database jtales12_guild;
mysql> create database jtales12_pet;
mysql> create database jtales12_refuse;
mysql> create database jtales12_share;

導入資料表
mysql> use jtales12_account
mysql> source /tw404/mysql/jtales12_account
mysql> use jtales12_castle
mysql> source /tw404/mysql/jtales12_castle.sql
mysql> use jtales12_episode
mysql> source /tw404/mysql/jtales12_episode.sql
mysql> use jtales12_friendList
mysql> source /tw404/mysql/jtales12_friendList.sql
mysql> use jtales12_gamestat
mysql> source /tw404/mysql/jtales12_gamestat.sql
mysql> use jtales12_group
mysql> source /tw404/mysql/jtales12_group.sql
mysql> use jtales12_guild
mysql> source /tw404/mysql/jtales12_guild.sql
mysql> use jtales12_pet
mysql> source /tw404/mysql/jtales12_pet.sql
mysql> use jtales12_refuse
mysql> source /tw404/mysql/jtales12_refuse.sql
mysql> use jtales12_share
mysql> source /tw404/mysql/jtales12_share.sql

退出控制台
mysql> quit;

7.修改IP
/tw404/db/DB.cfg ,/tw404/jtales*/table/DBs.jtales跟 /tw404/jtales*/table/Servers.jtales三个文件的IP,将192.168.100.10替代成你自己的虚拟机IP

8.启动服务器
㈠ Startup db
# cd /tw404/db
# ls
# db
㈡ Startup jtales0
# cd /tw404/jtales0
# ls
# ./start
㈢ Startup jtales1
# cd /tw404/jtales1
# ls
# ./start
㈣ Startup jtales2
# cd /tw404/jtales2
# ls
# ./start

四、客户端启动:
修改Launcher StartGame.bat中的/ADDR后面的十位数为你的IP转换后的十位数,例如你的IP为243.10.30.74,那么先倒过来变成74.30.10.243 ,然后按下面公式转换成long型的:74×256^3+30×256^2+10×256+243= 1243482867,那么应改为/ADDR 1243482867。
运行Launcher StartGame.bat进入游戏,记得先把系统颜色调成16色。
技术交流群(For more information, please join QQ group):480839386

1.关于乱码的说明:这是日服端,而且客户端是台湾繁体的,所以会有乱码。
2.有条件的下载后上传百度盘吧,我这实在上传不了。
4.进入游戏的帐号(ID)和密码(Password)均为test
 
Joined
Aug 14, 2009
Messages
1,097
Reaction score
134
Re: Japan TalesWeaver Server File {일본 테일즈위버 서버 파일}

Hi eveyone,

Have you got the .sql file for the server ?

mysql> use jtales12_account
mysql> source /tw404/mysql/jtales12_account.sql
mysql> use jtales12_castle
mysql> source /tw404/mysql/jtales12_castle.sql
mysql> use jtales12_episode
mysql> source /tw404/mysql/jtales12_episode.sql
mysql> use jtales12_friendList
mysql> source /tw404/mysql/jtales12_friendList.sql
mysql> use jtales12_gamestat
mysql> source /tw404/mysql/jtales12_gamestat.sql
mysql> use jtales12_group
mysql> source /tw404/mysql/jtales12_group.sql
mysql> use jtales12_guild
mysql> source /tw404/mysql/jtales12_guild.sql
mysql> use jtales12_pet
mysql> source /tw404/mysql/jtales12_pet.sql
mysql> use jtales12_refuse
mysql> source /tw404/mysql/jtales12_refuse.sql
mysql> use jtales12_share
mysql> source /tw404/mysql/jtales12_share.sql

Thank you all :)

Shisui.

I wish...
 
Newbie Spellweaver
Joined
May 29, 2016
Messages
8
Reaction score
0
Hi iceblade,

At this moment, my server jp 404 turn well, my client 422 too. I can log in and select a character but after 1 minute the client close alone without information. .. when i create the databases jtales2, but i didn't inject table with .sql file like guide say... maybe it s the problem or maybe the client version..
I don't know hiw downgrade 422 to 404..

Thanks for your help all.
 
Joined
Aug 14, 2009
Messages
1,097
Reaction score
134
Hi iceblade,

At this moment, my server jp 404 turn well, my client 422 too. I can log in and select a character but after 1 minute the client close alone without information. .. when i create the databases jtales2, but i didn't inject table with .sql file like guide say... maybe it s the problem or maybe the client version..
I don't know hiw downgrade 422 to 404..

Thanks for your help all.

Sorry, but I can't really help. I think 4.22 TW is equal to 4.04 JP.
 
Newbie Spellweaver
Joined
Mar 15, 2014
Messages
43
Reaction score
1
Hi iceblade,

At this moment, my server jp 404 turn well, my client 422 too. I can log in and select a character but after 1 minute the client close alone without information. .. when i create the databases jtales2, but i didn't inject table with .sql file like guide say... maybe it s the problem or maybe the client version..
I don't know hiw downgrade 422 to 404..

Thanks for your help all.
It's within the configuration files.

4.22 TW = 4.04 JP. For some reason they seem to have different client versions but their data is exactly the same aside from language.
I found out why new accounts can't be made, it's because the structure of the account database is different from the japanese version.
It seems that there isn't really anything much different from 3.50(structure-wise only), and that this is a crappy file. It's better to remake this entire server than to use these. Although they are from Nexon, I wouldn't use these because I do recall this has a backdoor(not being used but has access to delete these files for some reason. Seems to be derived from the previous 3.50 official server that was hacked and released after years of being stolen and sold for a couple thousand dollars.). I suspect that this isn't added by OP, but it was already implemented for some reason.

You need to change the structure of the login server files to support new accounts, and also you need to DMZ this for it to connect to WAN. This also causes the multiplayer problem of only japanese IP's.(This again supports the claim that these are official server files. I suspect that there is a set function that verifies the IP. Not sure because I haven't been researching these anymore. The server also has a IP block for any other ip's other than that Nexon 218.x.x.x poop.)

This is a small amount that I've told you. There are far more information but you need to research them and join a couple of private groups by proving your progress.(Although they've already given up on 4.22 and starting to develop these crappy files to 4.32 for some reason. I don't have the client of 4.32 yet but I'm planning on developing a new server for 5.XX. Sounds stupid and it is. Need to learn more about programming overall tho. (Yet to step into encryption,RE)
 
Back
Top