Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Serverside Modding => Topic started by: Jameyboor on March 04, 2013, 06:57:03 pm

Title: [QUESTION] Recognizing different Client.
Post by: Jameyboor on March 04, 2013, 06:57:03 pm
Hello everyone,

So, I got a custom WoW.exe that players need to play on the server if they want all the effects, anyways, I was just wondering:
How to make the Server ( Server-Side ) recognize that the player is playing the modified WoW.exe? I mean, can I change any data in WoW.exe that doesn't harm AND can be read by the Server? most straight forward one would be the build number right?
Title: Re: [QUESTION] Recognizing different Client.
Post by: stoneharry on March 04, 2013, 07:11:15 pm
Quote from: "Jameyboor"
Hello everyone,

So, I got a custom WoW.exe that players need to play on the server if they want all the effects, anyways, I was just wondering:
How to make the Server ( Server-Side ) recognize that the player is playing the modified WoW.exe? I mean, can I change any data in WoW.exe that doesn't harm AND can be read by the Server? most straight forward one would be the build number right?

This seems like the best solution:

viewtopic.php?f=61&t=1771 (http://modcraft.io/viewtopic.php?f=61&t=1771" onclick="window.open(this.href);return false;)

You can just change the client build number and change the server side requirements, or implement the full tutorial.

I am currently working on getting the full automated correct system working (connect to server, server sends downloader, downloader torrents patch, patch comes with blizzard installer which executes instructions to install the patch, wow is run on a updated build) but I haven't had much time to work on it and I am having issues constructing the blizzard installer despite schlumpf doing basically all the work for me.
Title: Re: [QUESTION] Recognizing different Client.
Post by: stan84 on March 05, 2013, 07:43:31 am
Guys am just curious, pls explain me what those wow.exe modifications gives ?
Title: Re: [QUESTION] Recognizing different Client.
Post by: stoneharry on March 05, 2013, 10:30:23 am
Quote from: "stan84"
Guys am just curious, pls explain me what those wow.exe modifications gives ?

Modifications to allow modified GlueXML/FrameXML, to allow patches not signed by Blizzard to be installed, to modify various values within the client, to modify strings, to modify it so that data does not need to be inside a MPQ and can be reloaded. Etc.
Title: Re: [QUESTION] Recognizing different Client.
Post by: Jameyboor on March 05, 2013, 06:26:49 pm
Great, got my wanted edits, thanks guys.