Qingyun Sealed Demon Record - Source code Mobile 

Darn finally got the server and apk working does anyone have english version apk of this game? this will be hard time translating it and does anyone know how to open .common extension here
 
Last edited:
You're probably the one who got locked out a couple days ago.

Mirorr update mega
[Hidden content]

I will soon release an update of the server, which includes innovations
01.Update to fix the display of 15 levels of mounts.
02.Update to fix the messy code of high level display.
03.Updated the upper limit of 30 levels for mounts.
04.Updated wing advancement limit to 30 steps.
05. Updated mask advancement limit to 30 steps.
06. Updated unicorn arm advancement limit to 30 steps.
07. Updated Guqin advancement limit to 30 levels
08. Updated artillery advancement limit to 30 levels.
09. Updated Soul Weapon advancement limit to 30 levels.
10. Updated to modify the mounts, wings, etc. 6 times must be successful, and the material is fixed at 500 after 15 steps.
11. Updated five sets of 200-level top equipment for Human, Devil, Immortal, God and Chaos.
12.Updated 22 new magic pets
13.Updated 22 new magic pet icon activation limit of 30 levels.
14. Updated all bosses to drop 648 True Rush Cards, Immortal Clothes and Weapons Exchange Coupons, and so on.
15. Updated the boss points store to include all magic pets, monthly cards, 648 rechargeable cards, etc.
16. Update item stacking 999999

Server_Update

[Hidden content]
Thank you for shared
 
You're probably the one who got locked out a couple days ago.

Mirorr update mega
[Hidden content]

I will soon release an update of the server, which includes innovations
01.Update to fix the display of 15 levels of mounts.
02.Update to fix the messy code of high level display.
03.Updated the upper limit of 30 levels for mounts.
04.Updated wing advancement limit to 30 steps.
05. Updated mask advancement limit to 30 steps.
06. Updated unicorn arm advancement limit to 30 steps.
07. Updated Guqin advancement limit to 30 levels
08. Updated artillery advancement limit to 30 levels.
09. Updated Soul Weapon advancement limit to 30 levels.
10. Updated to modify the mounts, wings, etc. 6 times must be successful, and the material is fixed at 500 after 15 steps.
11. Updated five sets of 200-level top equipment for Human, Devil, Immortal, God and Chaos.
12.Updated 22 new magic pets
13.Updated 22 new magic pet icon activation limit of 30 levels.
14. Updated all bosses to drop 648 True Rush Cards, Immortal Clothes and Weapons Exchange Coupons, and so on.
15. Updated the boss points store to include all magic pets, monthly cards, 648 rechargeable cards, etc.
16. Update item stacking 999999

Server_Update

[Hidden content]
thank you very much
 
You're probably the one who got locked out a couple days ago.

Mirorr update mega
[Hidden content]

I will soon release an update of the server, which includes innovations
01.Update to fix the display of 15 levels of mounts.
02.Update to fix the messy code of high level display.
03.Updated the upper limit of 30 levels for mounts.
04.Updated wing advancement limit to 30 steps.
05. Updated mask advancement limit to 30 steps.
06. Updated unicorn arm advancement limit to 30 steps.
07. Updated Guqin advancement limit to 30 levels
08. Updated artillery advancement limit to 30 levels.
09. Updated Soul Weapon advancement limit to 30 levels.
10. Updated to modify the mounts, wings, etc. 6 times must be successful, and the material is fixed at 500 after 15 steps.
11. Updated five sets of 200-level top equipment for Human, Devil, Immortal, God and Chaos.
12.Updated 22 new magic pets
13.Updated 22 new magic pet icon activation limit of 30 levels.
14. Updated all bosses to drop 648 True Rush Cards, Immortal Clothes and Weapons Exchange Coupons, and so on.
15. Updated the boss points store to include all magic pets, monthly cards, 648 rechargeable cards, etc.
16. Update item stacking 999999

Server_Update

[Hidden content]
thank you thanks
 

Client: xLua

Server: C++
1. Modify the server-side file/data/server_5601/Config/ServerConfigList.txt Copy the fields in one area, and copy a few fields in several areas
5601是一区,二区就是5602以此类推
56001是一区,二区就是56002以此类推
actor_5601是一区,二区就是actor_5602以此类推
log_5601是一区,二区就是log_5601以此类推

