Darkeden Forum
Please Login to enjoy the full benefits of this site!!!
Darkeden Forum
Please Login to enjoy the full benefits of this site!!!
Darkeden Forum
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Learn how and where to play Darkeden. Also learn to run your own Private Server.
 
HomeHome  Latest imagesLatest images  SearchSearch  RegisterRegister  Log inLog in  

 

 [Release] Darkeden V2 (Guide+Server Files & Client)

Go down 
+8
mudsao2zmn
Zephysix
chrisf
dzeart
Dg Nygaard
Admin
jaecor
GetCrisspy
12 posters
AuthorMessage
GetCrisspy
Commoner
GetCrisspy


Posts : 12
Join date : 2014-06-15

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeSun Jun 15, 2014 5:07 pm

Hello everyone, I know this is pretty much a DEAD game but hey it is still fun. I took it upon myself to search for the files and I found them. Only thing I didn't find was the guides.rar which is completely fine so I wrote a new guide and created a video tutorial that will be uploaded to youtube on my channel listed below. Check it out if you are new to creating Darkeden servers!

Anyway here are the files and my own written guide!

Darkeden V2 - ALL IN ONE (Client/Server Files/Vis Guide)
Link: [You must be registered and logged in to see this link.]

Darkeden V2 - My personal written guide!
Link: [You must be registered and logged in to see this link.]

Darkeden V2 - Video Tutorial ( ENGLISH )
Link: [You must be registered and logged in to see this link.]

Also, I suppose I can go ahead and post my written guide here to save some time, but just to show your support you should download it to Smile.

Code:

Welcome to the written guide by me (GetCrisspy)
Please show your support and subscribe to my YouTube channel!
http://youtube.com/user/GetCrisspy


-------------------------------------
|\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\|
|       Written             |
|       Guide to                |
|    Create a Darkeden        |
|    V2.0 Server                |
|    BY: GetCrisspy          |
|\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\|
-------------------------------------

You can view the Original YouTube installation(tutorial) video on my channel!


--------------
|   Part 1   |
|------------|
|  Downloads |
--------------

Step 1: Download the Darkeden_v2 server files from the link below!
Link:

