Southperry.net
Patch time is almost upon us! - Printable Version

+- Southperry.net (https://www.southperry.net)
+-- Forum: Main (https://www.southperry.net/forumdisplay.php?fid=11)
+--- Forum: Site Announcements (https://www.southperry.net/forumdisplay.php?fid=18)
+--- Thread: Patch time is almost upon us! (/showthread.php?tid=4026)

Pages: 1 2 3


Patch time is almost upon us! - NoWaizMatt - 2008-10-07

Just a question. How can you confirm the patch is soon? For all we know, it isn't until the 29th.


Patch time is almost upon us! - Combattente - 2008-10-07

This is how they usually do:

Patch - Server Maintenance - Server Maintenance - Server Maintenance - Another Patch

And so on.

Since the last week it was the 3rd Server Maintenance, we can guess the 0.61 patch will come this week's Wednesday. They USUALLY do that.

They could also postpone it like they did for Crimsonwood Keep's patch and keep doing Server Maintenances all weeks until they're ready to patch.


Patch time is almost upon us! - Fiel - 2008-10-07

It's pretty common that they will use up all of their cash items and then go to another patch. I understand that they have not always done this, but it's a general trend that tends to hold true. As of right now, there are no more available items from NXWatch.


Patch time is almost upon us! - Afrobean - 2008-10-07

IsaacGS Wrote:Monster book UI is already present. :p
I think what most people are looking forward to is the script, the lore. Even if they patch that stuff into the data, that doesn't even necessarily mean we'll be getting it, and it'd definitely be nice to take a peak at all the descriptions given, officially in English for the first time.


Patch time is almost upon us! - iamflip - 2008-10-07

Well... there's always a chance they might re-release CS stuff that were removed from the CS eariler lol.


Patch time is almost upon us! - Alloy - 2008-10-07

Afrobean Wrote:I think what most people are looking forward to is the script, the lore. Even if they patch that stuff into the data, that doesn't even necessarily mean we'll be getting it, and it'd definitely be nice to take a peak at all the descriptions given, officially in English for the first time.

That's what I meant! If it's a translation, and not one like MSEA's (GOD it was HORRID), it'd be enough for me.

It'd be fantastic if they actually release the actual thing, though Big Grin


Patch time is almost upon us! - IsaacGS - 2008-10-07

Afrobean Wrote:I think what most people are looking forward to is the script, the lore. Even if they patch that stuff into the data, that doesn't even necessarily mean we'll be getting it, and it'd definitely be nice to take a peak at all the descriptions given, officially in English for the first time.
Look who you're talking to. XD Yeah, that may be the interesting part, but I'm just saying it's already partially there.
Fiel Wrote:It's pretty common that they will use up all of their cash items and then go to another patch. I understand that they have not always done this, but it's a general trend that tends to hold true. As of right now, there are no more available items from NXWatch.
On top of this, all the event quests are scheduled to end at October 8th, 00:00. Which means the latest you could do them, assuming the game is up, is 11:59 PM today. No NX plus the end of events means that, at the very least, the patch is *intended* for this week. It may get delayed but it was supposed to be now.

In regards to it being the 29th, it wouldn't make very much sense to start the halloween events then eh? :p


Patch time is almost upon us! - Afrobean - 2008-10-07

IsaacGS Wrote:Look who you're talking to. XD Yeah, that may be the interesting part, but I'm just saying it's already partially there.
Yeah, I do this a lot. Basically take someone who said something I want to comment on and say something they themselves already know, all so that I can be sure others who read the thread are able to get a more full understanding on things.

Alloy Wrote:That's what I meant! If it's a translation, and not one like MSEA's (GOD it was HORRID), it'd be enough for me.

It'd be fantastic if they actually release the actual thing, though Big Grin
If MSEA got translations before us, I wouldn't even consider them legitimate.

The language they use isn't English, after all. What do they call it...? Singlish? rofl. But really, that's not right, regardless of their intent, be it true English or the bastard Singlish-- it's in the same league as Engrish lah~


Patch time is almost upon us! - Alloy - 2008-10-07

Afrobean Wrote:Singlish

Yeah, it's a sin against humanity. You had to stand for a while to decipher EACH monster alone. Like Nependes instead of Nependeath. And that's the only relation I remember...


Patch time is almost upon us! - Nikkey - 2008-10-07

Just as a notification about prepatchers Fiel make and such:

The way of making the prepatcher in Python is completely harmless if you download the .patch file from Nexon's FTP. Though, I liked the cleaner version better than the other version, because you can easily see that this isn't dangerous:

[spoiler=Wasn't it something like this?]
Code:
import struct
import cStringIO

def Main(pname):
    manpatch = open(pname + '.exe', 'wb')
    base = open('ManualPatch.base', 'rb')
    bdata = base.read()
    base.close()
    manpatch.write(bdata)
    patch = open(pname + '.patch', 'rb')
    pdata = patch.read()
    plen = len(pdata)
    patch.close()
    manpatch.write(pdata)
    manpatch.write(struct.pack('L', plen))
    manpatch.write(struct.pack('L', 0))
    manpatch.write(struct.pack('BBBB', 0xF3, 0xFB, 0xF7, 0xF2))
    manpatch.close()
Main('00057to00058') #input the patch file name without the .patch here
[/spoiler]


Patch time is almost upon us! - Fiel - 2008-10-07

Devil's Sunrise Wrote:Just as a notification about prepatchers Fiel make and such:

The way of making the prepatcher in Python is completely harmless if you download the .patch file from Nexon's FTP. Though, I liked the cleaner version better than the other version, because you can easily see that this isn't dangerous:

[spoiler=Wasn't it something like this?]
Code:
import struct
import cStringIO

def Main(pname):
    manpatch = open(pname + '.exe', 'wb')
    base = open('ManualPatch.base', 'rb')
    bdata = base.read()
    base.close()
    manpatch.write(bdata)
    patch = open(pname + '.patch', 'rb')
    pdata = patch.read()
    plen = len(pdata)
    patch.close()
    manpatch.write(pdata)
    manpatch.write(struct.pack('L', plen))
    manpatch.write(struct.pack('L', 0))
    manpatch.write(struct.pack('BBBB', 0xF3, 0xFB, 0xF7, 0xF2))
    manpatch.close()
Main('00057to00058') #input the patch file name without the .patch here
[/spoiler]

How does that work, exactly? You're not writing any TXT file to the patcher. I think you accidentally erased the cStringIO statement since you have that as an import but never call the module in the script. So yeah, otherwise it's close to what you have.

My script I have posted in the pre-patcher thread also does the following things:
1. Creates a verbose patchlog to help detect where errors occur
2. Patch error checking to make sure that the zlib block isn't corrupt
3. Manualpatch.base checking to ensure that the user is using the correct version.
4. Automatic finding of patch files in the current working directory

EDIT: Oops, noticed that you had the length of the notice file as 0. I suppose that would work, but I've never tried it.


Patch time is almost upon us! - Nikkey - 2008-10-07

Fiel Wrote:How does that work, exactly? You're not writing any TXT file to the patcher. I think you accidentally erased the cStringIO statement since you have that as an import but never call the module in the script. So yeah, otherwise it's close to what you have.

My script I have posted in the pre-patcher thread also does the following things:
1. Creates a verbose patchlog to help detect where errors occur
2. Patch error checking to make sure that the zlib block isn't corrupt
3. Manualpatch.base checking to ensure that the user is using the correct version.
4. Automatic finding of patch files in the current working directory

EDIT: Oops, noticed that you had the length of the notice file as 0. I suppose that would work, but I've never tried it.

Yeah, I know. But in the end, this does basically the same thing as long nothing wrong happens. Whoops @ that import cString though, that wasn't supposed to be there.

It should work, unless NULL POINTER EXCEPTIONS occur! [/sarcasm]


Patch time is almost upon us! - Evilince - 2008-10-07

SuGaRnSp1C3 Wrote:WEEEEEEEEEEEEEEEEEEEEEEEEEEEEE!!! *Runs around the room in excitement*...Thanks Fiel!

do it naked plz k thnx.


Patch time is almost upon us! - Corn - 2008-10-07

No patch up yet :f6:.


Patch time is almost upon us! - jrvillarreal - 2008-10-07

In 8 hours it will be the 8thGlitter and still no patch noticeTongue the guild screenshot event ends on the 14th, and the last GM event is the 11th, so...patch on the 15th and no cash shop items?Frown
Actually, I guess it dosen't neccessarily have to be on a Wednesday...


Patch time is almost upon us! - iamflip - 2008-10-08

It could be next week. lololol.

Pirates or CWK expansion or Singapore or not, I do want the Halloween quests opened up again soon. I gave someone my Toymaker equips and need another set for myself. xD


Patch time is almost upon us! - GMSInfighter - 2008-10-08

iamflip Wrote:It could be next week. lololol.

Pirates or CWK expansion or Singapore or not, I do want the Halloween quests opened up again soon. I gave someone my Toymaker equips and need another set for myself. xD

Haha, same.. I loved those toymaker equips so much.

Time to go level up and get some NX for a NX costume Tongue


Patch time is almost upon us! - Nikkey - 2008-10-10

Fiel Wrote:Please guys, when you see a patch file on the Nexon FTP, download it, upload it to your file-sharing site of preference, and post the raw patch file in the Pre-patcher thread. That would help me out and help others too.

Oh, so you can notice the difference between every one of them? (e.g. what they are editing from the patch)

Sure thing, will do.

Anyway, I recommended for TinEye that your website (The database, in particular) should be searched through and will display images from here. Partly advertisement, partly faster finding of a monster or an item for me.


Patch time is almost upon us! - randompeep - 2008-10-10

Well, no patch today, and I'm almost certain they won't get around to it till at least Monday. >.> (Typical Nexon...)


Patch time is almost upon us! - Combattente - 2008-10-13

Patch should be this week.. I really hope so, because I can't wait to see what the Halloween Events' patch will be like!

Will they completely change our mansion to MapleSEA's one or will they just add the NPCs with quests? How will they organize everything in OUR mansion?

And I can't wait to do the new quests.. Biggrin