PDA

View Full Version : The Pre-patcher Thread



Fiel
2008-08-01, 05:34 AM
GMS-only

Want pre-patcher support? Consider donating (http://www.southperry.net/forums/showthread.php?t=330).

Note: Even if I'm not able to post the pre-patcher before the Nexon servers come online, I will still be posting a pre-patcher in this topic as soon as I am able. Many users have reported the futility of using the Nexon auto-patcher and would prefer to use this pre-patcher instead.

I am not your tech support. You do this at your own risk. These pre-patchers are not endorsed by or affiliated with Nexon America in any way, shape, or form.

Link (0.60 - 0.61) --> http://rapidshare.com/files/154359669/00060to00061new.exe.html

Link (0.58 - 0.59) --> http://rapidshare.com/files/137336596/00058to00059.exe <--- this is the one updated as of 3:17 PM on the FTP
(MD5: 5a0641ca5b7789a77410c51eeb546f4e) (Size: 28,483,584 bytes)

Link (0.55 - 0.56) --> http://www.megaupload.com/?d=IKQ9UI89
(MD5: 7bf049cfc23225ca5690f545e4f93116) (Size: 171,151,360 bytes)

Due to the Character.wz bug, no 0.55 pre-patcher will be posted.

1. What is a pre-patcher?
2. How do you create a patcher early?
3. Why should I trust this? Is there a keylogger?
4. But what about people who have their games corrupted by using this patcher? They have to redownload the entire game to keep playing Maple!
5. I can't use this patcher because it says that Base.wz is corrupted OR My patcher keeps freezing at Base.wz
6. What if they change the patch data after I've patched?
7. I don't get it. How do I use this patcher?
8. I created my own pre-patcher, can you include the link to it in this thread?
9. How do I create my own manual patcher?

1.Q: What is a pre-patcher?
1.A: A pre-patcher is an executable file that will patch your game before the Nexon login servers come up. Using this pre-patcher means that immediately once the Nexon login servers come online, you will not need to use the auto-patcher in order to play the game.

2.Q: How do you create a patcher early?
2.A: Nexon posts the *.patch files online before the login servers come up. It's possible to create a pre-patcher using those files on the FTP.

3.Q: Why should I trust this? Is there a keylogger?
3.A: There are several reasons why this is a trustworthy program:

1. The source for how to create this pre-patcher in Python is provided below (super easy to make in Python too!):




#!/usr/bin/python

import struct
import cStringIO
import os
import time
import zlib

def Main(OldVer, NewVer):
#Read old Nexon Patcher
PrintLog('%sto%s - Reading manualpatch.base file' % (OldVer, NewVer))
Base = openfile('manualpatch.base', 'rb')
BaseData = CheckBase(Base.read(), OldVer, NewVer)
Base.close()

#Read the patch data
PrintLog('%sto%s - Reading the patch data' % (OldVer, NewVer))
Patch = openfile(OldVer + 'to' + NewVer + '.patch', 'rb')
PatchData = CheckZLIB(Patch.read(), OldVer, NewVer)
PatchSize = len(PatchData)
Patch.close()

#Read the patch text file
PrintLog('%sto%s - Reading the notice file' % (OldVer, NewVer))
Notice = cStringIO.StringIO('Created by Fiel - Southperry.net\r\nPatch 0.%s' % RemoveZeros(NewVer))
NoticeData = Notice.read()
NoticeSize = len(NoticeData)
Notice.close()

#Constructing the ManualPatcher
PrintLog('%sto%s - Creating the Manual Patcher' % (OldVer, NewVer))
ManualPatcher = openfile(OldVer + 'to' + NewVer + '.exe', 'wb')
ManualPatcher.write(BaseData)
ManualPatcher.write(PatchData)
ManualPatcher.write(NoticeData)
ManualPatcher.write(struct.pack('L', PatchSize))
ManualPatcher.write(struct.pack('L', NoticeSize))
ManualPatcher.write(struct.pack('BBBB', 0xF3, 0xFB, 0xF7, 0xF2))
ManualPatcher.close()
PrintLog('%sto%s - Manual Patcher created successfully!' % (OldVer, NewVer))

def PrintError(StringError):
f = open('PatcherLog.txt', 'a')
f.write('%s : ERROR - %s\n' % (time.strftime('%x (%H:%M)'),StringError))
f.close()
exit(-1)

def PrintLog(StringLog):
f = openfile('PatcherLog.txt', 'a')
f.write('%s : %s\n' % (time.strftime('%x (%H:%M)'),StringLog))
f.close()

def openfile(FileName, OpenType):
try:
f = open(FileName, OpenType)
except IOError:
PrintError('File %s does not exist. Please make sure the file is in all lowercase letters.' % (FileName))
return f

def RemoveZeros(string):
if string[0] == '0':
string = RemoveZeros(string[1:])
return string

def CheckBase(BaseFile, OldVer, NewVer):
if hex(struct.unpack('H', BaseFile[0:2])[0]) == '0xda78':
BaseFile = zlib.decompress(BaseFile)
crc = zlib.crc32(BaseFile)
PrintLog('%sto%s - Checking the manualpatch.base file for the correct version.' % (OldVer, NewVer))
if crc != 562146221:
PrintError('manualpatch.base file is the wrong version. Please download the newest version from southperry.net/manualpatch.base')
else:
return BaseFile

def CheckZLIB(PatchFile, OldVer, NewVer):
text = PatchFile[16:len(PatchFile)]
PrintLog('%sto%s - Checking the *.patch file for errors' % (OldVer, NewVer))
try:
zlib.decompress(text)
except:
PrintError('%sto%s.patch is corrupt.' % (OldVer, NewVer))
return PatchFile

def FindPatches():
patchnames = []
ManualPatchBase = 0
for file in os.listdir('.'):
if file[-6:] == '.patch':
x = file.replace('.patch','')
x = x.split('to')
if len(x) != 2:
PrintError("Patch file name '%s' is incorrect. It must be in the format 'XtoY.patch' where X is your current version and Y is the version you're patching to." % file)
PrintLog('Found patch file %s' % file)
patchnames.append(x)
elif file == 'manualpatch.base':
ManualPatchBase = 1
if patchnames == []:
PrintError('There are no *.patch files in your current directory.')
if ManualPatchBase == 0:
PrintError('manualpatch.base does not exist. Please download it from southperry.net/manualpatch.base to your current directory')
return patchnames

Versions = FindPatches()
for OldVer, NewVer in Versions:
Main(OldVer, NewVer)



2. Another common objection to this pre-patcher is that there is a noticeable size difference between my own pre-patcher and Nexon's official patcher (usually on the order of about 1 megabyte). The reason for this is that Nexon's newer patcher contains a lot of useless GUI-related items in their patcher. This pre-patcher does away with a lot of that, therefore resulting in a slightly smaller patch size.

4.Q: But what about people who have their games corrupted by using this patcher? They have to redownload the entire game to keep playing Maple!
4.A: That is always a risk, but not a risk that can't be avoided with due precaution. Before you use the patcher, copy your entire Maplestory folder and save it to another directory. Use the pre-patcher on your original Maplestory folder. If the pre-patcher fails, use your backup copy instead.

5.Q: I can't use this patcher because it says that Base.wz is corrupted OR My patcher keeps freezing at Base.wz
5.A: This is another common problem dealing with all of Nexon's patchers, whether it's using this pre-patcher or the manual patcher on their website. To alleviate this problem somewhat (especially because I've never had this problem with any patcher I've created), I've included my own base.wz file that I've used to patch to the newest version. Try to use this base.wz file instead of your own for a greater success in patching.

If you're still having problems with a stuck patcher, see vnc's thread (http://www.sleepywood.net/forum/showthread.php?t=1217887) on how to "unstick" it.

6.Q: What if they change the patch data after I've patched?
6.A: That's a possibility, and it has happened a few times before. In that case, I will remove the link for that patch as soon as possible and upload a new patcher. Secondly, if you take careful precaution as done in the "corrupted games" question above, this shouldn't be an issue for you.

7.Q: I don't get it. How do I use this patcher?
7.A: Follow these simple steps:
Click on the Megaupload link
On the top portion of the screen to the right of the MegaUpload logo, it states "Please enter ____ here:" Type those three letters/numbers into the box. Click download.
Wait for the 45 seconds, then click on "download" under the free column. Download the ZIP file to your Maplestory directory.
Go to your Maplestory directory and double click on the ZIP file. There should be two files inside the zip file - Base.wz and ManualPatcher.exe. Run ManualPatcher.exe
The program now needs to know where Maplestory is installed. Usually the program can auto-detect where the installation is, but this auto-detection can be incorrect if you have multiple versions of Maple (JMS, KMS, EMS) installed on your computer. Make sure that you select the correct directory.
Click OK. Maplestory will begin patching!

If you can't figure out how to use the pre-patcher past this point, there's really nothing else I can do to help you.

8.Q: I created my own pre-patcher, can you include the link in this thread?
8.A: In the interest of security for the general population of Maplers, I will not be accepting any links for any other pre-patchers

9.Q: How do I create my own manual patcher?
9.A: These directions will change from patch to patch due to the version numbers. But simply replace "55" in the following with your current version number and "56" with the version you're patching to.

Here's how you can make a pre-patcher yourself

1)Install Python(http://www.python.org/download/)
2)Copy Fiel's script in the spoiler into a text document. Click File --> Save As. In the "Save as type" combo box, change the option to "All Files". Save the document as "patcher.py".
3)Download the ManualPatch.base file from www.southperry.net/manualpatch.base
4)Download the patch file from ftp://patch.mapleglobal.com/Maple/patch/patchdir/
5)Put the patcher.py, manualpatch.base, and the patch file in the same folder (desktop works)
6)Double-click patcher.py

