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!

Mobile [Release][Mobile] 长生诀 [Script of Eternity] online server android and ios support

Joined
Apr 6, 2012
Messages
545
Reaction score
217


the game

apk can be easily translated
if find right version of english apk apkpure have full apk


new files is out of vmware :thumbup1:
Download :


extract pass is




Sorry for currupted name of files but its not me thx to baidunetdisk


full apk english :D
idk if work with this server files but its a nice begin
Tuto :
(Made with google translate from chinese tuto)
Hidden space
QQ group: 389223266
-------------------------------------------------- -------------------------------------------------- -----

System Requirements:
Centos 6.5 64-bit

Hardware requirements: 8G memory or more is recommended for service.
You can enter the game when the game starts to occupy 4G

-------------------------------------------------- -------------------------------------------------- -----

Erection steps:
Turn off the firewall,
input the command:
service iptables stop && chkconfig iptables off
1. Open port command:
/sbin/iptables -I INPUT -p tcp --dport 1:65535 -j ACCEPT
2. Save:
/etc/rc.d/init.d/iptables save

3. Restart the service:
/etc/init.d/iptables restart
Turn off the firewall:
service iptables stop && chkconfig iptables off

-------------------------------------------------- -------------------------------------------------- -----
1.
Connect to the cloud:
Enter the /etc/selinux directory
Open config file
Change to SELINUX= to disabled

Then manually enter the following command
setenforce 0
-------------------------------------------------- -------------------------------------------------- -----
2. Install the patch
Code:
rpm -ivh http://repo.mysql.com/yum/mysql-5.5-community/el/6/x86_64/mysql-community-release-el6-5.noarch.rpm
rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

-------------------------------------------------- -------------------------------------------------- -----
3. After installation, copy the following command one by one for be sur all there
Code:
yum -y install mysql-community-server
yum -y install mysql-community-libs
yum -y install mysql-community-client
yum -y install mysql-community-devel
yum -y install php56
yum -y install php56-php-mbstring
yum -y install php56-php-gd
yum -y install php56-php-xml
yum -y install php56-php-mysql
yum -y install php56-php-fpm nc
yum -y install screen
yum -y install wget
yum -y install unzip
yum -y install lrzsz
yum -y install nginx

-------------------------------------------------- -------------------------------------------------- -----
4. Set start auto start command
chkconfig nginx on
chkconfig php56-php-fpm on
chkconfig mysqld on

-------------------------------------------------- -------------------------------------------------- -----
5. Copy csj.tar.gz
Upload to the / directory, enter the following command to decompress
cd / && tar -zxvf csj.tar.gz

-------------------------------------------------- -------------------------------------------------- -----
6. Start database command
service mysqld start

Start nginx command
service nginx start

-------------------------------------------------- ------------------------------------------------

7.
1
Overwrite file
hosts rc.local
To etc directory
Ranch
2
Overwrite file 1.conf
To /usr/locar/bin

3
Change the IP 43.248.105.182 in these two databases to your own external IP
pf_info.sql yt_cfg.sql
And overwrite all database files to csj/sql

4
Overwrite path (1) folder with two files
Go to the cloud /csj/s1/code/run/uproxysvrd directory

5
Overwrite path (2) folder with two files
Go to the cloud /csj/s1/code/run/dupsvrd directory

6
Overwrite a file in path (3) folder
Go to the cloud /etc/nginx/conf.d directory

-------------------------------------------------- -------------------------------------------------- -----
8.
Modify cloud directory:
/data/csj/wwwroot/android/version.ini
/data/csj/wwwroot/android/tina_svr_list.lua
/data/csj/wwwroot/iosv7/version.ini
/data/csj/wwwroot/iosv7/tina_svr_list.lua
/data/csj/wwwroot/main/mobile/login_U.html
/data/csj/wwwroot/fa.php
All IP

-------------------------------------------------- ------------------------------------------------
9 modify the database
input the command:
mysql -uroot

input the command:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'127.0.0.1' IDENTIFIED BY 'qy22players';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY 'qy22players';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'qy22players';
FLUSH PRIVILEGES;

