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!

[TUTORIAL] Darkeden Server Online Tutorial

Newbie Spellweaver
Joined
Apr 14, 2014
Messages
17
Reaction score
10
Hello, not a lot of people know how to make a "Darkeden" server to be online. So I will tell you how to do it.

Offline Guide:

Online Guide:
SEE CODE

Code:
Step 1:

Find these ip addresses:
VMware IP      //obtained by typing ifconfig inside the unix box.
External Address      //obtained by going to http://whatsmyip.org
Internal IP Address    //obtained by running cmd and typing ipconfig

After you've found all of the addresses above, go into the virtual machine.

Step 2:

After loading VMware, go to the top and select "edit" and then "virtual network editor".

Step 3:
Select vmnet 0 and set the bridged connection to your ethernet card.

Step 4:
In the starting unix box select where you edit the memory,processors,etc. 
Double click "Network Adapter" and set it to bridged.

Step 5:
You may now run the server.

Step 6:
Login to root using:
root
123456

Step 7:
Type in the unix box, netconfig, select yes and press enter.

After you've hit enter fill out the form below to look exactly like this.

192.168.1.123
255.255.255.255
192.168.1.254
192.168.1.254

Hit ok and proceed.

Step 8:
Type in the unix box the following:

mysql -u root
use DARKEDEN;
update GameServerInfo set IP='EXTERNAL IP'
quit;

Step 9:
Now after you've done that go into the configs.

cd
cd /home/darkeden/vs/conf

vi excel96-gameserver.conf
vi excel96-loginserver.conf

set both the "IsNetMarble" to equal 0.

Step 10:
Go into your router, if you don't know how to do this your router ip should be something like
192.168.1.###

You can find out by typing ipconfig in the cmd. It should be your default gateway.

After you've done that, go into your firewall settings in the router.

Forward the ports:
ONLY FORWARD 3306 IF YOU WANT OUTSIDE CONTROL!
SQL WILL STILL WORK INSIDE YOUR LOCAL NETWORK!

9997
9998
9999

Most people think you forward these ports to YOUR ip. BUT YOU DONT!

Forward the above ports to your virtual machine's IP, which should be 192.168.1.123.

After you've done that, you are online and good to go.

If you have any problems do NOT ask me.
I was bugged enough to release this tutorial.

Enjoy!
 
Back
Top