timescale = How much time pass in game compared with real time. 1:1 would be 1 min in game 1 min in real time. Elder Scroll 3, 4 and 5 use 1:30Eksekk wrote:What do you mean by timescale?alekssandros wrote:Question: There is some way to chage the TIMESCALE of the game? By the way, which is the timescale from MM678?
Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 05.11.2023]
- alekssandros
- Peasant
- Posts: 64
- Joined: 18 Jun 2019
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Yes, they do, but once you place a monster on map using command:cthscr wrote: Once again: regular peasants, guards, pirates - all have NPC_ID=0. Check mon.Group. Check mon.Group!Code: Select all
for k, v in Map.Monsters do print(k, v.NPC_ID, v.Id, v.Group, Game.MonstersTxt[v.Id].Name) end
local mon = SummonMonster(1, Party.X, Party.Y, Party.Z, true)
they seem to not always have their portraits and they only say:
"If the pirates make it through our warriors we are certainly doomed!"
I just wanted to know where I can find which mon.NPC_ID belongs to whom..
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Last edited by Roxterat on 16 Oct 2020, 07:55, edited 1 time in total.
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
"You're doing it wrong." So, you have summoned monster of Id==1. Let's look into 'Data/Tables/Bolster - monsters.txt'. Aha, it has Peasant in ExtraType (and Creed also). So the MM8 engine will always consider it as MonsterKind==Peasant. Which as you may guess has special hardcoded processing. So you better don't use peasant monster types for anything but peasants.Roxterat wrote:Yes, they do, but once you place a monster on map using command:cthscr wrote: Once again: regular peasants, guards, pirates - all have NPC_ID=0. Check mon.Group. Check mon.Group!Code: Select all
for k, v in Map.Monsters do print(k, v.NPC_ID, v.Id, v.Group, Game.MonstersTxt[v.Id].Name) end
local mon = SummonMonster(1, Party.X, Party.Y, Party.Z, true)
they seem to not always have their portraits and they only say:
"If the pirates make it through our warriors we are certainly doomed!"
I just wanted to know where I can find which mon.NPC_ID belongs to whom..
Now, NPC_ID. This tells us that current map monster is an NPC from NPCData.txt (and Game.NPC[] as well). With it's own name, portrait, topics etc. Like S'ton has NPC_ID==27 in Merge (and 31 in vanilla MM8 with 27 being Pyrannaste - easiest way to get tons of XP in Comm Merge is to load from vanilla MM8 save and wait for S'ton event; all NPCs will be broken though). You can link peasant to NPC (via NPC_ID) but he will still be considered as peasant (with addition of personal name, portrait, topics, etc).
Now, to the guards. As you may guess from my tips there are several mon.Group related to guards. Even without any additional code you can detect eight suspicious Lizardman Sergeants with Group==38 (map monsters 53-60 with Id==5). Yes, they are guards. Note that other map monsters with Id==5 aren't guards (Group 12 or 13). Also note that in MM7 and MM6 maps guards are Group 55. I suspect you can link guard to NPC as well (though never checked).
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Brothers!
Would it be possible to make a table files able to create new skills based on something?
For example i want to create a new skill for knight called "combat tactics", and it would base on armsmaster, so i'd have 2 armsmaster skills, and one of them called combat tactics for example.
Or a new skill for mages like "Occultism" based of fire magic ect...
I think that would be cool!
Would it be possible to make a table files able to create new skills based on something?
For example i want to create a new skill for knight called "combat tactics", and it would base on armsmaster, so i'd have 2 armsmaster skills, and one of them called combat tactics for example.
Or a new skill for mages like "Occultism" based of fire magic ect...
I think that would be cool!
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
"Other graphical stuff" is modified in various ways. There's no history I'm afraid.raekuul wrote:The modified data itself (and probably the map definition files as well) can be distributed as part of the mod package as they're relatively small after compression. I'm mostly thinking of pulling assets (Anims and Music and other graphical stuff) specifically from already-installed MM6/7 to save on space.
Some deduplication is needed also. Right now there are three 3DO logos, three JVC logos and two NWC logos in Magicdod.vid. There are fonts in EnglishT.lod and icons.lod.raekuul wrote:Definitely would need Rodril and his toolset to figure out what can be sourced from existing installs vs what would need to be redistributed. At the very least, locally sourcing the Anims and Music would cut the mod download size from 1.6 GB to 800 MB
lod is an archive and GrayFace has added support of having lod in multiple files. Rodril had started with merging lods (icons.lod and EnglishD.lod at least) which is not the greatest way IMHO.raekuul wrote:It should also be possible to distribute patch files (I'll look around to see what's a good fit; xdelta comes to mind) for the MM8 assets that are getting changed. The fewer raw assets being redistributed, the better.
We have 6 lods in Data came from MM8: bitmaps.lod, EnglishD.lod, EnglishT.lod, games.lod, icons.lod, sprites.lod. No one is left unmodified. And I'm not sure what is amount of unchanged data in MM8 files from these lods.
I was thinking about tomchen1989's mmarch (https://www.celestialheavens.com/forum/10/17118) if lod merge will be required. Though it shouldn't.
mm8.exe is just patched by GrayFace's patch. No additional modification (as there is no difference found with GOG version patched by MM8Patch 2.4.1; checked by vbindiff).raekuul wrote:E: Yeah, any files with a shared name between the mod and MM8's base game should be diff'd instead of being provided wholesale (looking at the Anims here, but providing a patch for MM8.exe instead of redistributing the executable directly is less of a legal grey area),
Side note: we probably need to take GrayFace's modifications to MM7 done by his MM7Patch 2.4 unless they are already merged.
Well... According to mmarch there is no one unmodified file in EnglishD.lod (compared to GOG MM8 one). Wonder what size of the patch we will get.raekuul wrote:and depending on how Rodril pulled the MM6/MM7 graphical assets we can either redistribute the tools with a script wrapper or else write new extracting/patching tools from scratch to redistribute with the mod (I really hope for the former since that's already done) and pull the data player-side.
It looks like most of the bloat comes from the MM8 assets being redistributed wholesale instead of being diff/patched, so we can save a lot of space just from optimizing that part. I'll look around for a good diff/patch tool for this. xdelta patching comes to mind but we need something that can be used with shell scripting (to automate as much of the process as possible)
Several things could be done (even before all that). EnglishT.lod, EnglishD.lod and icons.lod should be split. MM7 and MM6 items icons should unconditionally have "7" and "6" prefixes accordingly (you could remember that "boot on face" feature). Same could be applied to players face icons and voice sounds.
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Heavy (really heavy) patching of mm8.exe would be required. Each new skill should be hardcoded into game engine code (in multiple places). Players skill list should be put somewhere else. Every offset entry (hundreds of them) should be changed. I'd say it's easier to add sixth party member than new skill.Mirondor wrote:Would it be possible to make a table files able to create new skills based on something?
For example i want to create a new skill for knight called "combat tactics", and it would base on armsmaster, so i'd have 2 armsmaster skills, and one of them called combat tactics for example.
Or a new skill for mages like "Occultism" based of fire magic ect...
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Fellow MouseLook user? Have you tried press CapsLock before casting Town Portal?Eksekk wrote:Would it be possible to introduce some delay when casting town portal before you can click on cities? 0.5 sec should be enough. Doubleclicking happens often, which is very annoying. It didn't happen in vanilla (town portal here was modified, which is probably why). The same happens with dimension door.
You are using some additional modification. Additional modifications can differ. (And since you didn't mention if it's Base Merge or Community Branch, it's even harder to guess.)Wormwood wrote:I just spent 20 min typing up a rant about the racial skills.... in the end it seems most of my confusion was due to the tracker's table of the same being rather out of date. L. Elves don't get a master bow racial bonus, D.Elves DO get a +1 Merc bonus (I think?), Dracoliches can only learn expert Dragon ability. If the table in the tracker could be updated to reflect how the racial skills function currentlyI'd appreciate it!
No, AFAIK.Wormwood wrote:Is it possible to have the starting skill slots completely empty during character creation?
Depends on your Merge version and additional modification. Dark Elf shouldn't get Dragon racial bonuses anyway. Undead Dragon has Undead race in Base Merge and nothing can be done here. In Community Branch Undead Dragon has Undead Dragon race, so his racial bonuses can be tuned. I guess you're using 'Race Skill Alternate' modification (which is broken [in other way] since based on wrong assumption of how race skills work [I mean second number in field value - it's added to maximum of first number and current class value]) - it hasn't been tuned since new race system was implemented, so Undead Human and Undead Dragon have almost the same bonuses. I don't maintain this modification so you'd better ask majaczek about any possible changes.Wormwood wrote:only the living dragon necromancer was able to learn dodge and unarmed, while the D.Elf wth Dragon class and undead dragons all were unable to learn the unarmed/dodge skills. I guess my question is, bug or feature?
Awesome! Thank you! Merge itself requires GrayFace patch so no need to mention.Kraust wrote:my hd texture for mm678 marge mode ( only mm7 ). needs GrayFace patch
I'd say v1.Kraust wrote:help me choes best version textures
They are already present (if we speak about player resistances) but don't affect anything. I'm planning to code them [one day] into 0x48CDA6 (CalcDamageToPlayer) together with Physical and Energy (field was used previously by Magic) resistances, with all 11 fields to be used.Eksekk wrote:Another suggestion. Add dark/light resistance (preferably as an optional toggle)?
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
If you want your blasters to hit immune creatures:cthscr wrote:Blasters always deal melee physical damage in MM8. While it can be easily fixed for ranged attack (with object 135), I'm not sure about melee range.raekuul wrote:Probably the most important buff Blasters could receive is making the Hive Core immune to anything that isn't a Blaster (as it should be).
Upd: also they should be non-immune to anything with damage type different to 0-4,6-10. Like dragons (who have damage type 50)...
Code: Select all
-- Fix Blaster Damage Type
mem.asmpatch(0x437009, [[
mov ecx, dword ptr [ebp-8]
mov dword ptr [ebp-0xC], 0xC
jmp absolute 0x437243
]])
And here is debuff for Dragons:
Code: Select all
-- Make Dragon Attack to be of Fire damage type
mem.asmpatch(0x43710C, [[
mov dword ptr [ebp-0xC], 0
]])
Last edited by cthscr on 19 Oct 2020, 18:09, edited 1 time in total.
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Yes, I am using MouseLook and no, I didn't test disabling it. Will test asap. Though a fix requiring no workaround would still be appreciated.cthscr wrote:Fellow MouseLook user? Have you tried press CapsLock before casting Town Portal?Eksekk wrote:Would it be possible to introduce some delay when casting town portal before you can click on cities? 0.5 sec should be enough. Doubleclicking happens often, which is very annoying. It didn't happen in vanilla (town portal here was modified, which is probably why). The same happens with dimension door.
Anyways, if I want to disable positive reputation on Enroth (because massive discounts can be reached almost immediately and it ruins the gold economy), can I use evt.Set("Reputation", 0) safely? I peeked inside reputation.lua and saw some stuff related to multicontinent reputation, wouldn't it break them?
Unfinished mod by me: MM7 Rev4 mod, MMMerge version.
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
One can try to find the root reason of this bug and add it to the issue: https://gitlab.com/templayer/mmmerge/-/issues/73Eksekk wrote:Yes, I am using MouseLook and no, I didn't test disabling it. Will test asap. Though a fix requiring no workaround would still be appreciated.
I haven't seen anything related to cross-continent reputation (it's per-continent). Using evt.Set shouldn't affect anything but current continent. So I'd say you can use it.Eksekk wrote:Anyways, if I want to disable positive reputation on Enroth (because massive discounts can be reached almost immediately and it ruins the gold economy), can I use evt.Set("Reputation", 0) safely? I peeked inside reputation.lua and saw some stuff related to multicontinent reputation, wouldn't it break them?
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Dear Rodrill,
I am new here.
I do love the merge of MM6-8
I also created some Ideas if you are interested let me know
Best
Roland
I am new here.
I do love the merge of MM6-8
I also created some Ideas if you are interested let me know
Best
Roland
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
@Kraust thank you for your work !
Is it possible to have a single archive with all your upscaled textures ? It would be cool to have a place where we can find the newest version of the textures.
Is it possible to have a single archive with all your upscaled textures ? It would be cool to have a place where we can find the newest version of the textures.
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
i post all news in this thread https://www.celestialheavens.com/forum/ ... start=5960zealot wrote:@Kraust thank you for your work !
Is it possible to have a single archive with all your upscaled textures ? It would be cool to have a place where we can find the newest version of the textures.
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
What you think about ground textures without edges?
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
It's better.
"There’s nothing to fear but fear itself and maybe some mild to moderate jellification of bones." Cave Johnson, Portal 2.
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
Looks much better!
- tomchen1989
- Pixie
- Posts: 140
- Joined: 21 Jun 2008
- Location: Europe / China
Re: Might and Magic 6, 7, 8 merge based on mm8 engine. [upd. 12.07.2020]
MMMerge bug report:
In a magic system, the 10th spell can never appear in the level-3 magic guilds in Antagarich and Jadame.
Fire: Inferno
Air: Fly
Water: Ice Blast
Earth: Death Blossom
Spirit: Shared Life
Mind: Psychic Shock
Body: Flying Fist
They can appear and be purchased in their level-4 magic guilds in these continents.
The level-3 magic guilds in Antagarich and Jadame do not have the last level-3 (master level) spells (i.e. tenth spells, such as Fly). In Antagarich, you have to go to the highest level Air Magic guild in Celeste to buy a Fly spell book. In Jadame, you can't find a place selling Fly at all. Although you can alway go to Enroth to easily buy it, it's not good design.
Originally reported here in a Chinese community.
GitLab issue here
In a magic system, the 10th spell can never appear in the level-3 magic guilds in Antagarich and Jadame.
Fire: Inferno
Air: Fly
Water: Ice Blast
Earth: Death Blossom
Spirit: Shared Life
Mind: Psychic Shock
Body: Flying Fist
They can appear and be purchased in their level-4 magic guilds in these continents.
The level-3 magic guilds in Antagarich and Jadame do not have the last level-3 (master level) spells (i.e. tenth spells, such as Fly). In Antagarich, you have to go to the highest level Air Magic guild in Celeste to buy a Fly spell book. In Jadame, you can't find a place selling Fly at all. Although you can alway go to Enroth to easily buy it, it's not good design.
Originally reported here in a Chinese community.
GitLab issue here
Last edited by tomchen1989 on 25 Oct 2020, 12:17, edited 3 times in total.
Who is online
Users browsing this forum: No registered users and 2 guests