Create table command:
CREATE DATABASE IF NOT EXISTS pf_account default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS pf_active default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS pf_info default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS pf_name default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS pf_report default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_account default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_activity default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_auction default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_cfg default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_common default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_mail default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_relation default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_role default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS yt_log default charset latin1 COLLATE latin1_swedish_ci;
CREATE DATABASE IF NOT EXISTS acc default charset latin1 COLLATE latin1_swedish_ci;

input the command:
exit;

-------------------------------------------------- --------------------------------
Import database
input the command
cd /csj/sql

Copy the following command and paste:
mysql -uroot -pqy22players --default-character-set=utf8 pf_account < pf_account.sql
mysql -uroot -pqy22players --default-character-set=utf8 pf_active < pf_active.sql
mysql -uroot -pqy22players --default-character-set=utf8 pf_info < pf_info.sql
mysql -uroot -pqy22players --default-character-set=utf8 pf_name < pf_name.sql
mysql -uroot -pqy22players --default-character-set=utf8 pf_report < pf_report.sql
mysql -uroot -pqy22players --default-character-set=utf8 yt_account < yt_account.sql
mysql -uroot -pqy22players --default-character-set=utf8 yt_activity < yt_activity.sql
mysql -uroot -pqy22players --default-character-set=utf8 yt_auction < yt_auction.sql
mysql -uroot -pqy22players --default-character-set=utf8 yt_cfg < yt_cfg.sql
mysql -uroot -pqy22players --default-character-set=utf8 yt_mail < yt_mail.sql
mysql -uroot -pqy22players --default-character-set=utf8 yt_mail < yt_mail.sql
mysql -uroot -pqy22players --default-character-set=utf8 yt_relation < yt_relation.sql
mysql -uroot -pqy22players --default-character-set=utf8 yt_role < yt_role.sql
mysql -uroot -pqy22players --default-character-set=utf8 acc < acc.sql
ulimit -S -c 0 > /dev/null 2>&1
ulimit -n 102400
(Here will be prompted the password is not secure, do not care)

-------------------------------------------------- ---------------------------------
10. Give directory 7777 permissions
cd /
chmod -R 7777 /root
chmod -R 7777 /csj

-------------------------------------------------- ---------------------------------
11. Restart the server
reboot
Here my virtual machine restarts, it will report an error, I don't know why
If there is an error, the solution

-------------------------------------------------- ---------------------
Start game command
Successful, then one-click start
-------------------------------------------------
1
start up
cd /csj/pf/code/run/
./start_all.sh

shut down
cd /csj/pf/code/run/
./stop_all.sh


If the memory usage exceeds 1.4G, the next step can be started.

-------------------------------------------------
2
cd /csj/s1/code/run/
./start_all.sh

start up
-------------------------------------------------
3
cd /csj/s1/code/run/uproxysvrd
./start_svrd.sh

start up
./stop_svrd.sh

shut down

You can enter the game when the memory reaches 4G
-------------------------------------------------

The shutdown command is

cd /csj/pf/code/run/
./stop_all.sh


cd /csj/s1/code/run/
./stop_all.sh


cd /csj/s1/code/run/uproxysvrd
./stop_svrd.sh


You can enter the game when the game starts to occupy 4G

-------------------------------------------------- -------------------------------------------------- ------------------

12. Background use method:
Note that this step is very important.

input the command
crontab -e
Keyboard press A

Need to overwrite the contents of crontab in the folder
Click keyboard esc while typing
:wq
Enter to save


-------------------------------------------------- ------------------------------------------
One-click startup Close

Copy the two files to the root directory.

If you successfully enter the game, do a startup

Enter netstat -lntp to see the process


-------------------------------------------------- ------------------------------------------
13. Client modification method
The client wants to modify two files
assets\config.ini
assets\bin\Data\Managed\Assembly-CSharp.dll

Modification method
Use dnSpy tool to decompile files and change two places
Search for 192.168.1.108 and change it to your own IP
The first one is modified in the Assembly-CSharp.dll-GameTaiyou-SDKData-InitURL directory (right-click to edit the IL instruction)
The second one is modified in the Assembly-CSharp.dll-{}-TaiWanSDK-.cctor directory

Override for APK signing

