- Joined
- May 23, 2009
- Messages
- 176
- Reaction score
- 46
Hi guys , I believe this is a really good new to the development of this game .
After a little research I've 'discovered' how to extract this files, and as I soon as I discovered it I'm posting it to the community. Let's rock this game!
This is pretty simple , what I did is to check the config of the launcher and 'emulate' the patch server. After that...ask the launcher to 'download' the patch files and all we need is to let it unpack them. As simple as that :scared:
Steps :
-Download Apache and install (
-Emulate the config files...if you are going to use my config files just use paste the attached folder to /htdocs View attachment dbo.rar
The important part of the PatchServerConfig.xml file is this
Now , let's check PatchVerList.xml
After you're done with that all you have to do is to paste the .RTP files you've config in the patcher to dbo/patch folder (in this example 0.47.00.RTP).
Now that we are done with the 'emulation of the patching server' , all we have to edit is the launcher by editing the PatchVerList.xml
launcher folder :
Patch server :
Launcher Downloading :
Launcher Patching :
Client Updated

After a little research I've 'discovered' how to extract this files, and as I soon as I discovered it I'm posting it to the community. Let's rock this game!
This is pretty simple , what I did is to check the config of the launcher and 'emulate' the patch server. After that...ask the launcher to 'download' the patch files and all we need is to let it unpack them. As simple as that :scared:
Steps :
-Download Apache and install (
To view the content, you need to sign in or register
is easier)-Emulate the config files...if you are going to use my config files just use paste the attached folder to /htdocs View attachment dbo.rar
The important part of the PatchServerConfig.xml file is this
Code:
<!-- 패치 관련 정보 -->
<PATCH_PATCH_SVR_MASTER_MODE>TRUE</PATCH_PATCH_SVR_MASTER_MODE> <!-- MASTER MODE TRUE : Enable , FALSE : Disable-->
<PATCH_PATCH_SVR_ENABLE>1</PATCH_PATCH_SVR_ENABLE> <!-- 패치 가능 유무 1 : Enable , 0: Disable-->
<PATCH_PATCH_SVR_IP>[COLOR="#B22222"]localhost[/COLOR]</PATCH_PATCH_SVR_IP>
<PATCH_PATCH_SVR_PATH>[COLOR="#FF0000"]dbo/patch[/COLOR]</PATCH_PATCH_SVR_PATH>
<PATCH_PATCH_SVR_FILENAME>PatchVerList.XML</PATCH_PATCH_SVR_FILENAME>
<!-- 무결성 관련 정보 -->
<PATCH_INTEGRITY_SVR_ENABLE>0</PATCH_INTEGRITY_SVR_ENABLE> <!-- 무결성 가능 유무 1 : Enable , 0: Disable-->
<PATCH_INTEGRITY_SVR_IP>patchdbo.wasabii.com.hk</PATCH_INTEGRITY_SVR_IP>
<PATCH_INTEGRITY_SVR_PATH>Download/DBO_CT_HK_Release/Patch/ClientFullVer</PATCH_INTEGRITY_SVR_PATH>
<PATCH_INTEGRITY_SVR_FILENAME>Integrity.dat</PATCH_INTEGRITY_SVR_FILENAME>
Now , let's check PatchVerList.xml
Code:
<?xml version="1.0" encoding="euc-kr"?>
<PatchList>
<ClientDiffRtPatch>
[COLOR="#B22222"] <Data Ver="0.47.00" PatchFile="0.47.00.RTP" Date="0810"/>[/COLOR]
</ClientDiffRtPatch>
<ClientFullRtPatch>
<Data Ver="0.47.00" PatchFile="0.47.00.RTP"/>
</ClientFullRtPatch>
<LauncherFullRtPatch>
<Data Ver="0.3.38" PatchFile="LAUNCHERFULL.RTP"/>
</LauncherFullRtPatch>
</PatchList>
After you're done with that all you have to do is to paste the .RTP files you've config in the patcher to dbo/patch folder (in this example 0.47.00.RTP).
Now that we are done with the 'emulation of the patching server' , all we have to edit is the launcher by editing the PatchVerList.xml
Code:
<?xml version="1.0" encoding="utf-8"?>
<CONFIG>
<INIT_CONNECTION_SVR_IP>localhost</INIT_CONNECTION_SVR_IP>
<INIT_CONNECTION_SVR_PATH>dbo</INIT_CONNECTION_SVR_PATH>
<INIT_CONNECTION_SVR_FILENAME>PatchServerConfig.XML</INIT_CONNECTION_SVR_FILENAME>
</CONFIG>
launcher folder :
Patch server :
Launcher Downloading :
Launcher Patching :
Client Updated
To view the content, you need to sign in or register