Might & Magic Merge Mod: The World of Enroth Cheats
Game Guides, General Guides /
13 Feb 2022
/
How to Enable The Developer Console
To access the dev console, press Ctrl+F1 while playing the game. You can use one of the following cheat commands from here. To run commands, press Ctrl+Enter.
Note: You can easily copy and paste these codes into the console.
Console Commands
Learn All Spells
for _, pl in Party do for i in pl.Spells do pl.Spells[i] = true end end
Get all skills at Master 12
for _, pl in Party do for i in pl.Spells do pl.Spells[i] = true end end
Learn all available skills at their maximum level
local LearnLevel = (Game.Version > 6 and {1, 4, 7, 10} or {1, 4, 12}) for _, pl in Party do for i, learn in EnumAvailableSkills(pl.Class) do local skill, mastery = SplitSkill(pl.Skills[i]) skill = math.max(skill, LearnLevel[learn]) -- learn at least the usual needed level mastery = math.max(mastery, learn) -- learn the mastery pl.Skills[i] = JoinSkill(skill, mastery) end end
Summon a monster (Peasant):
local mon = SummonMonster(151, Party.X, Party.Y, Party.Z, true) mon.NPC_ID = 52 mon.Hostile = false
Subscribe
0 Comments
Oldest