The patcher.py script also creates a verbose log of everything it does. Check the PatcherLog.txt file that appears if your manual patcher is not created.

After double-clicking the *.py a command prompt should pop up and when it's gone the patcher should be created.

Tamekii
2008-08-01, 08:55 AM
YAY!Pre-Patcher Thread is back =)

DrRusty
2008-08-01, 09:07 AM
definently gonna help me out =D
I wonder when the next patch will be? Can't wait for crimsonwood

Slip
2008-08-01, 12:19 PM
definently gonna help me out =D
I wonder when the next patch will be? Can't wait for crimsonwood
I would say next week.

Nexon still owes us an August patch.

Hurray! Pre-patcher's back!

silverquiver
2008-08-01, 12:25 PM
Fiel delivers! :wink: This should really come in handy with most of my friends, they always get problems when auto-patching.

Rain
2008-08-02, 07:28 PM
Yay! Thankyou Fiel! I can't wait to use this!:shine:

Moti
2008-08-03, 01:53 AM
Woot!
Thanks alot, Fiel. Due to my failure internet I'm having a problem auto-patching, so this is gonna help me alot, especially for the CK patch, which sounds big.

MiSSHaku
2008-08-03, 03:02 AM
Thanks for making the Pre-Patcher public again.:heart:

Fiel
2008-08-10, 06:39 PM
In the first post I've updated the manual patch creator to be a "stronger" creator. It can now detect more technical errors and it will create an error log for the user if the program runs into an error.

