[Release] Blade & soul Revolution(mobile) server+client

Banned
Banned
Joined
Apr 1, 2019
Messages
313
Reaction score
19
Re: [Release] Blade & soul Revolution(mobile) server+client

anyone can share where to get the "nginx" and other files thanks for web server



i follow this step but cant install

 
Experienced Elementalist
Joined
Nov 8, 2014
Messages
233
Reaction score
14
Who can unpack file .bin in folder bin. Of server file ??????
 
Joined
Jun 27, 2010
Messages
940
Reaction score
1,195
To change game language edit: ClientSaveData.xml on folder /storage/emulated/0/Android/data/com.jlonline.revolution/files/UE4Game/TSProject/TSProject/Saved/

Available languages:
Code:
locales: 
'af' 'am' 'ar' 'as' 'az' 'be' 'bg' 'bn' 'bs' 'ca' 'cs' 'da' 'de' 'el' 'en-AU' 'en-CA' 'en-GB' 'en-IN' 'en-XC' 'es' 'es-ES' 'es-US' 'et' 'eu' 'fa' 'fi' 'fr'
'fr-CA' 'gl' 'gu' 'hi' 'hr' 'hu' 'hy' 'id' 'in' 'is' 'it' 'iw' 'ja' 'ka' 'kk' 'km' 'kn' 'ko' 'ky' 'lo' 'lt' 'lv' 'mk' 'ml' 'mn' 'mr' 'ms' 'my' 'nb' 'ne' 'nl' 'or'
'pa' 'pl' 'pt' 'pt-BR' 'pt-PT' 'ro' 'ru' 'si' 'sk' 'sl' 'sq' 'sr' 'sr-Latn' 'sv' 'sw' 'ta' 'te' 'th' 'tl' 'tr' 'uk' 'ur' 'uz' 'vi' 'zh-CN' 'zh-HK' 'zh-TW' 'zu'
 
Experienced Elementalist
Joined
Oct 14, 2012
Messages
226
Reaction score
15

good day i want to ask how to clean all players data? thank you!
 
Banned
Banned
Joined
Apr 1, 2019
Messages
313
Reaction score
19
sir where can i get API for this files? and any guide for the web server setup tnx in advance

 
Newbie Spellweaver
Joined
May 12, 2021
Messages
11
Reaction score
0
Newbie trying setting server with VM. but always getting error . need help,,, already setting server & client to 192.168.1.130 but still cant login.


 
Last edited:
Banned
Banned
Joined
Apr 1, 2019
Messages
313
Reaction score
19
anyone can help me with this? after that it will auto close

 
Banned
Banned
Joined
Apr 1, 2019
Messages
313
Reaction score
19
i post many need a help on this thread but none of them are answered.. your ignoring me T_T
 
Newbie Spellweaver
Joined
Jun 24, 2019
Messages
50
Reaction score
7
i post many need a help on this thread but none of them are answered.. your ignoring me T_T

makesure ur server side firewall is acept ur ports or u can just shut it down,and the api edit with notepad++ change it to UTF8
 
Newbie Spellweaver
Joined
May 12, 2021
Messages
11
Reaction score
0
mee too, still confused setting webserver api. already setting vhost , open port 8080 and 8888 setting ip server.xml and import to htdoc with apache XAMPP. and web link 192.168.1.130:8080/8888 work. and client already setting to ip local 192.168.1.130 but still cant login in game
 
Joined
Jun 27, 2010
Messages
940
Reaction score
1,195

Try change mysql login and pass on connect.php.

httpd.conf
add
Code:
Listen 8080
Listen 8888

httpd-vhosts.conf
Code:
<VirtualHost *:8080>
    #ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot "D:/xampp/htdocs/8080"
	    <Directory "D:/xampp/htdocs/8080">
        AllowOverride All
        Order Allow,Deny
        Allow from All
    </Directory>
    ##ServerName dummy-host.example.com
    ##ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error.log"
    CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>

<VirtualHost *:8888>
    #ServerAdmin webmaster@dummy-host.example.com
    DocumentRoot "D:/xampp/htdocs/8888"
    ##ServerName dummy-host.example.com
    ##ServerAlias www.dummy-host.example.com
    ErrorLog "logs/dummy-host.example.com-error.log"
    CustomLog "logs/dummy-host.example.com-access.log" common
</VirtualHost>