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!

[Post delete.]

Newbie Spellweaver
Joined
Nov 10, 2015
Messages
77
Reaction score
60
Hello @Misty24,

you can modify the amount of dungeon entries by changing the red number here.
Code:
101|白石神殿殿堂(單人模式)|0|封印已經被解開,散發著不詳氣息的古老神殿,遺跡深處似乎有什麼正在蠢蠢欲動。|F0001|F0007||28|100|3|S101||S101S|S101S|bgm101|bgm101|sound009|sound009|1||||||||||||||||||||||1|||1|[COLOR=#ff0000]3[/COLOR]|400||S004;49|0600|120|101|Loading_101||||Dungeon_101|Dungeon_Transfer004|40727;40728;40729|||0|||

I'm not quite sure what you mean with "setting the server time with the computer time".
But to reset the server time you can use the following commands:
Code:
timedatectl set-ntp 1
timedatectl set-ntp 0
date -s "$(date +'2013%m%d %H:%M')"
hwclock --systohc
 
Newbie Spellweaver
Joined
Nov 10, 2015
Messages
77
Reaction score
60
I'm sorry, I usually give more specific answers.

Dungeon entries are managed in the S_Node.ini (usually /root/hxsy/Data/db/S_Node.ini), that's where you can find all maps and dungeons. You have to change the entry counter for every dungeon. You can find the dungeons by name using T_Node.ini or the .

For your server time:
Code:
sudo timedatectl set-ntp 1
sudo timedatectl set-timezone Europe/Paris
sudo timedatectl set-ntp 0
sudo date -s "$(date +'2013%m%d %H:%M')"
sudo hwclock --systohc
 
Back
Top