jrvillarreal
2008-08-10, 06:46 PM
I...love you...:glitter:just not in a gay way:f3:

MechMike
2008-08-11, 10:29 AM
This.

Is.

Awesome.


I hated the normal patcher when all the fucking 7 year olds are clogging up the server...

Tamekii
2008-08-11, 11:12 AM
Cant wait till v59 prepatcher is released...

Also,Fiel..gimmie the Chinchilla on your avatar pleaaaaaaaaaasee??@_@

Chanpz
2008-08-12, 09:36 AM
Fiel :heart:
Thanks for making it public again, SP will be crowded now :glitter:

Fiel
2008-08-12, 08:06 PM
No, I didn't upload a pre-patcher.

I just wanted to say that I updated the patcher script on the first page. Now the script will search through your current folder to find the *.patch files to use. You don't need to edit the script any more to put in the version numbers. Also, the patcher script creates a verbose log of everything it does for the user to see in a text file.

Tikey
2008-08-13, 12:08 AM
Oh, I've noticed the ManualPatch.base link doesn't work. Could you possibly upload it somewhere else?

Fiel
2008-08-13, 12:38 AM
Oh, I've noticed the ManualPatch.base link doesn't work. Could you possibly upload it somewhere else?

Nah, it's just case sensitive and I'm bad like that:

http://www.southperry.net/manualpatch.base

Fiel
2008-08-13, 04:39 AM
The pre-patcher is currently being uploaded.

The extraction is now being shown to donators.

Nikkey
2008-08-13, 04:43 AM
The pre-patcher is currently being uploaded.

The extraction is now being shown to donators.

Wouldn't there be a high chance of patch-issues? I would assume that they may reupload the .patch stuff, at least there would most likely seem to be a chance for it.

Fiel
2008-08-13, 04:46 AM
Wouldn't there be a high chance of patch-issues? I would assume that they may reupload the .patch stuff, at least there would most likely seem to be a chance for it.

If that happens, then I'll just re-upload. It's not a problem, really.

Fiel
2008-08-13, 04:49 AM
Pre-patcher is posted.

Berzerk
2008-08-13, 05:02 AM
I would recommend making a second copy of your MapleStory Folder. We can't be 100% certain that these will be the patch files for tomorrow, can we? I have no clue, but it seems like if they patch using this, then they do use new files I don't know how you could patch from .59->.59. Again, I have no clue. But It wouldn't hurt to make an extra copy. :P

Russt
2008-08-13, 05:06 AM
Yeah, a backup would probably be a smart idea.
-patches-
When will regular users get to see the extraction? When the patch is officially released?

Fiel
2008-08-13, 05:14 AM
Yeah, a backup would probably be a smart idea.
-patches-
When will regular users get to see the extraction? When the patch is officially released?

When the time is right.

Berzerk
2008-08-13, 06:38 AM
Paul, there's a new patch file up. :/ It was edited like, an hour and 20 minutes after the one you made the pre-patcher for.

Fiel
2008-08-13, 09:07 AM
yeah, I'm uploading a new one. The updated version didn't change all that much anyway.

MaxHudson
2008-08-13, 09:50 AM
Edit Crap had way to many tabs up and posted here X_X...


Woot! Prepatcher ;D

izzyness
2008-08-13, 10:29 AM
My manualpatch.base file seems to always get to around 22/23 % downloaded then just pauses o-o
What should i do ? =X

Devil
2008-08-13, 10:32 AM
My manualpatch.base file seems to always get to around 22/23 % downloaded then just pauses o-o
What should i do ? =XCheck if you have enough free harddisk space for the patch to re-write the .wz files. :)

izzyness
2008-08-13, 10:33 AM
Check if you have enough free harddisk space for the patch to re-write the .wz files. :)

Yep .. I have around 80GB hard disk space left o-o

Edit: Had to use a download accelerator , but i got it x]

Civies
2008-08-13, 11:50 PM
Thanks :)

InTraining
2008-08-14, 12:10 AM
My manualpatch.base file seems to always get to around 22/23 % downloaded then just pauses o-o
What should i do ? =X


