hitei
12-02-2011, 09:38 AM
Those of us that use mods need to re-apply them after every patch, but annoyingly enough, hon_update starts HoN after patching, forcing you to do the following if you don't use an alternative patcher:
1. Start HoN, download patch
2. Patch
3. Close HoN, update mods
4. Start HoN
This alternative hon_update won't start HoN after patching. It's the hon_update from 2.3.2, just with the call to CreateProcess replaced with NOPs.
If you know how to patch executables, just jump to 0x40233b and replace the call with NOPs.
Alternatively, use this Python script (not tested), passing it the path to hon_update.exe as the first parameter:
hon = open(sys.argv[1], "wb")
hon.seek(0x40233b)
hon.write("\x90"*6)
hon.close()
http://www.mediafire.com/?jb9ensie0r3iw37
1. Start HoN, download patch
2. Patch
3. Close HoN, update mods
4. Start HoN
This alternative hon_update won't start HoN after patching. It's the hon_update from 2.3.2, just with the call to CreateProcess replaced with NOPs.
If you know how to patch executables, just jump to 0x40233b and replace the call with NOPs.
Alternatively, use this Python script (not tested), passing it the path to hon_update.exe as the first parameter:
hon = open(sys.argv[1], "wb")
hon.seek(0x40233b)
hon.write("\x90"*6)
hon.close()
http://www.mediafire.com/?jb9ensie0r3iw37