Might & Magic Merge Mod: The World of Enroth Cheats - MGW

Might & Magic Merge Mod: The World of Enroth Cheats

Might & Magic Merge Mod: The World of Enroth Cheats

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


 

  • Falagar

    He is the founder and editor of Magic Game World. He loved gaming from the moment he got a PlayStation 1 with Gran Turismo on his 7th birthday.

    View all posts
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x