Yep .. I have around 80GB hard disk space left o-o

Edit: Had to use a download accelerator , but i got it x]

accelerator? Mine seems to get stuck at the very last part, "3/3 Applying: Base.wz"... The play button should light up when its done right? :eek:

Firefux
2008-08-14, 12:12 AM
Downloading the file atm, and taking a rather long time at that xP

EDIT: Patching now, everything's going good so far.

EDIT 2 : Done patching, hope the files dont change lol.

SuGaRnSp1C3
2008-08-14, 12:39 AM
Thanks so much :heart:..patcher is done! only took about 20 minutes total <3

Borakins
2008-08-14, 12:41 AM
It got stuck at [3/3]Applying:Base.wz

Anyone upload their Base.wz ?

ItzLouis
2008-08-14, 01:33 AM
The Patch went through smoothly. Took less then 10 minutes to patch. :shine: Thank you very much. ^_^

HiiEN
2008-08-14, 01:34 AM
Worked for me, thanks again

Borakins
2008-08-14, 01:35 AM
upload base.wz please. i cant finish patch

Kalovale
2008-08-14, 03:47 AM
This may be superfluous but I love you Fiel. <3

ItzAnth
2008-08-14, 04:02 AM
Thanks for the pre-patcher Paul :D

kIkO
2008-08-14, 04:55 AM
worked fine
te amo fiel :D <3

Kalovale
2008-08-14, 05:52 AM
First I got frozen at base.wz like some here, later I borrowed a friend's base.wz, resumed patching and I ended up getting stuck at character.wz, is it just my luck or all my Maple files are corrupted?

Mickey
2008-08-14, 07:08 AM
Well I've just used the 58 to 59 and seems to have all gone smoothly for me. Thanks again Fiel :D

Kranzorbaken
2008-08-14, 07:17 AM
how do i make an extra maple story file incase it messes this one up

Nick
2008-08-14, 07:24 AM
I got a friend to give me Base.wz, but now Character.wz is getting stuck...

SuGaRnSp1C3
2008-08-14, 08:39 AM
how do i make an extra maple story file incase it messes this one up

...it's in the directions.. but meh.. you just copy & paste your entire "Nexon" folder and put it somewhere else like in my documents or something.

Kuro
2008-08-14, 08:47 AM
Used the pre-patcher and had no problems. Took much shorter than a usual auto-patcher.
Thanks Fiel.

solid_ice8
2008-08-14, 09:30 AM
downloading now, only a few more mins

btw guys, i've noticed on the ftp server, patch .56 to .58 all say ".v5x Global MapleStory is Released!"

i wonder if that'll be the same for patch .59?

izzyness
2008-08-14, 10:20 AM
Looks like they took the .patch files off the FTP ..
(Going there from patch/patchdir shows the files , but refreshing there takes them away)

Firehuntah
2008-08-14, 10:25 AM
Patch files seem to be gone on their FTP yeah. Most likely they're uploading new files. If that happens we would need a new pre-patcher. :P

izzyness
2008-08-14, 10:27 AM
58 -> 59 is back up .

Firefux
2008-08-14, 10:52 AM
58 -> 59 is back up .

Is it different files? Hoping I don't have to pre-patch again o_e

Russt
2008-08-14, 10:53 AM
Yeah, it'd be the 3rd time for me :f3:

izzyness
2008-08-14, 10:53 AM
Can`t really tell o-o
I think this file is a bit smaller ..

Firefux
2008-08-14, 10:54 AM
Can`t really tell o-o
I think this file is a bit smaller ..

So might as well just try with the patched files I got when server comes on? lol

Russt
2008-08-14, 10:54 AM
Why would it be smaller? Wouldn't they add stuff rather than delete? Even if it's just KB values on some of the monsters, or something.

izzyness
2008-08-14, 10:57 AM
Why would it be smaller? Wouldn't they add stuff rather than delete? Even if it's just KB values on some of the monsters, or something.

I think its just my computer being retarded ..

wobbufet
2008-08-14, 10:57 AM
Why would it be smaller? Wouldn't they add stuff rather than delete? Even if it's just KB values on some of the monsters, or something.

Maybe they accidentally add some stuff twice? They always try to keep the patches as small as possible, or at least I hope they do...

izzyness
2008-08-14, 11:00 AM
First one : 27,826,772 bytes
Second one : 27,818,676 bytes

Firefux
2008-08-14, 11:01 AM
First one : 27,826,772 bytes
Second one : 27,818,676 bytes

Eh, if Fiel posts a new pre-patcher, I guess I'll go with that, otherwise just sticking to this for now, since it doesn't look like anything really changed.

STFUorCCnewB
2008-08-14, 11:03 AM
Eh, if Fiel posts a new pre-patcher, I guess I'll go with that, otherwise just sticking to this for now, since it doesn't look like anything really changed.
I guess in this patch file was some buggy things/unwanted thing that got removed.
Grr, im stuck now, i Pre-Patched already.

Firefux
2008-08-14, 11:10 AM
I guess in this patch file was some buggy things/unwanted thing that got removed.
Grr, im stuck now, i Pre-Patched already.

Mmm, for all we know the old patch files could work f3

