The document provides instructions to configure a new DungeonDaemon cluster by making copies and changes to configuration files and databases. Key steps include:
1. Make a copy of the ArenaDaemon01 folder and rename it to DungeonDaemon01.
2. Edit the gamed.config.xml file to change references to the new cluster name and port numbers.
3. Add configuration for the new cluster to files for ranking, achievements, and lobby services.
4. Create a new entry for the cluster in the GameWorldCluster database table.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
88 views1 page
Cross-Server Dungeon (f8) Setup
The document provides instructions to configure a new DungeonDaemon cluster by making copies and changes to configuration files and databases. Key steps include:
1. Make a copy of the ArenaDaemon01 folder and rename it to DungeonDaemon01.
2. Edit the gamed.config.xml file to change references to the new cluster name and port numbers.
3. Add configuration for the new cluster to files for ranking, achievements, and lobby services.
4. Create a new entry for the cluster in the GameWorldCluster database table.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
1 You will nee to run another ArenaDaemon GameDaemon make a copy of ArenaDaemon01
folder and rename it to DungeonDaemon01.
2 Now you will need to make some changes on the file D:\service\DungeonDaemon01\bin\gamed.config.xml 3 4 Change ArenaDaemon01 to DungeonDaemon01 where it will be the new log folder. 5 <!-- ==== path ==== --> 6 <!-- [REQ] full root path --> 7 <option name='root-path' value='D:\Service\ArenaDaemon01\'/> 8 <!-- [REQ] full log path --> 9 <option name='log-path' value='D:\log\ArenaDaemon01\'/> 10 <!-- [REQ] full data path --> 11 <option name='data-path' value='D:\Service\ArenaDaemon01\data\GameData_GARENA.zip'/> 12 13 change 7801 to 7802 it will be a new cluster. 14 <option name='arena-id' value='7801'/> 15 change 11900 to 12900 or any other free port. 16 <option name='public-port' value='11900'/> 17 change 21900 to 22900 or any other free port. 18 <option name='internal-port' value='21900'/> 19 change 41900 to 44900 or any other free port. 20 <option name='builder-port' value='41900'/> 21 change 21902 to 22902 or any other free port. 22 <option name='managementd-port' value='21902'/> 23 24 to enable the chat change no to yes. 25 <option name='chatting-server-enable' value='no'/> 26 27 Now you will need to change the following config files. 28 29 D:\service\RankingDaemon\config\game-list.config.xml 30 add a new line where 192.168.1.1 is your Lan IP. 31 <game service-type='2' id='17802' ip-address='192.168.1.1' internal-port='22900'/> 32 33 D:\service\AchievementDaemon\config\achievementd-iplist.xml 34 add a new line where 192.168.1.1 is your Lan IP and the id is the new cluster + 10000. 35 <cluster ip='192.168.1.1' cluster-id='17802'/> 36 37 D:\service\ArenaLobby\config\arena-lobby-iplist.xml 38 add a new line where 192.168.1.1 is your Lan IP and the id is the new cluster. 39 <daemon type='arenad' ip='192.168.1.1' id='7802'/> 40 41 D:\service\ArenaLobby\config\arena-lobby-arenalist.xml 42 uncomment the line. 43 <arena id='7802' max-pc='8000' service-enable='y' attraction='dungeon'/> 44 45 Now on SQL database LobbyDB table GameWorldCluster you can manualy create a new line and insert the values "7802" "192.168.200.100" "12100" "7000" "5000" "192.168.200.100" "22902" or run this query. 46 INSERT INTO [dbo].[GameWorldCluster]([WorldClusterID],[GamePublicIPv4Address],[GamePublicPort],[Ma xPlayerCount],[MaxWaitingCount],[GameInternalIPv4Address],[GameInternalPort]) VALUES (7802, '192.168.200.100', 12100, 7000, 5000, '192.168.200.100', 22902); 47 48 Now you can access Cross-server dungeon(f8)!