Code:
2. Import database: Here is the configuration of the four areas, copy it to SSH to run
HOSTNAME="localhost"
PORT="3306"
USERNAME="root"
PASSWORD="123456"
DB1="actor_5602"
DB2="actor_5603"
DB3="actor_5604"
DB4="log_5602"
DB5="log_5603"
DB6="log_5604"
sql1="create database ${DB1} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql2="create database ${DB2} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql3="create database ${DB3} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql4="create database ${DB4} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql5="create database ${DB5} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql6="create database ${DB6} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql1}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql2}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql3}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql4}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql5}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql6}"
mysql -u${USERNAME} -p${PASSWORD} ${DB1} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB2} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB3} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB4} < /data/sql/log_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB5} < /data/sql/log_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB6} < /data/sql/log_5601.sql
139.155.232.43 5601
139.155.232.43 5602
139.155.232.43 5603
139.155.232.43 5604

Code:
cd /data/server_5601 &&  nohup ./5601 -worldid 5601 -assert 1 &  //这是一区
cd /data/server_5601 &&  nohup ./5601 -worldid 5602 -assert 1 &  //这是二区
cd /data/server_5601 &&  nohup ./5601 -worldid 5603 -assert 1 &  //这是三区
cd /data/server_5601 &&  nohup ./5601 -worldid 5604 -assert 1 &  //这是四区
Modify it first/www/wwwroot/config/config.phpAdd 2 3 4 zone database configuration,

It looks like this:
Code:
$qus=array(
'1'=> array(
'name'=> '一区',
'DB_NAME'=> 'actor_5601',
'SERVER_ID'=> '5601'
)
,
'2'=> array(
'name'=> '二区',
'DB_NAME'=> 'actor_5602',
'SERVER_ID'=> '5602'
),
'3'=> array(
'name'=> '三区',
'DB_NAME'=> 'actor_5603',
'SERVER_ID'=> '5603'
),
'4'=> array(
'name'=> '四区',
'DB_NAME'=> 'actor_5604',
'SERVER_ID'=> '5604'
),
);

date -s "2022-06-16 16:16:06"
Server_UPDATE​


thanks for sharing
 
You're probably the one who got locked out a couple days ago.

Mirorr update mega
[Hidden content]

I will soon release an update of the server, which includes innovations
01.Update to fix the display of 15 levels of mounts.
02.Update to fix the messy code of high level display.
03.Updated the upper limit of 30 levels for mounts.
04.Updated wing advancement limit to 30 steps.
05. Updated mask advancement limit to 30 steps.
06. Updated unicorn arm advancement limit to 30 steps.
07. Updated Guqin advancement limit to 30 levels
08. Updated artillery advancement limit to 30 levels.
09. Updated Soul Weapon advancement limit to 30 levels.
10. Updated to modify the mounts, wings, etc. 6 times must be successful, and the material is fixed at 500 after 15 steps.
11. Updated five sets of 200-level top equipment for Human, Devil, Immortal, God and Chaos.
12.Updated 22 new magic pets
13.Updated 22 new magic pet icon activation limit of 30 levels.
14. Updated all bosses to drop 648 True Rush Cards, Immortal Clothes and Weapons Exchange Coupons, and so on.
15. Updated the boss points store to include all magic pets, monthly cards, 648 rechargeable cards, etc.
16. Update item stacking 999999

Server_Update

[Hidden content]
 

Client: xLua

Server: C++
1. Modify the server-side file/data/server_5601/Config/ServerConfigList.txt Copy the fields in one area, and copy a few fields in several areas
5601是一区,二区就是5602以此类推
56001是一区,二区就是56002以此类推
actor_5601是一区,二区就是actor_5602以此类推
log_5601是一区,二区就是log_5601以此类推

Code:
2. Import database: Here is the configuration of the four areas, copy it to SSH to run
HOSTNAME="localhost"
PORT="3306"
USERNAME="root"
PASSWORD="123456"
DB1="actor_5602"
DB2="actor_5603"
DB3="actor_5604"
DB4="log_5602"
DB5="log_5603"
DB6="log_5604"
sql1="create database ${DB1} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql2="create database ${DB2} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql3="create database ${DB3} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql4="create database ${DB4} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql5="create database ${DB5} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql6="create database ${DB6} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql1}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql2}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql3}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql4}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql5}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql6}"
mysql -u${USERNAME} -p${PASSWORD} ${DB1} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB2} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB3} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB4} < /data/sql/log_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB5} < /data/sql/log_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB6} < /data/sql/log_5601.sql
139.155.232.43 5601
139.155.232.43 5602
139.155.232.43 5603
139.155.232.43 5604