STFUorCCnewB
2008-08-14, 11:11 AM
Mmm, for all we know the old patch files could work f3
Maybe it has critical bugs?
Go 2 know. :redface:
We just have to wait and see what'll happen

Firefux
2008-08-14, 11:14 AM
Maybe it has critical bugs?
Go 2 know. :redface:
We just have to wait and see what'll happen

Exactly lol, or wait for Fiel to update the patcher in which case I would re-patch.

Nikkey
2008-08-14, 11:24 AM
Exactly lol, or wait for Fiel to update the patcher in which case I would re-patch.

I can compare patchers, uh, gimme a sec so I'll be able to download the other one from Fiel.

Firefux
2008-08-14, 11:25 AM
I can compare patchers, uh, gimme a sec so I'll be able to download the other one from Fiel.

Alright cool, thanks for the help. I wonder where Fiel is right now lol

Nikkey
2008-08-14, 11:41 AM
http://i151.photobucket.com/albums/s139/WhiteKnightt/programming/newpatchervsoldpatcher.png

You need to repatch, it seems like. The new patcher contains less info than the other.

(Fyi, the FileComparer checks byte x in file 1 up against byte x in file 2 until one of the files ends. If something was removed from the patcher, the bytes afterwards are getting "pushed" forwards in the file. E.g. if you have an imaginary patcher, make a copy of it, and then remove the first byte in that patcher, my FileComparer will not recognize that only 1 out of [total number of bytes] were in fact changed. The Comparer will actually consider the patchers as two files with "no similarity" (Assuming that the patcher have no bytes that are similar, which will never happen))

Firefux
2008-08-14, 11:58 AM
http://i151.photobucket.com/albums/s139/WhiteKnightt/programming/newpatchervsoldpatcher.png

You need to repatch, it seems like. The new patcher contains less info than the other.

(Fyi, the FileComparer checks byte x in file 1 up against byte x in file 2 until one of the files ends. If something was removed from the patcher, the bytes afterwards are getting "pushed" forwards in the file. E.g. if you have an imaginary patcher, make a copy of it, and then remove the first byte in that patcher, my FileComparer will not recognize that only 1 out of [total number of bytes] were in fact changed. The Comparer will actually consider the patchers as two files with "no similarity" (Assuming that the patcher have no bytes that are similar, which will never happen))

Wahoo, time to wait for Fiel to update then?

Russt
2008-08-14, 11:58 AM
So something near the middle of the patch file was changed. Not too useful to know, but it does mean I'll have to patch again...

izzyness
2008-08-14, 12:00 PM
They corrected the patch time to 3 hour extension and 5pm GMT ..
Guessing its over ? o-o

Firefux
2008-08-14, 12:03 PM
They corrected the patch time to 3 hour extension and 5pm GMT ..
Guessing its over ? o-o

Yes it's over hell yes.

Nikkey
2008-08-14, 12:10 PM
They corrected the patch time to 3 hour extension and 5pm GMT ..
Guessing its over ? o-o

hmm, yup, the servers are up, but you got to repatch it seems. At least the new patch info and stuff worked for me.

Fiel
2008-08-14, 01:04 PM
I'll post the new pre-patcher soon. I'm uploading now.

Next time I'll post the time it was updated on the FTP so people can download the newest one. That's my fault. I'll correct it for next time.

Also, if someone notices an update on the FTP patch files, can you notify me through PM? Nobody notified me so I couldn't update it as soon as possible. I was really busy last night, but I'll make myself available to update the pre-patcher.

Fiel
2008-08-14, 01:13 PM
The new Pre-patcher is uploaded.

Firefux
2008-08-14, 01:47 PM
I'll post the new pre-patcher soon. I'm uploading now.

Next time I'll post the time it was updated on the FTP so people can download the newest one. That's my fault. I'll correct it for next time.

Also, if someone notices an update on the FTP patch files, can you notify me through PM? Nobody notified me so I couldn't update it as soon as possible. I was really busy last night, but I'll make myself available to update the pre-patcher.

Ah, figured you woulda noticed this thread and didn't like people PMing you lol. Nice work again on the Pre-Patcher, too bad I didn't get to use it this time around.

Russt
2008-08-14, 02:05 PM
Lol, I prepatched using the old one and the game worked for me.

There's more likely than not a reason why they reuploaded it though, so I don't recommend it.

Fiel
2008-08-14, 02:29 PM
Lol, I prepatched using the old one and the game worked for me.

There's more likely than not a reason why they reuploaded it though, so I don't recommend it.

Chances are that the next time you'll have to patch that you won't be able to. Make sure to use the most updated patcher.

Nikkey
2008-08-14, 02:41 PM
Chances are that the next time you'll have to patch that you won't be able to. Make sure to use the most updated patcher.

Also, using Python with your code works as wonder as well. Just download minutes before patch's supposed to be done and run the prog.

Fiel
2008-08-14, 02:53 PM
Also, using Python with your code works as wonder as well. Just download minutes before patch's supposed to be done and run the prog.

Yeah, I specifically made it easy to use. If you run into any problems, the PatchLog.txt file should tell you what's wrong.

