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!

Dragon Nest Mobile

Experienced Elementalist
Joined
Dec 17, 2004
Messages
206
Reaction score
29
:ehh:Can change the ip to online? Can you recommend? Thank you. How to Port Forwarding?
02 - Dragon Nest Mobile - RaGEZONE Forums 01 - Dragon Nest Mobile - RaGEZONE Forums 03 - Dragon Nest Mobile - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Jan 6, 2005
Messages
500
Reaction score
79
anyone have API for this game? v1.5.29


{
"retcode":0,
"retmsg":"success",
"data":{
"uid":"1080087876",
"ipv4":"192.168.0.10",
"indulge":0,
"uname":"nhed75",
"KL_SSO":"BuBtPfeRibOLTUtaoihmF8d-nUiQkbPw6ASpyVOtaM-niVAzFwfqgzikJqLUTZjIf25T-ykjvrZBTalH6zWa_bUyyhrUIyzhJZght_f8cZ8l8NMWIeqH36vKNTgxP6xXXIOSImHZUQOBElPfRN296_CIWJQ-WTah2z9WwLmNLG80",
"KL_PERSON":"xoQl8Qj3TMyPt.bVsqyfr8x3vUHd9TYOB5ffNV-zIn8gmXDv9XthL.-8uySO6vT-VjSOTde1o2ZDQEVu1HI4KyjR4UlpQ-4i8NaqHHqCXChJMOQq.2vJONimOUMt2dumdk26btWYWMC8SzYNZDIF74_yBWJv.EeAJEaL4gOJ77p8KBHXdTBNLumXA8mAtG1_6245rhvkC7IQeqmrcKnDd4lQJ8YFseJtO8Dz-VkNRpsDmP7Q33zNW73.et2fmtzn76Hr.ZFtiUxdswqH-vqcZQ00",

"isnew":"true"
}
}
 
Experienced Elementalist
Joined
Dec 17, 2004
Messages
206
Reaction score
29
--==Dragon Nest Mobile THai TEST Online==--

 
Last edited:
Junior Spellweaver
Joined
Aug 6, 2005
Messages
118
Reaction score
16
fix open all mount slot edit server GlobalConfig.txt
PetSeatBuy 坐骑栏花费 0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0|0

and open Jade for 6 slot config JadeSlot.txt

EquipSlot JadeSlotAndLevel
装备部位 龙玉部位形状及开启等级(形状=等级|...)
0 2=16|2=24|1=40|1=50|1=60|1=60
1 2=16|2=24|1=40|1=50|1=60|1=60
2 2=16|2=24|1=40|1=50|1=60|1=60
3 2=16|2=24|1=40|1=50|1=60|1=60
4 2=16|2=24|1=40|1=50|1=60|1=60
5 1=16|1=24|2=40|2=50|1=60|1=60
6 1=16|1=24|2=40|2=50|1=60|1=60
7 1=16|1=24|2=40|2=50|1=60|1=60
8 1=16|1=24|2=40|2=50|1=60|1=60
9 1=16|1=24|2=40|2=50|1=60|1=60

Please check pm , is good !
 
Experienced Elementalist
Joined
Dec 17, 2004
Messages
206
Reaction score
29
Hello. Please tell me how to change. Text here Thank you very much :(:
mass - Dragon Nest Mobile - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Experienced Elementalist
Joined
Dec 17, 2004
Messages
206
Reaction score
29
How to Fix Solve the problem of slow connection and the item cannot be used. Thank you very much. 01 - Dragon Nest Mobile - RaGEZONE Forums 02 - Dragon Nest Mobile - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Jun 20, 2014
Messages
143
Reaction score
17
hi sir, i am change version to 0.0.0 always Connection is broken and after i can version 1.2.0 i got Connection is broken, how to fix to use this apk, i am change to all version always get error connection is broken
Client ENG Version 1.2.0 edit version to 0.0.0
 
Joined
Apr 27, 2012
Messages
159
Reaction score
17
anyone else getting a error trying to open the config.cfg file with unityex along the lines of error size lz4 in data stream? cant get unityex to open the config file to change ip for client.

edit
missing voipparam.xml file for audioserver
 
Last edited:
Joined
Apr 27, 2012
Messages
159
Reaction score
17
just a preview of what im working on to read and edit global settings client side.
if any of you have dev exp with RF online yall should know what im using.
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Apr 27, 2012
Messages
159
Reaction score
17
so ive found this
Code:
		public static void CheckDelay()
		{
			Rpc._is_rpc_delay = false;
			float realtimeSinceStartup = Time.realtimeSinceStartup;
			Rpc._rpc_delayed_time = 0f;
			Monitor.Enter(Rpc.sm_RpcWaitingReplyCache);
			for (int i = 0; i < Rpc.sm_RpcWaitingReplyCache.Length; i++)
			{
				Rpc rpc = Rpc.sm_RpcWaitingReplyCache[i];
				if (rpc != null && rpc.GetRpcType() != 30514u && rpc.GetRpcType() != 28358u && rpc.GetRpcType() != 45201u && rpc.GetRpcType() != 39595u)
				{
					float num = realtimeSinceStartup - rpc.sendTime;
					if (Rpc._rpc_delayed_time < num)
					{
						Rpc._rpc_delayed_time = num;
					}
					if (num > Rpc._delayThreshold)
					{
						Rpc._is_rpc_delay = true;
						Rpc.delayRpcName = rpc.ToString();
						break;
					}
				}
			}
			Monitor.Exit(Rpc.sm_RpcWaitingReplyCache);
		}

inside of 8004e77ad2524e04ab55692676aadb75 in the dn9568 client inside of xMainClient.txt which is really xMainClient.dll.

place this
inside assests/bin/data folder of client and compile. will fix network issue that happens every few seconds in dn9568 aka multi lang client.

also looking for someone that knows how to do patches so dont have to recompile everytime. in process of matching server and client.
 
Last edited:
Joined
Apr 27, 2012
Messages
159
Reaction score
17
by luck tbh. been going though each and every file cuz trying to match server to client but havent found anything that gives any hints as to what file is what in client data folder.

does anyone have a list for client side files to serverside files? going though 20k+ client files one by one to see what they are is a pain. trying to match client to server atm. side not 3+ hours not a single network issue with my fix. for those wondering what i did. just added a NOP with dnspy to CheckDelay where it would return true. so its always false now. not sure what kind of bugs it could introduce but so far its working fine

still no luck on how client side names are done. thought it was a hash of the serverside file name but nothing. tried every hash tool could think of to generate client hash of 113_9_sc.txt sunce i would the client file but nothing so far. any help would be nice at this point.

just a update. found client side PlayerLevel to sort out the crappy level xp. level far to fast if you ask me.
also sorted out file structure for most part to make it readable and editable. Untitled - Dragon Nest Mobile - RaGEZONE Forums

depending on what client u are using its either in update folder as 973252442.ab or in data folder as 75eedd886b9fe4c2bada3e657466da7f

still needing someone that knows how to make "updates" that working and how to generate the .ab name and manifest

also need a bit of help looking for there the link is for refill.dn9568 in the dn9568 client pretty sure its in one of the files in data but because of the amount of files its taking forever to look though them

found this. 2 year old source to mobile havent looked at it yet tho since not my skill set. should be from around the time date of server exe dates
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Apr 27, 2012
Messages
159
Reaction score
17
dug into the updating a bit to be able to use mini client like on app store. it seems that the "update server" is missing. has to be in one of the releases on the cn site though. could someone who has access look into it plz.
 
Back
Top