Code:
cd /data/server_5601 &&  nohup ./5601 -worldid 5601 -assert 1 &  //这是一区
cd /data/server_5601 &&  nohup ./5601 -worldid 5602 -assert 1 &  //这是二区
cd /data/server_5601 &&  nohup ./5601 -worldid 5603 -assert 1 &  //这是三区
cd /data/server_5601 &&  nohup ./5601 -worldid 5604 -assert 1 &  //这是四区
Modify it first/www/wwwroot/config/config.phpAdd 2 3 4 zone database configuration,

It looks like this:
Code:
$qus=array(
'1'=> array(
'name'=> '一区',
'DB_NAME'=> 'actor_5601',
'SERVER_ID'=> '5601'
)
,
'2'=> array(
'name'=> '二区',
'DB_NAME'=> 'actor_5602',
'SERVER_ID'=> '5602'
),
'3'=> array(
'name'=> '三区',
'DB_NAME'=> 'actor_5603',
'SERVER_ID'=> '5603'
),
'4'=> array(
'name'=> '四区',
'DB_NAME'=> 'actor_5604',
'SERVER_ID'=> '5604'
),
);

date -s "2022-06-16 16:16:06"
Server_UPDATE​
[Hidden content]

Thank you very much
 

Client: xLua

Server: C++
1. Modify the server-side file/data/server_5601/Config/ServerConfigList.txt Copy the fields in one area, and copy a few fields in several areas
5601是一区,二区就是5602以此类推
56001是一区,二区就是56002以此类推
actor_5601是一区,二区就是actor_5602以此类推
log_5601是一区,二区就是log_5601以此类推

Code:
2. Import database: Here is the configuration of the four areas, copy it to SSH to run
HOSTNAME="localhost"
PORT="3306"
USERNAME="root"
PASSWORD="123456"
DB1="actor_5602"
DB2="actor_5603"
DB3="actor_5604"
DB4="log_5602"
DB5="log_5603"
DB6="log_5604"
sql1="create database ${DB1} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql2="create database ${DB2} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql3="create database ${DB3} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql4="create database ${DB4} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql5="create database ${DB5} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
sql6="create database ${DB6} DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql1}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql2}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql3}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql4}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql5}"
mysql -h${HOSTNAME} -P${PORT} -u${USERNAME} -p${PASSWORD} -e "${sql6}"
mysql -u${USERNAME} -p${PASSWORD} ${DB1} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB2} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB3} < /data/sql/actor_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB4} < /data/sql/log_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB5} < /data/sql/log_5601.sql
mysql -u${USERNAME} -p${PASSWORD} ${DB6} < /data/sql/log_5601.sql
139.155.232.43 5601
139.155.232.43 5602
139.155.232.43 5603
139.155.232.43 5604

Code:
cd /data/server_5601 &&  nohup ./5601 -worldid 5601 -assert 1 &  //这是一区
cd /data/server_5601 &&  nohup ./5601 -worldid 5602 -assert 1 &  //这是二区
cd /data/server_5601 &&  nohup ./5601 -worldid 5603 -assert 1 &  //这是三区
cd /data/server_5601 &&  nohup ./5601 -worldid 5604 -assert 1 &  //这是四区
Modify it first/www/wwwroot/config/config.phpAdd 2 3 4 zone database configuration,

It looks like this:
Code:
$qus=array(
'1'=> array(
'name'=> '一区',
'DB_NAME'=> 'actor_5601',
'SERVER_ID'=> '5601'
)
,
'2'=> array(
'name'=> '二区',
'DB_NAME'=> 'actor_5602',
'SERVER_ID'=> '5602'
),
'3'=> array(
'name'=> '三区',
'DB_NAME'=> 'actor_5603',
'SERVER_ID'=> '5603'
),
'4'=> array(
'name'=> '四区',
'DB_NAME'=> 'actor_5604',
'SERVER_ID'=> '5604'
),
);

date -s "2022-06-16 16:16:06"
Server_UPDATE​
[Hidden content]

goood!
 
Back