Speaking of the python program, I just updated it again. Turns out I got a few reports of people using the wrong manualpatch.base file. Now the script checks to make sure you have the right version.

Twilight
2008-08-14, 05:22 PM
Anyone mind reuploading the 58->59? Rapidshare is being a little screwy for me :x.

Russt
2008-08-14, 05:29 PM
Chances are that the next time you'll have to patch that you won't be able to. Make sure to use the most updated patcher.
Yeah, I already did. I was using Nexon's patcher on my backup folder, and it was about halfway done when it occured to me to try the outdated version. It worked, and I was able to get on, so I just used it until the server went down. And now the Nexon patcher is done, so it's all good.

Rain
2008-08-14, 07:07 PM
Um yea...your Pre Patcher corrupted. so now i have to reinstall maple D;

Fiel
2008-08-14, 07:16 PM
Um yea...your Pre Patcher corrupted. so now i have to reinstall maple D;

I did warn about that possibility in the FAQ. I hope you backed up.

STFUorCCnewB
2008-09-09, 02:53 PM
v0.60 pre patcher? what about it?

Mudkip
2008-09-09, 03:04 PM
v0.60 pre patcher? what about it?

what about it? o.0

Wiire
2008-09-10, 05:19 AM
Guess no pre patcher this time? ;x

Nikkey
2008-09-10, 10:07 AM
Guess no pre patcher this time? ;x

By using Fiel's manual patchmaker, you will be fine. I just tried.

Vertigo
2008-09-12, 10:46 AM
By using Fiel's manual patchmaker, you will be fine. I just tried.
I just made my own pre-patch using the instructions at the bottom of the post, but it got stuck on creating MapleStory.exe on two different computers. Did I do anything wrong? I think it happend using nexon's manual patch too, but i'm not sure.

maststef
2008-09-12, 11:04 AM
The latest patch had some error for some people. I couldn't patch with my own prepatcher, I couldn't patch with the official ManualPatch, I couldn't patch with the autoupdate. Always stuck on MapleStory.exe.

At my sisters MS installation everything worked fine, without problems. I just copied her files to my computer over LAN.

Lerk
2008-10-14, 07:08 PM
Raw patch file as of 11:27 PM on the FTP:

http://rapidshare.com/files/154093255/00060to00061.patch.html

CapnMush
2008-10-14, 07:33 PM
Yay I can't wait to see the unpacking :shine:

PKProStudio
2008-10-14, 08:31 PM
I made my own pre patcher the last 2 times. Might make one this time, but I'm not sure.

rako
2008-10-14, 08:59 PM
i hade a bit of trouble and i noticed the ftp is down again so here.

http://www.mediafire.com/?jm2lamm3xwt

Ftp Modified: 10/14/2008 11:27:00 PM

Fiel
2008-10-14, 09:32 PM
Pre-patcher is up.

The patch file did not change at all between the first update and the second update on the FTP.

Remember, you do this at your own risk. If you get banned for something, so be it.

Jmax
2008-10-14, 09:36 PM
So what was in the patch file?

Fiel
2008-10-14, 09:42 PM
The patch is being shown to premium donators only at the moment.

jrvillarreal
2008-10-14, 09:46 PM
The patch is being shown to premium donators only at the moment.

when will it be revealed to us?:glitter: soon i hope gotta go 2 bed 2nite at 8:f3:

WingZero
2008-10-14, 09:48 PM
The patch is being shown to premium donators only at the moment.
:f4: Why are you so crual Fiel? You're gonna make me stay up all night. :f4:
J/k j/k

Just wondering, but how long until you release the patch contents to the public?

PKProStudio
2008-10-14, 10:01 PM
:f4: Why are you so crual Fiel? You're gonna make me stay up all night. :f4:
J/k j/k

Just wondering, but how long until you release the patch contents to the public?

It's released now

pretz
2008-10-15, 03:16 AM
Could someone else upload it on megaupload or somewhere else? Rapidshare isn't working for me ><"

Lerk
2008-10-15, 01:45 PM
FTP file on site changed, current file as of 15/10/2008, 6:13 PM:

http://rapidshare.com/files/154337030/00060to00061.patch.html

New patch file is 31 bytes smaller(?) than previous one. Unsure of changes.

Fiel
2008-10-15, 03:03 PM
I've updated the first post with the newest patch file on the FTP.

~Fiel

Tr0jan
2008-10-15, 03:40 PM
rapid share suck hard.. it downloads so slowwwwwwwwwwwwwly ;\

thanks anyway i guess ill just go with the normal patcher

Lerk
2008-11-11, 08:59 PM
Raw patch file as of 12/11/2007 - 2:35:00 AM on the FTP:

http://www.filefactory.com/file/82a6e8/n/00061to00062_patch

Twilight
2008-11-11, 09:00 PM
Raw patch file as of 12/11/2007 - 2:35:00 AM on the FTP:

http://www.filefactory.com/file/82a6e8/n/00061to00062_patch

Just direct link Mr.YearAgo

ftp://patch.mapleglobal.com/Maple/patch/patchdir/00062/00061to00062.patch

IsaacGS
2008-11-11, 09:04 PM
Just direct link Mr.YearAgo