-------------------------------------------------- ------------------------------------------
14
Android client


Query recharge, registration, and active statistics:


Query recharge, registration, and active statistics:


Test and issue 3,000 yuan of order unit treasure:


Recharge bonus query:


Promotion code:



others tuto
centos 6.5
centos 7.5
Old version of file
OS is fucked its why i downloaded another one
alot of mobile game to download , if you get baidu link i can download just need to post to get money game server file is +-20 posts
 
Last edited:
Initiate Mage
Joined
Aug 15, 2019
Messages
6
Reaction score
0
Re: [Release][Mobile] 长生诀 vmware centos 6

The 2nd of the game you are downloading is called Long Wu.
Btw, I have some baidu pan link to other games. Could you please help me download them and share to people?
 
Joined
Apr 6, 2012
Messages
545
Reaction score
217
Re: [Release][Mobile] 长生诀 vmware centos 6

Sur , just take time to download because of 150kb/s limit
best thing is to create a thread with all link and 1 youtube video or screenshot for each game


N.B.:
this can help you to create baidu account if like me your phone number is not support

 
Last edited:
Junior Spellweaver
Joined
Sep 15, 2009
Messages
135
Reaction score
48
Re: [Release][Mobile] 长生诀 vmware centos 6

I actually don't succes login in game but i am sur it work
i going to work when i have time
apk look like it can be easily translated

Me too.
 
Initiate Mage
Joined
Aug 15, 2019
Messages
6
Reaction score
0
Re: [Release][Mobile] 长生诀 vmware centos 6

Sur , just take time to download because of 150kb/s limit
best thing is to create a thread with all link and 1 youtube video or screenshot for each game


N.B.:
this can help you to create baidu account if like me your phone number is not support


Well I have an account but it seems to be limited.
I can not download anything, Baidu client show an error in chinese...
 
Joined
Apr 6, 2012
Messages
545
Reaction score
217
Re: [Release][Mobile] 长生诀 vmware centos 6

ok i success login with new centos now try start server :)
if i have right mean server disconnected
it look like everything can be easily translated
login is php & html




pf_info > server_info > wan_ip_1
yt_cfg > server_info > wan_ip_1

ip in mysql db



I thing max centos version is 6.8 because of libace5 if someone have tips for it
 
Joined
Apr 6, 2012
Messages
545
Reaction score
217
Re: [Release][Mobile] 长生诀 linux

Finally succes to manage with libace but i am stuck with config location
ACE_Dev_Poll_Reactor::eek:pen failed inside ACE_Dev_Poll_Reactor::CTOR: No such file or directory
YY_IO_First_Poll_Reactor ACE_Dev_Poll_Reactor initialized fail. Error:2|No such file or directory.
Inst_Comm_Svrd_App::Run Start.

i think libace is something manually compiled :'(
 
Last edited:
Joined
Apr 6, 2012
Messages
545
Reaction score
217
Re: [Release][Mobile] 长生诀 linux with tuto for online

:O english

full apk english :D
idk if work with this server files but its a nice begin

Script of Eternity 1.6.6 Update
2019-01-31 english version
2019-11-05 server release (1.0.0.1.27)

one of them is the right one
 
Last edited:
Junior Spellweaver
Joined
Sep 15, 2009
Messages
135
Reaction score
48
Re: [Release][Mobile] 长生诀 linux with tuto for online

:O english

full apk english :D
idk if work with this server files but its a nice begin


Script of Eternity 1.6.6 Update
2019-01-31 english version
2019-11-05 server release (1.0.0.1.27)

one of them is the right one

Can you into the game ?
 
Joined
Apr 6, 2012
Messages
545
Reaction score
217
close to but no
Server is start
everything ok but can't login ^^'
i try to translate error that show on screen because idk where i have wrong
can edit server list
idk what that mean :'(

register work

show db invalid

login send to game

alot of error like that need to find why
Mar 10 01:30:39.188 2020@LM_ERROR@Receive data error ,server[7|1000001], peer:18,ACE_OS::last_error()=111|Connection refused.
Mar 10 01:30:39.188 2020@LM_ERROR@Receive data error ,server[10|1000001], peer:19,ACE_OS::last_error()=111|Connection refused.
Mar 10 01:30:39.188 2020@LM_ERROR@Receive data error ,server[22|1000001], peer:23,ACE_OS::last_error()=111|Connection refused.

