-
[Release] + [Tutorial] DragonNest Server
Because some idiots aren't able to read the thread properly and select between helpful and not helpful informations
I'm presenting you a tutorial for setting up your Dragon Nest server.
Note: ONLY choose one way!!!
Fast way
For the ones who hasn't a preconfigured server.
1. Serverfiles Unpack dn_serverfiles.exe
Unpack GameRes + VillageRes
1.Info- You NEED the unpacked GameRes in the mainfolder (GameRes.zip is not included in the serverfiles!)
Depending on the source of that, you could also need VillageRes.zip (copy it in GameRes)
- The executables are packed with UPX (feel free to unpack it)
2. Configs2.1 Change YOURIP to yourip
Quote:
- Config.ini
- System\ChannelInfo.xml
- Config\DNKreonBilling.ini
- Config\DNGame.ini
- Config\DNVillage.ini
2.2 Change PATHTOSFOLDER to your serverpath e.g. c:\DNServer
Quote:
- Config\DNLauncherPatcher.ini
- Config\DNLOGIN.INI
- Config\DNMASTER.INI
- Config\DNVillage.ini
- Config\DNCASH.INI
- Config\DNDB.INI
- Config\DNGame.ini
3. DatabaseUnpack dn_database_clean.exe and restore your database(s) with it
(Check 'Replace current Database' on Options point!)
Be sure to have 2008 R2 or higher!
4. Client4.1 The base Client (Use this one, so you don't have to fix packets or sth.)
4.2 HShield (you will need it! Delete the Folder in the Client and replace with my one)
The rar is packed with WinRar 5, be sure that you have that, else it seems to be corrupted for you!
4.3 Exe
Unpack dn_clientstarter.exe in your client folder
5. Webfiles!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Before you can login, you have to copy login.kreon.php from
dn_webfiles.exe to your webserver -> the path must be
http://127.0.0.1/dn/login.kreon.php
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Better (for later use of patcher) extract the whole thing
to that path. Replace 'YOURIP' to your ip, like above in
- PatchConfigList.xml
- PatchList.xml
PatchInfoServer.cfg is the patchrevision
(note the client above has patchrevision 13)
/cashshop is used for the ingameshop
/Launcher is used for the patcher(window)content
6. Start your Server via StartServer.bat
7. Start Client via RZDragonNest.exe- You have to match your start args. via start_args.ini (Default: /ip:127.0.0.1 /port:14303)
You can later bind it to your exe, but that's your part.
BTW: It will only unpack the original exe and start that with the args
(If you have problems with that, look at "Made it by yourself" => point 6)
8. Create an account (AccountLevelCode 100 give access to admin commands)
Quote:
USE [DNMembership]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[P_AddAccount]
@nvcAccountName = N'USERNAME',
@inyAccountLevelCode = 100,
@inyCharacterCreateLimit = 4,
@inyCharacterMaxCount = 4,
@dt2LastLoginDate = NULL,
@vchLastLoginIP = NULL,
@intLastSessionID = NULL,
@vchJoinIP = NULL,
@inyPublisherCode = 4,
@inyGenderCode = NULL,
@datBirthDate = NULL,
@vchPassphrase = N'PASSWORT',
@inyNationalityCode = NULL,
@inyChannelPartnerCode = NULL
SELECT 'Return Value' = @return_value
GO
9. Passwords for archives
Quote:
dn_clientstarter
vjQG6GphJzjBFye1y3jn9zQo$!Ek3B@v0P9VZx&L%4kxbDQN34f9Y3f5ZQ9cmkFvqzURFd2kCu#AMpD$q87J0Cnk4iuhn#nskHyxPQbAfewGGQV5vbgSIAsCb6L1syWj
dn_database_clean
tpGC#ezs!1bGK19jKRuDgTRzCC3IhAjOI7JrqKrxeWef%jTx1QALZ8vNEvp$FOGbLl69mp%GbD5yth6JcZZZQ6zut6RKcR&$jvRrRGobZCp9Ne&wQXc@w2$T2mxS6z4y
dn_serverfiles
fTLUmMQZ0PVE2ltbVs1tAfqde5CNjaOoZhV81d4m7eyU56TBZ1&aoxnRGj5DCDpflDULRGLETu8JYsSirqg3cdx6dkvNDyeVDNrwuqQITUNNcn!TKyMkRljlxPLrpcO%
dn_webfiles
PlGgClaH08SDUXe2j9kNGCIfl2$DIBrPl3yPHV#!02Zq33FPoAy0difA!eiHcW6IKS$w8rxYiQoobvKil&uqmSZJy&tNZuMKpJMG4!5vM!o9edsh%m3&l!7bY4#FbshQ
Made it by yourself
For the ones who has a preconfigured server and only need a connectionfix.
You must have a configured Server for this.
It will only show you how to 'fix' certain things.
DON'T do this way after you used the other one!!!
1. LoginServer
Quote:
Open DNLoginServer64_ID.exe:
Search for:
68 74 74 70 3A 2F 2F 67 61 73 2E 67 65 6D 73 63
6F 6F 6C 2E 63 6F 6D 2F 6D 65 6D 62 65 72 2F 31
2F 6C 6F 67 69 6E 2E 6B 72 65 6F 6E 00 00 00 00
Replace with:
68 74 74 70 3A 2F 2F 31 32 37 2E 30 2E 30 2E 31
2F 64 6E 2F 6C 6F 67 69 6E 2E 6B 72 65 6F 6E 2E
70 68 70 00 00 00 00 00 00 00 00 00 00 00 00 00
Now the Auth is linked to your Webserver (hopefully you have installed one)
You can name the path to the authfile (webspace) how you like.
2. The AuthNow create a file named login.kreon.php at the path above.
In that file the loginchecks are possible.
look at the asm code if you want a 'perfect' one and
have the different checks in it, try the diffrent params...
To simple give out a success:
Quote:
<?php echo "S000"; ?>
3. DatabaseTo login you have to change something in the database functions:
Replace the highlighted with the green ones!
Quote:
DNMembership
P_Login ~Line 329:
WHERE CAST(CONVERT(char(16), @dt2Now, 121) AS smalldatetime) BETWEEN StartDate AND EndDate;
WHERE @dt2Now BETWEEN StartDate AND EndDate;
DNWorld
P_ModPeriodicReset ~Line 42:
VALUES (@inbCharacterID, @inyPeriodicResetCode, @intPeriodicResetValue, CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime));
VALUES (@inbCharacterID, @inyPeriodicResetCode, @intPeriodicResetValue, @dtmServerTime);
P_ModPeriodicReset ~Line 36:
LastModifyDate = CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime)
, LastModifyDate = @dtmServerTime
4. GameResFor simple 24Cap you don't have to do sth. here.
5. ClientFor simple 24Cap you don't have to do sth. here.
6. Create a .bat file to start Client
Quote:
@echo off
echo == Starting DragonNest
DragonNest.exe /ip:127.0.0.1 /port:14303 /Lver:2 /use_packing /debug
Sometimes the Game- and Villageserver will take a bit until they are completly loaded
(the green bubble don't says that it is, because it only shows the successful start!!)
You can check it (Gameserver) if you take a look in the logfiles and see this entry
Quote:
'20:31:12' Complete PreLoad.
kind regards
leechclown (パシー305)
-- edit --
Example screens
an old one:
http://i.epvpimg.com/F90Ge.jpg
newer ones:
http://i.epvpimg.com/KsR6d.jpg
http://i.epvpimg.com/gakEh.jpg
http://i.epvpimg.com/UGmEh.jpg
http://i.epvpimg.com/odZNd.jpg
-
Re: + [Tutorial] DragonNest Server
Nuub, now you did it^^
Just saying, the cash shop is crashed and we won't help anyone with fixing it ;)
Let the Dragon Nest Servers rise :3
Edit:
Going to release a small project of mine in the new section too, not telling what so far^^
-
Re: [Release] + [Tutorial] DragonNest Server
dude after your released it i don't know what i have to say, Thank you so much.
I was wrong about you seems you are prof.
The develop time coming soon:)
-
Re: [Release] + [Tutorial] DragonNest Server
Ahh leechclown! , job well done!
Now i can work on the custom launcher/patcher i will be releasing for peoples, as with the source. Nice little enhancement for who don't /can't get around the advanced updating that Dragon Nest already has.
P.S "HShield (you will need it! Delete the Folder in the Client and replace with my one)" Is corrupt or at least my WinRar is corrupt.
-
Re: [Release] + [Tutorial] DragonNest Server
How much ram i need for this server ?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
major333
Ahh leechclown! , job well done!
P.S "HShield (you will need it! Delete the Folder in the Client and replace with my one)" Is corrupt or at least my WinRar is corrupt.
Download it from here.
http://www.sendspace.com/pro/dl/xgr11m
- - - Updated - - -
Quote:
Originally Posted by
Danielkix10
How much ram i need for this server ?
4GB+ I think.
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
OutOfMemory
Thanks!
-
Re: [Release] + [Tutorial] DragonNest Server
I will make tutorials with different things (original launcher, modifying, writing own dialogs/quests etc.), but not now.
If we are getting an extra Dragon Nest section I'm going to share these things one by one if I see any own development from other users too.
@Danielkix10
You are going to need at least 4GB (with sql and webserver running you get ~3,82 on usage).
I would say +1GB per 100p.
@Shananigan
Maybe.
WinRAR 5 (SFX x32) -> random passwords with length of 64
-
Re: [Release] + [Tutorial] DragonNest Server
@leechclown do you plan on starting up your own server?
- - - Updated - - -
@leechclown Well, if you do. Hit me up on skype, or via message me on here. I'd love to help out anyway possible. By the way, what do you use to unpack the server files? It asks for a password, and I gotten a .exe unpacker and it fails lol.
-
Re: [Release] + [Tutorial] DragonNest Server
what do you use to unpack the server files? It asks for a password, and I gotten a .exe unpacker and it fails lol.
9. Passwords for archives
dn_clientstarter
vjQG6GphJzjBFye1y3jn9zQo$!Ek3B@v0P9VZx&L%4kxbDQN34f9Y3f5ZQ9cmkFvqzURFd2kCu#AMpD$q87J0Cnk4iuhn#nskHyxPQbAfewGGQV5vbgSIAsCb6L1syWj
dn_database_clean
tpGC#ezs!1bGK19jKRuDgTRzCC3IhAjOI7JrqKrxeWef%jTx1QALZ8vNEvp$FOGbLl69mp%GbD5yth6JcZZZQ6zut6RKcR&$jvRrRGobZCp9Ne&wQXc@w2$T2mxS6z4y
dn_serverfiles
fTLUmMQZ0PVE2ltbVs1tAfqde5CNjaOoZhV81d4m7eyU56TBZ1&aoxnRGj5DCDpflDULRGLETu8JYsSirqg3cdx6dkvNDyeVDNrwuqQITUNNcn!TKyMkRljlxPLrpcO%
dn_webfiles
PlGgClaH08SDUXe2j9kNGCIfl2$DIBrPl3yPHV#!02Zq33FPoAy0difA!eiHcW6IKS$w8rxYiQoobvKil&uqmSZJy&tNZuMKpJMG4!5vM!o9edsh%m3&l!7bY4#FbshQ
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
OutOfMemory
what do you use to unpack the server files? It asks for a password, and I gotten a .exe unpacker and it fails lol.
9. Passwords for archives
dn_clientstarter
vjQG6GphJzjBFye1y3jn9zQo$!Ek3B@v0P9VZx&L%4kxbDQN34f9Y3f5ZQ9cmkFvqzURFd2kCu#AMpD$q87J0Cnk4iuhn#nskHyxPQbAfewGGQV5vbgSIAsCb6L1syWj
dn_database_clean
tpGC#ezs!1bGK19jKRuDgTRzCC3IhAjOI7JrqKrxeWef%jTx1QALZ8vNEvp$FOGbLl69mp%GbD5yth6JcZZZQ6zut6RKcR&$jvRrRGobZCp9Ne&wQXc@w2$T2mxS6z4y
dn_serverfiles
fTLUmMQZ0PVE2ltbVs1tAfqde5CNjaOoZhV81d4m7eyU56TBZ1&aoxnRGj5DCDpflDULRGLETu8JYsSirqg3cdx6dkvNDyeVDNrwuqQITUNNcn!TKyMkRljlxPLrpcO%
dn_webfiles
PlGgClaH08SDUXe2j9kNGCIfl2$DIBrPl3yPHV#!02Zq33FPoAy0difA!eiHcW6IKS$w8rxYiQoobvKil&uqmSZJy&tNZuMKpJMG4!5vM!o9edsh%m3&l!7bY4#FbshQ
Weird , works for me , you ran the .exe then it asks for a password right ? if so just paste the following line then it should have a mini installer of where it extracts from =/
-
Re: [Release] + [Tutorial] DragonNest Server
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
major333
Weird , works for me , you ran the .exe then it asks for a password right ? if so just paste the following line then it should have a mini installer of where it extracts from =/
He even can right click on the exe and choose extract option in winrar
-
Re: [Release] + [Tutorial] DragonNest Server
My village crashed all time, and not want to load, what I need to do?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
major333
Weird , works for me , you ran the .exe then it asks for a password right ? if so just paste the following line then it should have a mini installer of where it extracts from =/
Thanks, I didn't see that xD, lol
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
OutOfMemory
He even can right click on the exe and choose extract option in winrar
That is another option indeed! lol
-
Re: [Release] + [Tutorial] DragonNest Server
For the Database part, what exactly do I needa do? I need a program for the database's, can anyone suggest me one?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Hypsiz
My village crashed all time, and not want to load, what I need to do?
I can confirm that village crash too.
Good night everyone.
-
Re: [Release] + [Tutorial] DragonNest Server
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
kaderebak
Use one of these passwords.
dn_clientstarter
vjQG6GphJzjBFye1y3jn9zQo$!Ek3B@v0P9VZx&L%4kxbDQN34f9Y3f5ZQ9cmkFvqzURFd2kCu#AMpD$q87J0Cnk4iuhn#nskHyxPQbAfewGGQV5vbgSIAsCb6L1syWj
dn_database_clean
tpGC#ezs!1bGK19jKRuDgTRzCC3IhAjOI7JrqKrxeWef%jTx1QALZ8vNEvp$FOGbLl69mp%GbD5yth6JcZZZQ6zut6RKcR&$jvRrRGobZCp9Ne&wQXc@w2$T2mxS6z4y
dn_serverfiles
fTLUmMQZ0PVE2ltbVs1tAfqde5CNjaOoZhV81d4m7eyU56TBZ1&aoxnRGj5DCDpflDULRGLETu8JYsSirqg3cdx6dkvNDyeVDNrwuqQITUNNcn!TKyMkRljlxPLrpcO%
dn_webfiles
PlGgClaH08SDUXe2j9kNGCIfl2$DIBrPl3yPHV#!02Zq33FPoAy0difA!eiHcW6IKS$w8rxYiQoobvKil&uqmSZJy&tNZuMKpJMG4!5vM!o9edsh%m3&l!7bY4#FbshQ
-
Re: [Release] + [Tutorial] DragonNest Server
Anyone getting this error at all ? , if so how can you get around it ?
http://i.imgur.com/fij4ZkL.jpg
It's the only thing i have a issue with at the current moment.
-
Re: [Release] + [Tutorial] DragonNest Server
[QUOTE=leechclown;7938462]I will make tutorials with different things (original launcher, modifying, writing own dialogs/quests etc.), but not now.
If we are getting an extra Dragon Nest section I'm going to share these things one by one if I see any own development from other users too.
Ty so much , I am here to learn not to go public or make $$ off this
Dont forget this part for the db's as i did:
7. create an user DragonNest with password qorhvk!@# and grant privileges db_owner to those databases,
-
Re: [Release] + [Tutorial] DragonNest Server
Does anyone have a mirror for the client, lol..over a day to download.
-
Re: [Release] + [Tutorial] DragonNest Server
http://i.epvpimg.com/FjUYc.jpg
Thanks Leechclown it work :thumbup1: but yes ingameshop still crash and always got dced every 10minutes,btw did you know admin command?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
nimitz90
but yes ingameshop still crash and always got dced every 10minutes
This was originally planned:
http://i.epvpimg.com/5bJud.jpg
But leechclown is uploading with 20 kb/s so yeah he discarded the idea of uploading his client xD
Nevertheless we are coming from a section where the cash shop was always the first thing they worked on, so we decided to deny any request of help regarding the cash shop
Regarding your dc's I have no idea, didn't occur to me and we got a complete list of admin commands, but let's wait for the Dragon Nest section Mental promised in the other thread if there is a working tutorial for the servers.
So the item tables,.. are going to be published only in the new section^^
kind regards DaRealFreak
-
1 Attachment(s)
Re: [Release] + [Tutorial] DragonNest Server
Thanks leechclown and every1 who have helped to get these files.
Attachment 142937
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
nimitz90
http://i.epvpimg.com/FjUYc.jpg
Thanks Leechclown it work :thumbup1: but yes ingameshop still crash and always got dced every 10minutes,btw did you know admin command?
What program do you use for the database ?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
DaRealFreak
This was originally planned:
http://i.epvpimg.com/5bJud.jpg
But leechclown is uploading with 20 kb/s so yeah he discarded the idea of uploading his client xD
Nevertheless we are coming from a section where the cash shop was always the first thing they worked on, so we decided to deny any request of help regarding the cash shop
Regarding your dc's I have no idea, didn't occur to me and we got a complete list of admin commands, but let's wait for the Dragon Nest section Mental promised in the other thread if there is a working tutorial for the servers.
kind regards DaRealFreak
That's the smart thing to do, as long as i can generate any items ingame i guess no need for a cashshop if you're playing as a solo player ^^ Thanks anyways
-
[Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
nimitz90
btw did you know admin command?
Type "/? a" without "" in the chat.
Most important ones:
/setlevel [level]
/makeitem [id] [count] [grade] [potential]
/makecoin [count]
/summonmob [id] [count]
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Shananigan
Anyone? >.<
Microsoft SQL Server 2008 R2 Express + SQL Server Management Studio
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Keith
Does anyone have a mirror for the client, lol..over a day to download.
download link frommy VPS
-
Re: [Release] + [Tutorial] DragonNest Server
look here for item id:http://dnarmory.com/
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
3. Database
To login you have to change something in the database functions:
DNMembership
P_Login ~Line 329:
--WHERE CAST(CONVERT(char(16), @dt2Now, 121) AS smalldatetime) BETWEEN StartDate AND EndDate;
WHERE @dt2Now BETWEEN StartDate AND EndDate;
DNWorld
P_ModPeriodicReset ~Line 42:
--VALUES (@inbCharacterID, @inyPeriodicResetCode, @intPeriodicResetValue, CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime));
VALUES (@inbCharacterID, @inyPeriodicResetCode, @intPeriodicResetValue, @dtmServerTime);
P_ModPeriodicReset ~Line 36:
--, LastModifyDate = CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime)
, LastModifyDate = @dtmServerTime
where need change , sql ?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
kennethz008
Well where exactly the Item ID location? all i can see is Names
Edit: Found it Thanks
I thinks the item ID is the last bit for example:
American Bandana [805307135]
http://dnarmory.com/item?i=805307135 <---right here
-
Re: [Release] + [Tutorial] DragonNest Server
someone got a english patch for it?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
major333
yeah i already notice it, anyway thanks for pointing it out.
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
kennethz008
yeah i already notice it, anyway thanks for pointing it out.
No worries dude, with those type of sites for different games normally have the ID at the end of it lol
-
Re: [Release] + [Tutorial] DragonNest Server
Thank you leechclown for the release. You did a good thing.
Good night everyone!
-
Re: [Release] + [Tutorial] DragonNest Server
i just gt disconnected from DB when select server :blink:
any module for xampp btw? to connect to DB...
-
Re: [Release] + [Tutorial] DragonNest Server
irrelevant to the subject, but
Who sells the original file ?
-
Re: [Release] + [Tutorial] DragonNest Server
all set up successful!! but why i can't open the Modified HShield.rar
-
Re: [Release] + [Tutorial] DragonNest Server
When I log in with my character, there are no channels in the list? Need help.
http://i.imgur.com/pPRO0CK.jpg
-
Re: [Release] + [Tutorial] DragonNest Server
http://puu.sh/6dwbA.png
Can anyone help me with this? Idk if I'm doing it correctly... I just made a new query and entered that but I got an error.
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
johnnyla
http://puu.sh/6dwbA.png
Can anyone help me with this? Idk if I'm doing it correctly... I just made a new query and entered that but I got an error.
simply delete the ',' which is after @inyChannelPartnerCode = NULL
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
gda123123
simply delete the ',' which is after @inyChannelPartnerCode = NULL
how about this ?
3. Database
To login you have to change something in the database functions:
DNMembership
P_Login ~Line 329:
--WHERE CAST(CONVERT(char(16), @dt2Now, 121) AS smalldatetime) BETWEEN StartDate AND EndDate;
WHERE @dt2Now BETWEEN StartDate AND EndDate;
DNWorld
P_ModPeriodicReset ~Line 42:
--VALUES (@inbCharacterID, @inyPeriodicResetCode, @IntPeriodicResetValue, CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime));
VALUES (@inbCharacterID, @inyPeriodicResetCode, @IntPeriodicResetValue, @dtmServerTime);
P_ModPeriodicReset ~Line 36:
--, LastModifyDate = CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime)
, LastModifyDate = @dtmServerTime
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Muhamad NAbil
how about this ?
3. Database
To login you have to change something in the database functions:
DNMembership
P_Login ~Line 329:
--WHERE CAST(CONVERT(char(16), @dt2Now, 121) AS smalldatetime) BETWEEN StartDate AND EndDate;
WHERE @dt2Now BETWEEN StartDate AND EndDate;
DNWorld
P_ModPeriodicReset ~Line 42:
--VALUES (@inbCharacterID, @inyPeriodicResetCode, @
IntPeriodicResetValue, CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime));
VALUES (@inbCharacterID, @inyPeriodicResetCode, @
IntPeriodicResetValue, @dtmServerTime);
P_ModPeriodicReset ~Line 36:
--, LastModifyDate = CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime)
, LastModifyDate = @dtmServerTime
i think
replace
WHERE CAST(CONVERT(char(16), @dt2Now, 121) AS smalldatetime) BETWEEN StartDate AND EndDate;
with WHERE @dt2Now BETWEEN StartDate AND EndDate;
-
Re: [Release] + [Tutorial] DragonNest Server
THX SO MUCH~ leechclown.:thumbup1:
I have already succeed to start my server and enter the game.
Here are the pictures I entered the game.
http://sakaivideo.com/success/dn1.jpg
http://sakaivideo.com/success/dn2.jpg
Hope you all success to build your private dn server ! :junglejane:
-
Re: [Release] + [Tutorial] DragonNest Server
btw my character invisible.
what GM command to make it visible.
already try
hide on/off
visible/invisible
but nothing. thanks
-
Re: [Release] + [Tutorial] DragonNest Server
it problem
I Can't Login ?
Incorrect request
http://image.ohozaa.com/i/008/ktDIQd.jpg
:*::*::*::*::*::*::*::*:
-
Re: [Release] + [Tutorial] DragonNest Server
Thx @leechclown for the Release and Tutorial :)
Some question can i change the mssql username and password for the DB
-
Re: [Release] + [Tutorial] DragonNest Server
LeechClown, i wonder DnID_20120628. cannot unpack resource folders. hmm:blush:
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
rainson
I want to know why you have a chinese inteface?
-
Re: [Release] + [Tutorial] DragonNest Server
Okay thanks guys I've gotten into the game successfully. But I have a question. Let's say.. I extract the resource files from GT70 client which has 70 cap and stuff into the GameRes folder of my server, would I be able to use the GT70 client to connect to the server? Looking at the pictures from LeechClown, it looks possible but it might take a bit of work
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
johnnyla
http://puu.sh/6dwbA.png
Can anyone help me with this? Idk if I'm doing it correctly... I just made a new query and entered that but I got an error.
USE [DNMembership]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[P_AddAccount]
@nvcAccountName = N'USERNAME',
@inyAccountLevelCode = 0,
@inyCharacterCreateLimit = 4,
@inyCharacterMaxCount = 4,
@dt2LastLoginDate = NULL,
@vchLastLoginIP = NULL, @IntLastSessionID = NULL,
@vchJoinIP = NULL,
@inyPublisherCode = 4,
@inyGenderCode = NULL, @DaTBirthDate = NULL,
@vchPassphrase = N'PASSWORD',
@inyNationalityCode = NULL,
@inyChannelPartnerCode = NULL
SELECT 'Return Value' = @return_value
GO
:thumbup1:
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
outoflove
i think
replace
WHERE CAST(CONVERT(char(16), @dt2Now, 121) AS smalldatetime) BETWEEN StartDate AND EndDate;
with WHERE @dt2Now BETWEEN StartDate AND EndDate;
ya i know hehe ,but where to replace .that my question huhu
-
Re: [Release] + [Tutorial] DragonNest Server
After restore your database dn_database_clean.
I'm cannot connect in the database
http://image.free.in.th/v/2013/ie/140108035114.png
How to fix it ?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
johnnyla
Okay thanks guys I've gotten into the game successfully. But I have a question. Let's say.. I extract the resource files from GT70 client which has 70 cap and stuff into the GameRes folder of my server, would I be able to use the GT70 client to connect to the server? Looking at the pictures from LeechClown, it looks possible but it might take a bit of work
i already extract Ina new res (v87)but after that, when i start server. GameServer gt critical error :junglejane:
-
1 Attachment(s)
Re: [Release] + [Tutorial] DragonNest Server
-
Re: [Release] + [Tutorial] DragonNest Server
Btw can any1 share gameres.zip please > <
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Melwin
Btw can any1 share gameres.zip please > <
i guess it is available at the last page of the first thread release.
-
Re: [Release] + [Tutorial] DragonNest Server
I have a question
If I need to make account I need to replace USERNAME any Id am I right ? :O and replace PASSWORD
like this ? :O
Quote:
USE [DNMembership]
GO
DECLARE @return_value int
EXEC @return_value = [dbo].[P_AddAccount]
@nvcAccountName = N'Melwin',
@inyAccountLevelCode = 0,
@inyCharacterCreateLimit = 4,
@inyCharacterMaxCount = 4,
@dt2LastLoginDate = NULL,
@vchLastLoginIP = NULL, @IntLastSessionID = NULL,
@vchJoinIP = NULL,
@inyPublisherCode = 4,
@inyGenderCode = NULL, @DaTBirthDate = NULL,
@vchPassphrase = N'12345678',
@inyNationalityCode = NULL,
@inyChannelPartnerCode = NULL
SELECT 'Return Value' = @return_value
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
hakkibulut69
i also got thia too what to do?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
major333
Anyone getting this error at all ? , if so how can you get around it ?
http://i.imgur.com/fij4ZkL.jpg
It's the only thing i have a issue with at the current moment.
you have a problem with me, when exe runs serverLog not get the database
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
jerojm
you have a problem with me, when exe runs serverLog not get the database
well does your sql server is open?
- - - Updated - - -
Quote:
Originally Posted by
Melwin
I have a question
If I need to make account I need to replace USERNAME any Id am I right ? :O and replace PASSWORD
like this ? :O
no idea but does the password should be encrypted?
-
Re: [Release] + [Tutorial] DragonNest Server
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Melwin
double check your configs
-
1 Attachment(s)
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
jerojm
you have a problem with me, when exe runs serverLog not get the database
this is how to do it
open sql management studio
under
security->logins-> find ur DragonNest user
right click
find server roles
and check
sysadmin
Attachment 142950
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
kennethz008
double check your configs
Sorry, I mean when I click start it crash > <
http://i.imgur.com/4j2i8oT.jpg
-
Re: [Release] + [Tutorial] DragonNest Server
I found a little problem...
When click on Cash Shop Button in the game...
The DNCashServer64_DE.exe will crash immediately and I will disconnect from the game.
Any solution ? I'm trying to fix it. :8:
Quote:
Originally Posted by
ctyjason
I want to know why you have a chinese inteface?
Mix With Chinese Client.
-
Re: [Release] + [Tutorial] DragonNest Server
why add account, but password is null!!
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Melwin
can you check your serverstruct? look for the exe's names does it the same name with your server exe files?
Note: i got this error before because my configs are all wrong.
-
Re: [Release] + [Tutorial] DragonNest Server
Anyone know how to fix this?it's happend when i try to enter Saint Heaven:blink:
http://i.epvpimg.com/Xm3Dh.jpg
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
rainson
I found a little problem...
When click on Cash Shop Button in the game...
The DNCashServer64_DE.exe will crash immediately and I will disconnect from the game.
Any solution ? I'm trying to fix it. :8:
That was planned, before this was released. they will not offer support getting the cash shop work you need to accept that fact and try to respect and understand their decision. If you have problem getting items just create it then.
- - - Updated - - -
Quote:
Originally Posted by
nimitz90
Game Res?im not sure :blink:
-
Re: [Release] + [Tutorial] DragonNest Server
Guys , i want ask , Extrct gameress from client to put in db ?
and use *_DE.exe application for game ?
-
Re: [Release] + [Tutorial] DragonNest Server
getting same error as laukinfai001, just translated
http://snag.gy/q4dWB.jpg
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
homura90
this is how to do it
open sql management studio
under
security->logins-> find ur DragonNest user
right click
find server roles
and check
sysadmin
Attachment 142950
yes ... but always fail when run DNLogServer64_ID.exe
Application Crash!
http://www.inipic.com/show-image.php...3f95345bd8b2b4
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Muhamad NAbil
Guys , i want ask , Extrct gameress from client to put in db ?
and use *_DE.exe application for game ?
Give yourself time to read a little more not only in this thread but the earlier thread outside, De.exe should be in the inside of the server files about the 2nd and 3rd question im a little confused, if your talking about the database you need to restore it in the sql server.
-
Re: [Release] + [Tutorial] DragonNest Server
trying to update client but im stuck at .md5 file @.@
Quote:
20140108181401 [debug] LoadPatchVersionInfo Complete : Client Ver[13] / Server Ver[14]20140108181401 [debug] RemoveUsedFile
20140108181401 [debug] InitLauncher Success!
20140108181401 [debug] InitDialog Start!
20140108181401 [debug] InitInterface
20140108181401 [debug] InitWebpage
20140108181401 [debug] InitDialog Success!
20140108181401 [debug] ?Patch Start!
20140108181401 [debug] BeginPatch - Start
20140108181401 [info] Patch Check Version (Client Ver:13, Server Ver:14)
20140108181401 [debug] Patch Step 1 - DownloadPatch Start
20140108181401 [debug] Download Patch Version [00000014]
20140108181401 [debug] URLDownload Start
20140108181401 [debug] Open Internet Session
20140108181401 [debug] Download Total File Size : 1275266494
20140108181401 [debug] Check Downloaded Temp File
20140108181401 [debug] Open Http Connection
20140108181401 [debug] DownLoad Left File Size : 1275266494
20140108181401 [debug] Download File Start
20140108181515 [debug] Download File Success
20140108181515 [debug] MD5 Check Start
20140108181515 [debug] Open Internet Session
20140108181515 [debug] Open Http Connection
20140108181515 [error] Download File Is Not Exist!
20140108181515 [debug] Open Internet Session
20140108181515 [debug] Open Http Connection
20140108181515 [error] Download File Is Not Exist!
20140108181515 [debug] Open Internet Session
20140108181515 [debug] Open Http Connection
20140108181515 [error] Download File Is Not Exist!
20140108181515 [error] MD5 Check Failed!
20140108181515 [error] Download Failed!
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
jerojm
ID? it should be DE right? check your serverstruct
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Muhamad NAbil
Guys , i want ask , Extrct gameress from client to put in db ?
and use *_DE.exe application for game ?
you can use GameRes from the old thread and yes use all the _DE.exe from here...
-
Re: [Release] + [Tutorial] DragonNest Server
I check everything form begin.
But It's still crash :(:
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Open DNLoginServer64_ID.exe:
Search for:
68 74 74 70 3A 2F 2F 67 61 73 2E 67 65 6D 73 63
6F 6F 6C 2E 63 6F 6D 2F 6D 65 6D 62 65 72 2F 31
2F 6C 6F 67 69 6E 2E 6B 72 65 6F 6E 00 00 00 00
Replace with:
68 74 74 70 3A 2F 2F 31 32 37 2E 30 2E 30 2E 31
2F 64 6E 2F 6C 6F 67 69 6E 2E 6B 72 65 6F 6E 2E
70 68 70 00 00 00 00 00 00 00 00 00 00 00 00 00
i dont see any http on *_DE.exe
-
Re: [Release] + [Tutorial] DragonNest Server
I have a question.
If you want to add new patch to do it?
Now I take a distributed client patch is very old.
Thank.
-
Re: [Release] + [Tutorial] DragonNest Server
\DragonNest\Config\DNLOG.INI
Exchanging:
LogDBCount=1
on:
LogDBCount=0
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
veenzaa
trying to update client but im stuck at .md5 file @.@
try learn here . http://xin.gtdn.cc/sin_patch/PatchConfigList.xml how they make autopatch work
http://xin.gtdn.cc/sin_patch
- - - Updated - - -
Quote:
3. Database
To login you have to change something in the database functions:
DNMembership
P_Login ~Line 329:
--WHERE CAST(CONVERT(char(16), @dt2Now, 121) AS smalldatetime) BETWEEN StartDate AND EndDate;
WHERE @dt2Now BETWEEN StartDate AND EndDate;
DNWorld
P_ModPeriodicReset ~Line 42:
--VALUES (@inbCharacterID, @inyPeriodicResetCode, @intPeriodicResetValue, CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime));
VALUES (@inbCharacterID, @inyPeriodicResetCode, @intPeriodicResetValue, @dtmServerTime);
P_ModPeriodicReset ~Line 36:
--, LastModifyDate = CAST(CONVERT(char(16), @dtmServerTime, 121) AS smalldatetime)
, LastModifyDate = @dtmServerTime
guys , where to change function of that db in sql ?
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
kp93
i have this problem.... error Invalid request
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
kennethz008
ID? it should be DE right? check your serverstruct
it happened just the same ..
when using DNLogServer64_DE.exe,, it still failed to cause the Application Crash!
http://www.inipic.com/show-image.php...8122cd939e1b64
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
guys , where to change function of that db in sql ?
it's procedure.
go to database DNMembership >programmability>stored procedure>P_Login
Do the rest same as above step
- - - Updated - - -
Quote:
Originally Posted by
jerojm
I have only Village crash i tried everything don't know where the problem.
Btw you can try to add port 1433 in firewall and add all exe application at firewall for now
-
Re: [Release] + [Tutorial] DragonNest Server
I has a problem DNVillageServer64_DE crash :(
-
1 Attachment(s)
Re: [Release] + [Tutorial] DragonNest Server
i dunno what to say.... i use 127.0.0.1 as for all server config and this show
Attachment 142955
there are no channel show after put in id and pass
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
homura90
i dunno what to say.... i use 127.0.0.1 as for all server config and this show
Attachment 142955
there are no channel show after put in id and pass
how about the webserver?
-
Re: [Release] + [Tutorial] DragonNest Server
Db Log :O
Quote:
'20:52:37' ** InitApp Failed!!! Check!!!!!
'20:52:40' ResourceNation String [_id]
'20:52:40' ManagedID(SID) [1006]
'20:52:40' ResourcePath [C:\DNServer\GameRes]
ResourceRevision [Unknown Version]
'20:52:40' ServiceManager [IP:127.0.0.1][Port:8501]
'20:52:40' CashServer (WorldID:1, AcceptPort:12600)
'20:52:40' LogInfo (Ip:127.0.0.1, Port:3000)
'20:52:40' MembershipDB Connect Info(Ip:127.0.0.1, Port:1433 DBID:DragonNest DBName:DNMembership)
'20:52:40' WorldDB Connect Info(Ip:127.0.0.1, Port:1433 DBID:DragonNest DBName:DNWorld)
'20:52:40' (null) Count(1243408)
'20:52:40' GlobalWeightTable failed
'20:52:40' (null) Count(1242848)
'20:52:40' CashCommodity failed
'20:52:40' (null) Count(1242944)
'20:52:40' CashPackageTable failed
'20:52:40' (null) Count(1243312)
'20:52:40' CashLimitTable failed
'20:52:40' (null) Count(1243104)
'20:52:40' ItemTable failed
'20:52:40' (null) Count(1243216)
'20:52:40' PlayerLevelTable failed
'20:52:40' (null) Count(1243328)
'20:52:40' vehicletable failed
'20:52:40' (null) Count(1242784)
'20:52:40' vehiclepartstable failed
'20:52:40' (null) Count(1242592)
'20:52:40' MailTable failed
'20:52:40' (null) Count(1243424)
'20:52:40' guildwarmailtable failed
'20:52:40' (null) Count(1243072)
'20:52:40' JobTable failed
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
kennethz008
how about the webserver?
all my webserver is running fine... but dont know why still dont have channel list show up!
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Muhamad NAbil
i dont see any http on *_DE.exe
This EXE's already build in with 127.0.0.1
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
11. Go to part 2 previous folder, into Res subfolder, extract both zips, GameRes and VillageRes.zip, both of their contents should go to dr/GameRes and dr/VillageRes for make the GameServer and VillageServer work.
OMG I found it XD
-
Re: [Release] + [Tutorial] DragonNest Server
everting fine but shop mall still can't use
Please help me ~
i just get mgs like this :-
http://img541.imageshack.us/img541/2810/rb2e.png
-
Re: [Release] + [Tutorial] DragonNest Server
can anyone teach me . .i still figure it out how want to make it. .u said first step unpack server file . .then he ask a pasword how can i make it
-
Re: [Release] + [Tutorial] DragonNest Server
Quote:
Originally Posted by
Ricky Mso
Read:
Quote:
Originally Posted by
DaRealFreak
Nuub, now you did it^^
Just saying, the cash shop is crashed and we won't help anyone with fixing it ;)
Let the Dragon Nest Servers rise :3
- - - Updated - - -
Quote:
Originally Posted by
ShlshensGs Xiao
can anyone teach me . .i still figure it out how want to make it. .u said first step unpack server file . .then he ask a pasword how can i make it
Read part 9 of the first post.
-
Re: [Release] + [Tutorial] DragonNest Server
-
Re: [Release] + [Tutorial] DragonNest Server
An excellent release, MentaL has been notified, and if you guys keep up the good work, I see a new section for DragonNest coming soon.
Good job guys, almost had to delete no posts in this thread of people breaking rules.