ftp://patch.mapleglobal.com/Maple/patch/patchdir/00062/00061to00062.patch

If it gets taken down, a direct link doesn't do very much good does it?

Lerk
2008-11-11, 09:05 PM
If it gets taken down, a direct link doesn't do very much good does it?

Or if the file gets changed, again...

(Figured I might as well elaborate; Fiel did say he could find differences between patch files, if it changes then there's a comparison between the updated file and the current one.)

VladTheLvr
2008-11-11, 09:05 PM
Is there a chance that a pre-patcher might fail and they could add more info to the patch before releasing it? I always wondered....

Lerk
2008-11-11, 09:09 PM
Is there a chance that a pre-patcher might fail and they could add more info to the patch before releasing it? I always wondered....

That was the case for v.60...

http://www.southperry.net/forums/showthread.php?t=3454&highlight=autoban

VladTheLvr
2008-11-11, 09:11 PM
That was the case for v.60...

http://www.southperry.net/forums/showthread.php?t=3454&highlight=autoban

Ahh... I mixed up manual patcher with pre-patcher. My guess.... Since due to the new emergence on the legal battle between Fiel and Nexon... Nexon could plant a TRAP.

Twilight
2008-11-11, 09:16 PM
If it gets taken down, a direct link doesn't do very much good does it?

If for some odd reason it gets taken down, it'll be put up again. Unless Nexon for some reason wants us to not patch.


Or if the file gets changed, again...

(Figured I might as well elaborate; Fiel did say he could find differences between patch files, if it changes then there's a comparison between the updated file and the current one.)

If the file gets changed, a direct link would do much better, versus a link to an outdated file.

Orit
2008-11-11, 11:25 PM
If for some odd reason it gets taken down, it'll be put up again. Unless Nexon for some reason wants us to not patch.



If the file gets changed, a direct link would do much better, versus a link to an outdated file.

Be that as it may, Fiel asked us to download patch files:

http://www.southperry.net/forums/showthread.php?t=4258

Russt
2008-11-11, 11:27 PM
So...

Seeing as extractions are down, will prepatchers remain?

Combattente
2008-11-12, 08:52 AM
The patch file on the FTP just changed some minutes ago.

Redoutable
2008-11-12, 09:23 AM
I just made my prepatcher as of 7:15 AM PST.

-Prays for no more file changes and no autoban-

Kalovale
2008-12-17, 08:01 AM
It seems Fiel has been in no mood to maintain this awesome helpful feature of SouthPerry going..

I have a favor though, can someone upload and share their patcher with me? I tried making my owns but I ended up a major failure, and the patch is scheduled to end midnight at my place, so chances are, even without extensions, I won't be able to patch it..

Help much appreciated. =)

Redoutable
2008-12-17, 09:48 AM
I just made a pre-patcher Kalovale, I'm uploading it now and I'll edit a link into this post.
(I followed the instructions in the box in the first post as I did last time, whether or not you download it is up to you)

It's still uploading but the link is here (http://www.mediafire.com/?sharekey=d881e14255fd6305d2db6fb9a8902bda)

Edit edit: It's done uploading now.

As with all pre-patchers, use this one at your own risk.

Deviant
2008-12-17, 12:01 PM
I just made a pre-patcher Kalovale, I'm uploading it now and I'll edit a link into this post.
(I followed the instructions in the box in the first post as I did last time, whether or not you download it is up to you)

It's still uploading but the link is here (http://www.mediafire.com/?sharekey=d881e14255fd6305d2db6fb9a8902bda)

Edit edit: It's done uploading now.

As with all pre-patchers, use this one at your own risk.

Im trying it and hoping for he best >.>

Redoutable
2008-12-17, 12:10 PM
Im trying it and hoping for he best >.>

If anything does go wrong then it's like other pre-patcher issues, such as them changing the FTP data to something slightly different before releasing the auto-patcher (CWK ropes anyone?).

I can assure you I did nothing to the file, scan it if you want.

Spaz
2008-12-17, 12:22 PM
You can always use my patcher-generating script (http://www.southperry.net/forums/showthread.php?t=769) - download it once and you can use it for every patch instead of waiting for a patcher to be posted every time there's a patch.

Redoutable
2008-12-17, 12:24 PM
I just used the python code in the spoiler in Fiel's first post, and followed the little guide at the bottom. Nothing that somebody else couldn't do, I only posted it because somebody asked for it (Though I guess I posted it too late) saying they were having troubles.

Deviant
2008-12-17, 02:35 PM
Worked fine for me o.o

IsaacGS
2009-01-21, 08:06 PM
Version .64 prepatcher:
http://www.megaupload.com/?d=SJSD6NDT

Same rules apply as Fiel's.

Hazzy
2009-01-21, 08:07 PM
Version .64 prepatcher:
http://www.megaupload.com/?d=SJSD6NDT

Same rules apply as Fiel's.

I loves you Isaac. <3

JakeAndBake
2009-01-21, 08:20 PM
Version .64 prepatcher:
http://www.megaupload.com/?d=SJSD6NDT

Same rules apply as Fiel's.

Thanks a ton Isaac:f2:

After I pressed play it says the client is 'outdated' lol. It's the opposite :f3:

IsaacGS
2009-01-21, 08:58 PM
Thanks a ton Isaac:f2:

After I pressed play it says the client is 'outdated' lol. It's the opposite :f3:
...Did you expect to be able to play after you patched? you can't play until they update the servers to .64.

Mark
2009-01-21, 09:02 PM
Thanks, dood. I'll be patching this game up before I go to bed fosho.

Typhoon
2009-01-21, 10:42 PM
damm you base.wz :f4:

kwaz
2009-01-22, 12:38 AM
Any reason the script wouldn't work on a 38toXX patch file? Since mine keeps exiting out.

Kalovale
2009-01-22, 12:58 AM
damm you base.wz :f4:

I don't know if it helps, but here's my base.wz
I patched fine, too.

http://www.megaupload.com/?d=TJ7J4K5O

Shinryuji
2009-01-22, 01:00 AM
Any reason the script wouldn't work on a 38toXX patch file? Since mine keeps exiting out.

it's probably way too old o.o

idk

kIkO
2009-01-22, 06:19 AM
My antivirus poped up

"D:\Nexon\MapleStory\xpdchfhs.$$$\00009.tmp is the TR\Crypt.CFI.Gen Trojan"

CrazyNomad
2009-01-22, 06:55 AM
worked fine to me, the patch worked and nod32 didnt detect any virus on it

Combattente
2009-01-22, 07:18 AM
Thank you Isaac. Once again, great job. ^^

kwaz
2009-01-23, 07:30 PM
Here's v065... ftp updates are waaay early. From the 1/24/2008 12:01am file.

64>65 (http://www.sendspace.com/file/5ciy56)

As usual to be safe, backup before patching. It patched for myself tho.

IsaacGS
2009-01-24, 01:14 AM
http://www.megaupload.com/?d=SJR4HU15
64 to 65
official SP version (Not that kwaz isn't trustworthy, this is just how it has to be.)

It's a tiny patch.

Typhoon
2009-01-24, 01:35 AM
urs wouldn't work for me isaac :f1: other one did though :f6:

Sn1perJohnE
2009-01-24, 03:08 AM
ewwww, 25 mins to download a ~3.9 mb file on dial up X_X i really need my financial aid/accident settlement so i can buy satellite internet X_X

ItzAnth
2009-01-24, 03:22 AM
Thx for prepatcher =]

kIkO
2009-01-24, 03:41 AM
http://www.megaupload.com/?d=0STGPAEH
64 to 65
official SP version (Not that kwaz isn't trustworthy, this is just how it has to be.)

It's a tiny patch.

I dl'ed it but it's just an archive o.o
the other one worked fine for me

Callistor
2009-01-24, 03:57 AM
Thanks for the prepatch, the last one worked perfect for me as well. But is the E-Patch still going on? It says it's friday (GMT times) but it's already Saturday for me:f6:

Sn1perJohnE
2009-01-24, 04:06 AM
Thanks for the prepatch, the last one worked perfect for me as well. But is the E-Patch still going on? It says it's friday (GMT times) but it's already Saturday for me:f6:

still ~ 1 hour left. im hoping they finish early tho, i might be used to staying up this late, but 3 am is a threshold for me going to sleep, and i dont like going to it X_X

kIkO
2009-01-24, 04:15 AM
still ~ 1 hour left. im hoping they finish early tho, i might be used to staying up this late, but 3 am is a threshold for me going to sleep, and i dont like going to it X_X

4:15 am right now ,_,

Shinryuji
2009-01-24, 04:54 AM
4:15 am right now ,_,

2:53 am pst, some people said it's up and running .__.

MiSSHaku
2009-01-24, 04:58 AM
2:53 am pst, some people said it's up and running .__.

Yep. I'm online now. :)

kwaz
2009-01-24, 04:19 PM
64 to 65
official SP version (Not that kwaz isn't trustworthy, this is just how it has to be.)

It's a tiny patch.

Fair enough, I'll just wait for your post next time.

IsaacGS
2009-01-24, 04:28 PM
http://www.megaupload.com/?d=SJR4HU15
this is 64 to 65 (again) someone said that the other one was just the .patch file but this will be the actual EXE.

Xakris
2009-03-05, 12:57 AM
I am looking for pre-patcher ver. .66 *_* Thanks in advance

Spaz
2009-03-05, 01:25 AM
I am looking for pre-patcher ver. .66 *_* Thanks in advance
Go to the thread linked to in my sig to download my prepatcher-maker program. Run it and you'll have a prepatcher.

Mazz
2009-03-05, 09:53 AM
Go to the thread linked to in my sig to download my prepatcher-maker program. Run it and you'll have a prepatcher.

i can't use it,

"getting the version listing on the ftp...

oops! there are 2 fields instead of 9! please report this bug.

press enter to close this"

any idea how to fix?

Kalovale
2009-03-08, 03:28 AM
I got the same issue and posted in Spaz's thread. =/
Lemme check that thread now xD

EDIT: okay, he fixed it, thanks for the trouble, Spaz <3

But if it worked I could've gone on the earlier CWKPQs =(
bad luck </3