01-19-2012, 08:06 PM
I think you should create a configuration file for the patcher, since this patcher will be available only for 1 version of the client.
This way the patcher will support other clients as well.
Converting HEX string to int is simple:
string my_hex_string = "10104A1B3";
uint my_address = Uint32.Parse(my_hex_string, "x");

