Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

.cup manual patch help

Newbie Spellweaver
Joined
Nov 6, 2010
Messages
92
Reaction score
5
Okay so im new to doing patches and what not well first let me start off by saying i know theirs a ton of posts about this already but the English in them is so bad it makes it hard to understand and alot aren't explaining what i need okay so i changed some stuff in elements.data and i wanna make a patch to where they download and double click it i guess manual update is the word im looking for can anyone give me a step by step or something i learn pretty fast XD but yea would be awesome thanks for your time ^^
 
The same thing was asked a few days ago.
It was asked by someone called lolumad or something close to that.
Why don't you look back a little , search through threads and find it, instead of posting a new topic?
 
Upvote 0
thanks guys i found it i searched believe me but his didnt come up i guess someone can delete this post now and thanks
 
Upvote 0
have been searching an hour and i haven't found anything useful "use CPW" "orly? cool too bad as far as i know CPW is for auto patching" thats pretty much what its been the entire time i just need a detailed tut on making a manual patch
 
Upvote 0
manual patch is simply cpw files inside a packed archive....

not trying to be a **** but that means nothing to me ive never even heard of CPW much less used it XD im a complete nub to this part of server stuff i know it may seem like im sitting here asking you to spoon feed me but that's not the case im just absolutely clueless
 
Upvote 0
okay so i need to search forums to find a download of CPW? or is the one in 343s pwdev release good?
 
Upvote 0
Taken from Readme file inside 343's release...
Code:
This release comes with CPW pre-installed and pre-configured...

All you must do is fully un-pack and place your entire client in /opt/cpw/files/new/

*Please note that /opt/cpw/files/new/ *CANNOT* contain any PCK's (you must fully un-pack your client [do NOT forget PCK's in sub-directories {ie... element/help/}])

Example -- The file loginpage.ini from the pack configs.pck would be (found/put) in:
/opt/cpw/files/new/element/configs/loginpage.ini

or, the file list.txt from the pack script.pck would be (found/put) in:
/opt/cpw/files/new/element/help/script/list.txt

*Please also note that you must be cautious to preserve files and directories that contain Chinese characters in their name...
One program I recommend using is 7zip, because it saves in UTF32 - this will preserve our Chinese file and directory names...

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

STEP 1) FULLY UN-PACK CLIENT AND PLACE IN:
        /opt/cpw/files/new/

STEP 2) RUN BASE BUILD:
        ./cpw initial

STEP 3) TO CREATE PATCHES - PLACE NEW FILES IN:
        /opt/cpw/files/new/

   3.B)
        ./cpw revision [revision_number]

        or

        ./cpw new [revision_number]

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Content of a Patch CUP (manual patch file):

ec_patch_0-1.cup
ec_patch_0-1.cup/version
ec_patch_0-1.cup/v-1.inc
ec_patch_0-1.cup/element/*.* (where the new files are)

Create a .CUP using PW-PACK (or sPCK, etc...)
Files are found (file names are in base64) in /opt/cpw/files/CPW/
 
Upvote 0
O_o inside my CPW file is just repack and unpack no read me's but thx for your help

i wont have to unpack all these .pck files everytime i update will i?

okay so quick quest i unpack all my .pck files from my client on my desktop and put only the unpacked folders into /opt/cpw/files/new or my entire client folder?
 
Upvote 0
O_o inside my CPW file is just repack and unpack no read me's but thx for your help

i wont have to unpack all these .pck files everytime i update will i?

okay so quick quest i unpack all my .pck files from my client on my desktop and put only the unpacked folders into /opt/cpw/files/new or my entire client folder?

Entire game but all .pck unpacked as described in the readme...
 
Upvote 0
Entire game but all .pck unpacked as described in the readme...

yea i get some error when i try that
building/model/d/q36???.mox does not exist
System Error. Code: 123.
The filename, directory name, or volume label syntax is incorrect
am i doing something wrong?
(btw im using winscp to get unpacked files and client over too /opt/cpw/files/new should i not be? and how else would i do it?)
 
Upvote 0
well i know winscp doesnt is there any other way to get files there?maybe make and ISO out of my client and mount it cp -R * / it into /opt/cpw/files/new or something?
 
Upvote 0
Indeed, that's what the pw_client un-packed is for on my release. It's an ISO of a 7z (to preserve the Chinese file names)...

Or of course the best thing to do would be to manually (fully) un-pack your client then compress into a 7z - then make an ISO.

I personally never use WinSCP or any other networked file transfer system/method for transferring files between systems with different OS's... I tend to make ISO's or use physical media (USB drives, optical discs)... :wink:

I find that to be the most reliable.
 
Upvote 0
Back