Heroes of Might and Magic Community
visiting hero! Register | Today's Posts | Games | Search! | FAQ/Rules | AvatarList | MemberList | Profile


Age of Heroes Headlines:  
5 Oct 2016: Heroes VII development comes to an end.. - read more
6 Aug 2016: Troubled Heroes VII Expansion Release - read more
26 Apr 2016: Heroes VII XPack - Trial by Fire - Coming out in June! - read more
17 Apr 2016: Global Alternative Creatures MOD for H7 after 1.8 Patch! - read more
7 Mar 2016: Romero launches a Piano Sonata Album Kickstarter! - read more
19 Feb 2016: Heroes 5.5 RC6, Heroes VII patch 1.7 are out! - read more
13 Jan 2016: Horn of the Abyss 1.4 Available for Download! - read more
17 Dec 2015: Heroes 5.5 update, 1.6 out for H7 - read more
23 Nov 2015: H7 1.4 & 1.5 patches Released - read more
31 Oct 2015: First H7 patches are out, End of DoC development - read more
5 Oct 2016: Heroes VII development comes to an end.. - read more
[X] Remove Ads
LOGIN:     Username:     Password:         [ Register ]
HOMM1: info forum | HOMM2: info forum | HOMM3: info mods forum | HOMM4: info CTG forum | HOMM5: info mods forum | MMH6: wiki forum | MMH7: wiki forum
Heroes Community > Library of Enlightenment > Thread: Tribute to Strategists
Thread: Tribute to Strategists This thread is 20 pages long: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 · «PREV / NEXT»
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 08:46 PM

I am only designing custom templates, didn't yet match with data from game. Must design 7 different for 7 possibilities.
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 09:10 PM

Regarding an upgaded stack, its position is [N/2], counting from 0, of course.

2Salamandre: you may also show how many monsters are in each stack.

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 09:19 PM

Upgraded is always the second stack, starting from up?
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 09:21 PM

Quote:
1/compliant, 10/savage

Btw, Compliant is actually -4, not 1.

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 09:24 PM
Edited by AlexSpl at 21:25, 17 Dec 2014.

Quote:
Upgraded is always the second stack, starting from up?

Nope, it's [N/2]. For 7 stacks it's #4, for 6 stacks it's #4, for 5 stacks it's #3, and so on.

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 09:29 PM

ok thanks. For compliant/savage, the # will change color to show when join and when not. Erm calculates compliant as zero, savage as 10. This is what we have:

Internal Heroes values:
Savage = 10
Hostile = Random from 4 to 10
Aggressive = Random from 1 to 10
Friendly = Random from 1 to 7
Compliant = 0
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 09:29 PM

Here is how you can find how many monsters are in each stack:

m := nNeutrals / nStacks;
b := nStacks * (m + 1) - nNeutrals;
a := nStacks - b;

a stand for how many stacks will contain (m + 1) creatures,
b - how many stacks will contain m creatures.

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 09:32 PM

Quote:
Erm calculates compliant as zero, savage as 10.

And I don't know why. Check the "Diplomacy internals" thread.

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 09:32 PM
Edited by Salamandre at 21:33, 17 Dec 2014.

Can you please give me an example of calculations for each stack if total number is 40 and 7 stacks?

AlexSpl said:

And I don't know why. Check the "Diplomacy internals" thread.



Don't worry about this, erm just calculates them differently, but they match, already tested.
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 09:35 PM

Quote:
Can you please give me an example of calculations for each stack if total number is 40 and 7 stacks?


m := nNeutrals / nStacks;
b := nStacks * (m + 1) - nNeutrals;
a := nStacks - b;

nNeutrals = 40, nStacks = 7

Here we go:

m = 40 / 7 = 5
b = 7 * (5 + 1) - 40 = 2
a = 7 - 2 = 5

So, we have a = 5 stacks with m + 1 = 6 monsters, and b = 2 stacks with m = 5 monsters:

6 6 6 6 6 5 5

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 09:39 PM
Edited by Salamandre at 21:58, 17 Dec 2014.

Thanks, almost clear.
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 09:58 PM
Edited by AlexSpl at 22:07, 17 Dec 2014.

Here's a non-trivial trivia How many stacks will you see when attacking 67 elves, standing at 17:12:0, with the army of 100 elves?

Edited, I'm talking about 0.67 ratio here

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 10:02 PM
Edited by Salamandre at 22:04, 17 Dec 2014.

it says 2 stacks but I have a problem, numbers do not match. There are 101 elves, if I give to my hero 180 elves, then there are 104 neutrals. wtf?
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 10:11 PM
Edited by AlexSpl at 22:11, 17 Dec 2014.

Quote:
There are 101 elves, if I give to my hero 180 elves, then there are 104 neutrals. wtf?

It's weird. Try to set numbers with the map editor

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 10:12 PM
Edited by Salamandre at 22:15, 17 Dec 2014.

Sorry, forgot option in wog about # stacks bonuses on first day. Got 2 stacks, numbers ok.

Meh, you edited values, with 100 vs 67 I get 3 stacks.
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 10:15 PM
Edited by AlexSpl at 22:15, 17 Dec 2014.

So, how many stacks do you see when attacking 100 elves with 67 elves? Just wanna check if your script is flawless.

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 10:16 PM

It says 3, I get 3.
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 10:17 PM

Quote:
Meh, you edited values, with 100 vs 67 I get 3 stacks.

It's inaccurate, check it out. They are splitting to 4 stacks actually

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
AlexSpl
AlexSpl


Responsible
Supreme Hero
posted December 17, 2014 10:20 PM

Oh, I'm sorry. Move the elves to 18:12:0

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Salamandre
Salamandre


Admirable
Omnipresent Hero
Wog refugee
posted December 17, 2014 10:24 PM

18/12/0, 3 stacks too.
____________
Era II mods and utilities

 Send Instant Message | Send E-Mail | View Profile | Quote Reply | Link
Jump To: « Prev Thread . . . Next Thread » This thread is 20 pages long: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 · «PREV / NEXT»
Post New Poll    Post New Topic    Post New Reply

Page compiled in 0.0752 seconds