Search found 9 matches

by dremor8484
11 Aug 2024, 11:56
Forum: Might and Magic
Topic: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]
Replies: 938
Views: 514830

Re: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]

a new piece of code: how to advance the main storyline of mm8, after burial of troll ashes, without having snapfinger in party. --no need to recruit snapfinger to advance the main storyline function events.AfterLoadMap() if not evt.Cmp("QBits", 59) and evt.Cmp("QBits", 63) then -...
by dremor8484
09 Aug 2024, 18:12
Forum: Might and Magic
Topic: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]
Replies: 938
Views: 514830

Re: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]

Will break if the party spends two whole months training. Consider using Game.Year * 12 + Game.Month and putting evt.Add into a loop that also increments MonthBankPay by one until it's more than that. ok i rewrote part of the code it now stores year and month, and it does a check when the stored va...
by dremor8484
09 Aug 2024, 12:09
Forum: Might and Magic
Topic: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]
Replies: 938
Views: 514830

Re: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]

-- bank pays 1% interest once a month function events.Tick() if vars.YearBankPay == nil then vars.YearBankPay = Game.Year end if vars.MonthBankPay == nil then vars.MonthBankPay = Game.Month end if (vars.YearBankPay ~= Game.Year or vars.MonthBankPay ~= Game.Month) then local PassedYears = Game.Year ...
by dremor8484
07 Aug 2024, 08:49
Forum: Might and Magic
Topic: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]
Replies: 938
Views: 514830

Re: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]

if a character starts with light magic... he learns lvl 1 light spell and gets the lvl 2 identified book in inventory --add light magic starting spell and book function events.BeforeLoadMap() if (Game.Time <= 138350) then for i=0,Party.High do if Party[i].Skills[const.Skills.Light] >= 1 then Game.Cu...
by dremor8484
05 Aug 2024, 12:30
Forum: Might and Magic
Topic: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]
Replies: 938
Views: 514830

Re: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]

hi there, today i found another "problem" i would like to boost the amount of hitpoints healed using body and spirit spells, but i have no idea how to do it... is there someone that already figured this out ? --so far i modded in attribute boosting arcane, divine spell damage and ranged da...
by dremor8484
04 Aug 2024, 08:22
Forum: Might and Magic
Topic: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]
Replies: 938
Views: 514830

Re: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]

tinkering with my mod: i would like, in mm8, to have each new adventurer able to invest a total of 30 creation stat points instead of 15... is it possible ? i know i can adjust the base attributes... i would like to know if it is possible to change the initial 15 points to distribute into 30 thanks ...
by dremor8484
02 Aug 2024, 17:04
Forum: Might and Magic
Topic: problem: mm extensions 2.3
Replies: 3
Views: 326

Re: problem: mm extensions 2.3

It's no trouble to answer here too (at least this post won't get lost among 47 pages!): Github allows downloading the current state of a repository by clicking the green "<> Code" button on its main page and then, "Download ZIP". But v2.3 is still WIP, so you may need to update ...
by dremor8484
02 Aug 2024, 13:08
Forum: Might and Magic
Topic: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]
Replies: 938
Views: 514830

Re: MMExtension v2.2 + MMEditor v2.1 Level Editor [June 4, 2019]

hi everyone, is there any place where i can download mm extensions 2.3 ? i tried inside grayface github but it does let me download only version 2.2 that is missing some features... so, if you have any idea: where can i find the version 2.3 ? i know that version 2.3 has more options, and is being us...
by dremor8484
02 Aug 2024, 11:03
Forum: Might and Magic
Topic: problem: mm extensions 2.3
Replies: 3
Views: 326

problem: mm extensions 2.3

is there any place where i can download mm extensions 2.3 ?

i tried inside grayface github but it does let me download only version 2.2 that is missing some features...

so, if you have any idea: where can i find the version 2.3 ?

Go to advanced search