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!

[RESOLVED] Removing Update Modules(TH ProjectG584.03)

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jan 24, 2010
Messages
53
Reaction score
2
I was searching around the forums looking how to improve My server and I came across the Quickpatch thread which has discussion about removing the update modules.

Chreadie posted this in it explaining how to bypass the update check

Use ollydbg, step until you see some http action and set noop instead.

Or delete all references to httpstuff

But I have come across 3 issues.

Issue One​
I'm new to ollydbg and could not find any http actions in the exe's data. So if i can get more guidance on where to find said actions that would be fantastic!

Issue Two​
Whenever I remove all reference to http in the exe i receive this error
G0dzilla2000 - [RESOLVED] Removing Update Modules(TH ProjectG584.03) - RaGEZONE Forums


Issue Three​
Whenever i try a virtual server using the updatelist in patch_S4 provided by Tsukasa I get a file error shown here

G0dzilla2000 - [RESOLVED] Removing Update Modules(TH ProjectG584.03) - RaGEZONE Forums

The Main reason I posted was to hope to get a little more Info on how to just remove them using Ollydbg, but Assistance on any three of these issues would be greatly appreciated thanks in advanced!

~Godzilla​
 
Last edited:
Newbie Spellweaver
Joined
Dec 29, 2008
Messages
92
Reaction score
52
Re: Removing Update Modules(TH ProjectG584.03)

You must not remove, but all point to your local PC.
 
Newbie Spellweaver
Joined
Jan 24, 2010
Messages
53
Reaction score
2
Re: Removing Update Modules(TH ProjectG584.03)

You must not remove, but all point to your local PC.

I tried using IIS and pointed the .exe over to and it shows it connecting to it in the IIS command box, but it gives an error 404, and the exe gives the File error shown above. Or do you mean a different method?
 
Newbie Spellweaver
Joined
Dec 29, 2008
Messages
92
Reaction score
52
Re: Removing Update Modules(TH ProjectG584.03)

I use Zend Server, I can not tell you how to proceed with IIS try using this or Wamp Server .... there are several here that the Tsukasa also recommended.

Then ProjectG edit and change all the paths and point to the IP 127.0.0.1, including updatelist, which by default is going to look for Official Server.
 
Deny everything.
Joined
Jun 17, 2005
Messages
488
Reaction score
110
Re: Removing Update Modules(TH ProjectG584.03)

If I were you, the first thing I'd do is to use an translated thailand.dat to get the error message in English - so you have a few more informations what could be wrong. There's too much room for speculation: Erroneous IFF files, missing system files/fonts, wrong updatelist paths... :)

If it's indeed updatelist-related (easy enough to test), you need to make sure the path in ProjectG.exe doesn't give a 404 error, as fasa2008 already pointed out.

Zend Server is essentially the same as a normal Apache + PHP + MySQL stack, only with a few configuration tweaks by Zend, so the configuration for XAMPP and Zend Server is virtually identical - making it another attractive choice (especially if you like to debug PHP scripts as well).
 
Last edited:
Newbie Spellweaver
Joined
Jan 24, 2010
Messages
53
Reaction score
2
Re: Removing Update Modules(TH ProjectG584.03)

KK, thanks for the information and Im gonna try using Zend, because so far my computer hasnt liked Wamp or Xamp (it never starts the services). And ill also get an english.dat file to zone in on the error im getting. Thanks for the replies BTW!

UPDATE------------------------------------------------------------------------------------

After using the english .dat the error reads "File Error. There was an error reading the file list"

and also, which "paths" do I change? because I noticed there are several Urls all going to different sites

Edit------------------------------------------------------------------------------------
Ok turns out sql server reporting services was using port 80 which was not allowing Wamp to work. Is this an important service? anywho I pointed it and it works thanks alot guys!
 
Last edited:
Deny everything.
Joined
Jun 17, 2005
Messages
488
Reaction score
110
Re: Removing Update Modules(TH ProjectG584.03)

After using the english .dat the error reads "File Error. There was an error reading the file list"

and also, which "paths" do I change? because I noticed there are several Urls all going to different sites

Simply put, you search for the string "updatelist", you'll see a path like /patch_S4/updatelist and shortly after a url starting with .. The first portion (with /patch_S4/updatelist) is the path on the server, the second portion with the http-prefix is the server address itself.

So if you want to use your local updatelist, you set the http address to , create a new subdirectory in your htdocs called patch_S4 and put your updatelist file into that directory.

--- Edit: ---

No, the SQL server reporting services aren't important.

You can also use a different port than 80 for the web-server, just make sure your url reflects this change (i.e. if it runs on port 81). If you're using Zend/XAMPP (or anything else based on Apache) you can easily edit the port through your httpd.conf, restart the service and everything's peachy.
 
Last edited:
Status
Not open for further replies.
Back
Top