Step 2: Download VMware 7.0 (IF YOU CAN'T FIND 7.0, 10.0 WILL WORK JUST FINE!)

Step 3: Extract Darkeden_v2 files to your desktop!
You can extract using 7zip or WinRAR

Step 4: After you've installed VMware open it up.

Now that you've got everything ready to start your DARKEDEN V2 server, I won't
waste anymore of your time!

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

--------------
|   Part 2   |
|------------|
|Installation|
--------------

Step 1: Extract DarkedenV2.rar into the folder.

Step 2: Copy (CTRL + C) and Paste (CTRL + V) the "????Server" into Local Disc(C:)

Step 3: Rename "????Server" to "DEServer"

Step 4: Run CMD

Step 5: Whilist in CMD type cd C:\DEServer

Step 6: Now type in CMD rename "Red Hat Linux "*.* "Red Hat Linux".*
After that is done type exit

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\



--------------
|   Part 3   |
|------------|
|VMWare Setup|
--------------

NOTE: If you haven't yet, please launch VMware!

Step 1: After you've launched VMWare click in the top left corner "File" then click Open, and open "Red Hat Linux.vmx"

Step 2: Now in the right hand box on the screen inside VMware, click "Network Adapter" and change the setting from Vnet8 to NAT

Step 3: After you've done that click on "EDIT" and then "Virtual Network Editor"

Step 4: After you've opened the "Virtual Network Editor", scroll down till you see Vnet8, click on it then proceed to the next step(5)

Step 5: Change the Subnet IP to 192.168.5.0 and leave the Subnet mask ALONE!

Step 6: Click on NAT settings and change the Gateway IP to 192.168.5.150

Step 7: Now to setup the ports...

Click Add:

Host Port    Type        Virtual Machine IP Address
3306         TCP        192.168.5.10
3306        UDP        192.168.5.10
9997        TCP        192.168.5.10
9997        UDP        192.168.5.10
9998        TCP        192.168.5.10
9998        UDP        192.168.5.10
9999        TCP        192.168.5.10
9999        UDP        192.168.5.10

Click Ok

After you've completed that step, please continue with this guide.

Step 8: Click on DHCP Settings, change the Start IP Address to 192.168.5.150

Click Ok then Apply, then Ok once more.

Now you are finished with the VMWare Setup part of this guide!

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\


--------------
|   Part 4   |
|------------|
|Server Setup|
| Networking |
--------------

After you've completed the steps shown above, click the green play button or simply click the "Power on this virtual machine" in the VMware box

Step 1: Wait until the a blue screen shows up then hit Enter, now you must wait until it loads

Step 2: When it's done loading ( You will know because it will say: )
loginid:
password:

Loginid: root
password: 123456

Once you've typed that in it will say you have no new mail.

Step 3: Now in the unix box type the following:
ifconfig eth0 192.168.5.10 broadcast 192.168.5.255
ifconfig eth0 down
netconfig

A blue menu will show up asking if you would like to setup networking

DO NOT USE A DYNAMIC IP ADDRESS!

Enter in the information below accordingly:

IP ADDRESS: 192.168.5.10
NETMASK: LEAVE IT
DEFAULT GATEWAY: 192.168.5.150
PRIMARY NAMESERVER: 192.168.5.150

Now highlight Ok and press enter

Step 4: Now in the unix box type, mysql -u root
that will connect you to the database

Step 5: Now in the unix box type, use mysql;

Step 6: Now that you've done that, type in the unix box the following:

insert into user (User,Host,Password) values ('localhost.localdomain', 'elcastle',PASSWORD('elca110));
insert into user (User,Host,Password) values ('192.168.5.10', 'elcastle',PASSWORD('elca110));

grant all on DARKEDEN.* to 'elcastle'@'localhost.localdomain';
grant all on USERINFO.* to 'elcastle'@'localhost.localdomain';
grant all on DARKEDEN.* to 'elcastle'@'192.168.5.10';
grant all on USERINFO.* to 'elcastle'@'192.168.5.10';

Step 7: Now in the unix box type, use DARKEDEN;

Step 8: Now in the unix box enter the information below:

update GameServerInfo set IP='192.168.5.10';
update WorldDBInfo set Host='192.168.5.10';
flush privileges;

quit;

Then type cd, this will bring you back to "root"... Now continue on with Part 5!

\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\


--------------
|   Part 5   |
|------------|
|  Configs   |
--------------
\\\\\\\\\\\\\\\\\
\Controls:              \
\I = Edit                \
\ESC = close          \
\wq: = return to cd \
\\\\\\\\\\\\\\\\\
To edit the configs pay close attention!

Step 1: Type in the unix box, cd /home/darkeden/vs/conf

Step 2: Type in the unix box, ls

Step 3: Type in the unix box:

vi excel96-gameserver.conf

Once you've opened that file in the unix box press "i" on your keyboard to enter
edit mode.

Edit all the IP's to match: 192.168.5.10

Make sure before you exit (ESC) you change IsNetMarble to 0!

After you've edited all the IP's to match: 192.168.5.10, you may now exit by using (ESC) then typing wq: and pressing enter.

Now repeat for the loginserver.conf and sharedserver.conf
(NOTE: SET IsNetMarble to 0 in both loginserver.conf and gameserver.conf!)

vi excel96-loginserver.conf
vi excel96-sharedserver.conf

Step 4: After you've completed the task above you may now type cd to return to the main root directory.
Now that you're back in the root directory it's time to reset your VMware's network.

Type the following in the unix box:
/etc/rc.d/init.d/network restart

If you get all GREEN you did everything right.
IF you get RED you did something wrong.
IF you did get RED please go back and re-read my tutorial.

IF you got all green you are good to start the server!

Type, ./start

Now wait a few moments and if the unix box announces "INFINITE LOOP" that means the server is now online!

Congratulations, you've successfully created your very own DARKEDEN server!

Also along in this pack you will find the following:
Commands.txt
AttrInfo.txt
Items.txt
options.txt
Zones.txt
Queries.txt


--------------
| The END  |
--------------


HOPE YOU ALL ENJOY!


Last edited by GetCrisspy on Mon Aug 04, 2014 7:21 am; edited 1 time in total
Back to top Go down
Külaline
Guest




[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeMon Jun 16, 2014 7:50 am

Great tutorial! Thanks for posting this!
Back to top Go down
jaecor
Commoner



Posts : 18
Join date : 2014-08-04

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeTue Aug 12, 2014 3:03 am

I followed this to the letter, however...

When attempting to run the client I can make it all the way to character selection. The moment I select a character the client crashes and I get "Windows is trying to find a solution" or something like that.

I am running on 8.1 if that makes any difference.
Back to top Go down
Külaline
Guest




[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeWed Aug 13, 2014 9:26 am

jaecor wrote:
I followed this to the letter, however...

When attempting to run the client I can make it all the way to character selection.  The moment I select a character the client crashes and I get "Windows is trying to find a solution" or something like that.

I am running on 8.1 if that makes any difference.

Yes 8.1 makes all the difference. I don't know of any Darkeden that works with win8.1. My recommendation is downgrade to 8.0 or to win7.
Back to top Go down
jaecor
Commoner



Posts : 18
Join date : 2014-08-04

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeWed Aug 13, 2014 1:33 pm

TDF_Dexter wrote:
jaecor wrote:
I followed this to the letter, however...

When attempting to run the client I can make it all the way to character selection.  The moment I select a character the client crashes and I get "Windows is trying to find a solution" or something like that.

I am running on 8.1 if that makes any difference.

Yes 8.1 makes all the difference. I don't know of any Darkeden that works with win8.1. My recommendation is downgrade to 8.0 or to win7.

It may not have helped but I ran a VM with Windws 7 and copied over the client to try to see if it'd work. No avail, it would still crash as if I was in Windows 8.1

How strange.
Back to top Go down
Guest
Guest




[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeSat Aug 16, 2014 8:22 am

jaecor wrote:
TDF_Dexter wrote:
jaecor wrote:
I followed this to the letter, however...

When attempting to run the client I can make it all the way to character selection.  The moment I select a character the client crashes and I get "Windows is trying to find a solution" or something like that.

I am running on 8.1 if that makes any difference.

Yes 8.1 makes all the difference. I don't know of any Darkeden that works with win8.1. My recommendation is downgrade to 8.0 or to win7.

It may not have helped but I ran a VM with Windws 7 and copied over the client to try to see if it'd work.  No avail, it would still crash as if I was in Windows 8.1

How strange.

There has to be a small detail you´re doing wrong.. works for me :/
Back to top Go down
jaecor
Commoner



Posts : 18
Join date : 2014-08-04

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeSat Aug 16, 2014 4:46 pm

juss wrote:
jaecor wrote:
TDF_Dexter wrote:
jaecor wrote:
I followed this to the letter, however...

When attempting to run the client I can make it all the way to character selection.  The moment I select a character the client crashes and I get "Windows is trying to find a solution" or something like that.

I am running on 8.1 if that makes any difference.

Yes 8.1 makes all the difference. I don't know of any Darkeden that works with win8.1. My recommendation is downgrade to 8.0 or to win7.

It may not have helped but I ran a VM with Windws 7 and copied over the client to try to see if it'd work.  No avail, it would still crash as if I was in Windows 8.1

How strange.

There has to be a small detail you´re doing wrong.. works for me :/

I'm following the guide to the letter.. Do you have any recommendations?
Back to top Go down
Admin
Administrator
Admin


Posts : 23
Join date : 2014-01-17
Location : USA

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeTue Aug 19, 2014 8:20 am

jaecor wrote:
I'm following the guide to the letter.. Do you have any recommendations?

What anti-virus do you use? There has been compatibility issues with some anti-virus's.
Back to top Go down
https://thedarkedenforum.forumotion.com
jaecor
Commoner



Posts : 18
Join date : 2014-08-04

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeTue Sep 23, 2014 2:08 pm

Admin wrote:
jaecor wrote:
I'm following the guide to the letter.. Do you have any recommendations?

What anti-virus do you use? There has been compatibility issues with some anti-virus's.

My apologies for not replying for a long time.

The anti-virus I am using on my local machine (Windows 8.1) is avast. I do not use any anti-virus on the VM (Windows 7) I have setup.
Back to top Go down
Dg Nygaard
Peasant



Posts : 1
Join date : 2014-12-05

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeSat Dec 06, 2014 12:45 am

Any one who has DK2 files... that old dk2 with servers lol1 lol2 lol3 lol4
on that file they has pinguim who atacks and skins 180 200 225 250...
Back to top Go down
Guest
Guest




[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeFri Dec 12, 2014 8:42 am

Don´t think they are that easy to get, most likely someone has em, but they will prolly charge you.
Back to top Go down
dzeart
Peasant



Posts : 1
Join date : 2015-03-24

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeTue Mar 24, 2015 3:06 pm

When login, i get following msg: This version is not update.
What should i do?
Back to top Go down
chrisf
Knight



Posts : 26
Join date : 2014-07-11

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeFri Apr 03, 2015 2:23 am

dzeart wrote:
When login, i get following msg: This version is not update.
What should i do?
use another client
Back to top Go down
Zephysix
Commoner
Zephysix


Posts : 11
Join date : 2015-03-01
Age : 30
Location : Estonia

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeSat Apr 11, 2015 12:34 pm

[You must be registered and logged in to see this image.]
Any solutions?
Back to top Go down
GetCrisspy
Commoner
GetCrisspy


Posts : 12
Join date : 2014-06-15

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeMon Jul 13, 2015 8:33 am

That error is because you didn't the configs correctly. Go back and check them. Also this could happen if you didn't add the users correctly.
Back to top Go down
Zephysix
Commoner
Zephysix


Posts : 11
Join date : 2015-03-01
Age : 30
Location : Estonia

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeSat Jul 25, 2015 8:58 am

Yup, i've fixed it already.
Back to top Go down
mudsao2zmn
Peasant



Posts : 1
Join date : 2014-07-16

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeMon Aug 24, 2015 2:23 pm

what was your problem solution then?
Back to top Go down
dragon197989
Commoner



Posts : 16
Join date : 2014-08-10

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: menegroth and hellgarden files   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeMon Sep 18, 2017 3:57 pm

Does anyone have the files and guide to add menegroth and hellgarden? I am getting back into dev and lost my files.
Back to top Go down
The author of this message was banned from the forum - See the message
ADI-81
Peasant



Posts : 1
Join date : 2018-01-30

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeFri Feb 02, 2018 5:17 am

Hi
Got all green after network restart but there is small issue with Sql error

[You must be registered and logged in to see this link.]

any clue what that can be?
I am totally green at this btw Smile
Back to top Go down
chrisf
Knight



Posts : 26
Join date : 2014-07-11

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeThu Feb 08, 2018 12:16 pm

you need grant user privleges to that user, pass, ip. or ip not set right in configs or worlddb table in db
Back to top Go down
Croc
Peasant



Posts : 3
Join date : 2015-05-27

[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitimeWed Mar 31, 2021 12:59 pm

How do i create new accounts?

And also thnx for the guide Smile
Back to top Go down
Sponsored content





[Release] Darkeden V2 (Guide+Server Files & Client) Empty
PostSubject: Re: [Release] Darkeden V2 (Guide+Server Files & Client)   [Release] Darkeden V2 (Guide+Server Files & Client) Icon_minitime

Back to top Go down
 
[Release] Darkeden V2 (Guide+Server Files & Client)
Back to top 
Page 1 of 1
 Similar topics
-
» Darkeden v6.65 (AKA v7.01) Private Server Files and Client
» [Tutorial] v6.67 Tutorial + Server Files + Client (eng + cn)
» Setting up darkeden private server on dedicated server
» 6.67 Server files (stand-alone not VM)
» Selling TTDK2 server source and client source

Permissions in this forum:You cannot reply to topics in this forum
Darkeden Forum :: Private Server :: Tutorials-
Jump to: