|
|
LarkinVB
Known Hero
|
posted August 05, 2015 02:06 PM |
|
Edited by LarkinVB at 14:16, 05 Aug 2015.
|
magnomagus said: Hello Deflaktor, i don't understand decimal places in hex editor, post from Indral:
Quote: For those of you that want to do it manually, the patch changes a float constant from 0000803Eh (0.25 decimal) to 00000000h (0 decimal) at file offset 6734F7h.
Could you tell me how to replace 803E if I want to make ATB randomization 10% (or 12.5% if easier), I know 0000 is not working so it has to be another number.
0000003E = 0.125
cdcccc3d = 0.1
These links should be helpfull :
Convert float to hex :
http://gregstoll.dyndns.org/~gregstoll/floattohex/
Check the order for little endian :
http://www.scadacore.com/field-applications/programming-calculators/online-hex-converter
|
|
magnomagus
Admirable
Legendary Hero
modding wizard
|
posted August 05, 2015 02:55 PM |
|
|
|
Deflaktor
Responsible
Known Hero
|
posted August 10, 2015 06:46 PM |
|
|
I kinda lost overview. So what has been requested now?
- New level cap
~ Very hard to do
- New artifact cap
~ Need to investigate that more
- Heal amount of healing tent
~ Havent looked into that yet
- ATB patch
~ Easy as the information is already there
Some of my own ideas:
- Dynamic menu hack
~ Lots of work. The idea is to open a different menu depending on currently selected hero for the purpose of showing the right skilltree for the corresponding hero. I have a rough idea of how to make such a hack.
- Custom artifact sets hack
~ So it shows customized text for the amount of currently equipped artifacts. Haven't done any thinking on how to do this though and as such probably won't do it.
I probably wont do all of these but rather those that are simple and/or fun to do.
|
|
magnomagus
Admirable
Legendary Hero
modding wizard
|
posted August 10, 2015 07:50 PM |
|
|
The current level hack is pretty good, so if it is too hard I can live with it.
I think the first aid tent can be boosted a little, but to really fix it, it should be level based like embalmer, probably too hard. Also it should not make embalmer a pointless spec.
Other balance issue that may not be hard: the artificer artifacts from academy give too much initiative, 1% per knowledge up to 50%. if it can be set as 0.5% or 0.75% per knowledge or at least cap it to 30% that would be great.
I'm a bit exhausted at the moment with regards too big content releases, so I'm not sure I will be making much more artifacts, but you might do others a great pleasure.
____________
MMH5.5 Downloads | MMH5.5 Translations | MMH5.5 FAQ
|
|
Deflaktor
Responsible
Known Hero
|
posted August 10, 2015 09:41 PM |
|
|
So have you encountered any issues with setting the ATB hack to 0.10?
|
|
magnomagus
Admirable
Legendary Hero
modding wizard
|
posted August 10, 2015 10:23 PM |
|
|
|
magnomagus
Admirable
Legendary Hero
modding wizard
|
posted August 16, 2015 12:53 PM |
|
|
Hi Deflaktor, I would like to ask if it is possible to trace back the RMG monster settings weak/medium/strong/very strong/impossible to single modifyable numeric parameters 3.1 exe files (not 31j).
I know you have a lot on your plate, but i think this could do much more to improve the game experience for everybody than any of the above suggestions. So please take it into consideration.
____________
MMH5.5 Downloads | MMH5.5 Translations | MMH5.5 FAQ
|
|
zmudziak22
Supreme Hero
Heroes 3 Fan
|
posted August 18, 2015 04:50 PM |
|
|
Will be possible to patch Dark Messiah mod EXE?
It is diffrent than original and Q's EXEs. Patcher detect exe but any fixes don't work with it.
|
|
Valvt
Tavern Dweller
|
posted September 06, 2015 01:25 PM |
|
Edited by Valvt at 13:29, 06 Sep 2015.
|
Sorry, mistake post
____________
|
|
Mario
Known Hero
|
posted January 03, 2016 08:10 PM |
|
|
Hello everyone.
I download Homm5Patcher and I don't know how to use it. Where I am supposed to copy patcher (bin folder HOMM V?) and and with what to start him? Unpack this or not?
My system is Windows 10
|
|
Deflaktor
Responsible
Known Hero
|
posted January 04, 2016 11:38 AM |
|
|
You need to install java
https://www.java.com/download/
Then double click the patcher. To have patches you need to download them extra from the mega folder and put them in the same folder.
|
|
Mario
Known Hero
|
posted January 04, 2016 08:45 PM |
|
Edited by Mario at 20:50, 04 Jan 2016.
|
I thank for the reply.
i install Java, double click the patcher, then open bin folder and
no patches available. I'm sorry, but I did not understand what where copy.
Which files for example put to which folder (ncf.YML to bin folder ?? - not working)
Link for Patch Collection is broken
|
|
Deflaktor
Responsible
Known Hero
|
posted January 05, 2016 01:30 PM |
|
|
|
zmudziak22
Supreme Hero
Heroes 3 Fan
|
posted January 05, 2016 05:33 PM |
|
|
|
Mario
Known Hero
|
posted January 05, 2016 10:28 PM |
|
|
Thank you very much Deflaktor.
Now is working.
|
|
lotihoti
Famous Hero
|
posted January 06, 2016 11:34 AM |
|
|
Heyho - did you have time to find the offset of healing tend?
|
|
Deflaktor
Responsible
Known Hero
|
posted January 06, 2016 06:51 PM |
|
|
|
lotihoti
Famous Hero
|
posted January 06, 2016 07:59 PM |
|
|
What Bytes do i need to change to set my own values?
|
|
Deflaktor
Responsible
Known Hero
|
posted January 06, 2016 08:03 PM |
|
|
the patch has two groups, one for the original exe and one for the quantomas exe. You would want to change both sections. You need to change all the healing values. E.g. for Basic Mastery the healing value is originally 20 (0x14 in Hex) and in my patch it is changed to 40 (0x28 in Hex). See:
Quote:
patchAddress: 005765B4 # Basic Mastery - healing value
originalBytes: 14 00 00 00 # 20
patchBytes: 28 00 00 00 # 40
So if you want to change it to 50, do it like this:
Quote:
patchAddress: 005765B4 # Basic Mastery - healing value
originalBytes: 14 00 00 00 # 20
patchBytes: 32 00 00 00 # 50
____________
My Heroes5 Dump /// My Heroes5 Patcher
|
|
lotihoti
Famous Hero
|
posted January 06, 2016 08:10 PM |
|
Edited by lotihoti at 20:11, 06 Jan 2016.
|
Well i have windows 10 ("unhappy") and there i have no spaces etc on my editor...
May you can send me a file with following values?
No Mastery: 200
Novice: 400
Advanced: 800
Expert: 1600
Would be soooo nice
|
|
|