my server s1 don't start

no more error in game but still not connect :'(

the problem come from s1 if can fix we are in game
 
Last edited:
Joined
Apr 6, 2012
Messages
545
Reaction score
217
my login error find in server
Mar 11 00:05:16.144 2020@LM_INFO@Comm_Post_Http_Ctrl,send suc server[5018|1] IP|Port [127.0.0.1|80],ret:278, buff:pOST /loginCheck.php HTTP/1.1
Host:login.alpha.gametaiwan.com
Accept: text/html, */*
Accept-Language: zh-CN
Content-Length: 55
Content-Type:application/x-www-form-urlencoded; charset=UTF-8
Connection: keep-alive

uid=rocklee&loginToken=449e91d524cef2a4d4972de62cf582bf
.
Mar 11 00:05:16.144 2020@LM_ERROR@Comm_Http_Request_Ctrl::ReadDataFromPeer.
Mar 11 00:05:16.144 2020@LM_DEBUG@Read event ,svr_info[5018|1] IP[127.0.0.1|80], handle input event triggered. ret:0,size_recv:267.
Mar 11 00:05:16.144 2020@LM_ERROR@Comm_Post_Http_Ctrl::preProcessRecvPkg cmd:28004, trans_id:2.
Mar 11 00:05:16.144 2020@LM_DEBUG@Comm_Post_Http_Ctrl::handle_close : 5018|1.
Mar 11 00:05:16.144 2020@LM_INFO@Can't Server_Peer_Info_Set::DelServerPeerInfo Size svr_info_set_ 0: szdel:0 svr_info:5018|1 .
Mar 11 00:05:16.196 2020@LM_DEBUG@Send Pkg to server[1|101], cmd=1009
Mar 11 00:05:16.196 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:05:16.196 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:185 cmd:1009.
Mar 11 00:05:16.240 2020@LM_DEBUG@Read event ,svr_info[1|101] IP[127.0.0.1|31101], handle input event triggered. ret:0,size_recv:88.
Mar 11 00:05:16.240 2020@LM_DEBUG@Receive a whole pkg from server[1|101] IP|Port [127.0.0.1|31101] pkg=88, use=88, head=28 recv_counter=1.
Mar 11 00:05:16.247 2020@LM_DEBUG@Send Pkg to server[9001|1000001], cmd=28004
Mar 11 00:05:16.247 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:05:16.247 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|49282 Pkg Len:70 cmd:28004.
Mar 11 00:05:24.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:05:24.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:05:54.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:05:54.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:05:54.306 2020@LM_INFO@Init_Comm_Buffer_Storage::DumpBufferAllocMem .. total:[128] size:[0] .
Mar 11 00:06:24.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:06:24.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:06:54.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:06:54.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:06:54.306 2020@LM_INFO@Init_Comm_Buffer_Storage::DumpBufferAllocMem .. total:[128] size:[0] .
Mar 11 00:07:24.308 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:07:24.309 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:07:54.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:07:54.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:07:54.306 2020@LM_INFO@Init_Comm_Buffer_Storage::DumpBufferAllocMem .. total:[128] size:[0] .
Mar 11 00:08:24.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:08:24.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:08:54.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:08:54.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:08:54.306 2020@LM_INFO@Init_Comm_Buffer_Storage::DumpBufferAllocMem .. total:[128] size:[0] .
Mar 11 00:09:24.307 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:09:24.307 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:09:54.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:09:54.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:09:54.306 2020@LM_INFO@Init_Comm_Buffer_Storage::DumpBufferAllocMem .. total:[128] size:[0] .
Mar 11 00:10:24.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:10:24.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:10:54.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:10:54.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:10:54.306 2020@LM_INFO@Init_Comm_Buffer_Storage::DumpBufferAllocMem .. total:[128] size:[0] .
Mar 11 00:11:24.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:11:24.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:11:54.306 2020@LM_DEBUG@before WriteAllDataToPeer snd_buffer_deque_.size=1
Mar 11 00:11:54.306 2020@LM_DEBUG@Send a few(n>=1) whole pkg To IP|Port :127.0.0.1|31101 Pkg Len:40 cmd:603.
Mar 11 00:11:54.306 2020@LM_INFO@Init_Comm_Buffer_Storage::DumpBufferAllocMem .. total:[128] size:[0] .
Mar 11 00:12:02.250 2020@LM_DEBUG@Read event ,svr_info[9001|1000001] IP[127.0.0.1|49282], handle input event triggered. ret:0,size_recv:634.
Mar 11 00:12:02.250 2020@LM_DEBUG@Receive a whole pkg from server[9001|1000001] IP|Port [127.0.0.1|49282] pkg=634, use=634, head=28 recv_counter=3.
Mar 11 00:12:02.296 2020@LM_DEBUG@Send Pkg to server[5018|1], cmd=28004
Mar 11 00:12:02.296 2020@LM_INFO@Connect peer socket IP Address:[127.0.0.1|80] Success.
Mar 11 00:12:02.296 2020@LM_DEBUG@Accept peer SO_RCVBUF:87380 SO_SNDBUF 169160.


Script

if you are boring of wait alot of time for nothing
here full command sorry will manage later the help section need finish it first
rename as you wish
for exemple
./qd qd
for start server script still use safe_svrd.sh for now (from right folder)
logs is where you place script that include logs backup folder and start.txt
logs from server side too (create log folder for every process because somes missing)
the sript include all that start with tuto

mysql -uroot -pqy22players --default-character-set=utf8 yt_common < yt_common.sql
missing import on tuto

Possible fix :
service missing or not start
php malfonction or missing
mysql db ip or port not set or not right (pf_info.sql yt_cfg.sql server_info)
skdservice missing website (/asdfgg/mobile/sdkService/1.php)
ACE need more config or something wrong (/usr/local/bin/1conf)
crontab ????
some ip left to edit on config maybe allow too


maybe only because something not start correctly because 16001 sems to get something

the error of gamesvrd idk how to fix something about time
 
Last edited:
Joined
Apr 6, 2012
Messages
545
Reaction score
217
Re: [Release][Mobile] 长生诀 vmware centos 6

The 2nd of the game you are downloading is called Long Wu.
Btw, I have some baidu pan link to other games. Could you please help me download them and share to people?

if you want long wu say me but i have not success connect in game and windows is in chinese and no command to change languages working

(i k i can't log this game too but this game i really want to make it work)
 
Initiate Mage
Joined
Aug 15, 2019
Messages
6
Reaction score
0
Re: [Release][Mobile] 长生诀 vmware centos 6

if you want long wu say me but i have not success connect in game and windows is in chinese and no command to change languages working

(i k i can't log this game too but this game i really want to make it work)

No, thank you.
I just want to see how game server work, not exactly which game.
By the way, I've found a site:
Most of its content is free to download, and a free account can download 3 items per day.
Problem is all the link is pan baidu. :(:
 
Joined
Apr 6, 2012
Messages
545
Reaction score
217
link in pan baidu is not a problem just insane amount of time to download
If you want i have a server that download pan baidu i have put like 50 game to download i can add what you want but my priority is what i am interesting on !
Still slow but never shutdown

and my pc have 1 others accounts



By the way, I've found a site:

thx alot for this now new version of files find there
i download them
just same version :'(
 
Last edited:
Skilled Illusionist
Joined
Jul 16, 2018
Messages
347
Reaction score
69
Hi I translated the zhtw file into English
but why hasn't anything changed everything is in Chinese
rocklee330 - [Release][Mobile] 长生诀 [Script of Eternity] online server android and ios support - RaGEZONE Forums

:(:
 
Last edited:
Skilled Illusionist
Joined
Jul 16, 2018
Messages
347
Reaction score
69
the guys from cavo get some work done to translate it into English:/:
rocklee330 - [Release][Mobile] 长生诀 [Script of Eternity] online server android and ios support - RaGEZONE Forums






I've been suffering for a month
but I didn't find a way to translate it



i k lol but how did you start gameserver every time i got a error
with same file
strange ,I don't understand maybe because I use a Chinese client
 
Back
Top