2) How to deactivate teleporter Dragonsand - New World Computing?
3) How to deactivate/change "fly" scroll in New Sorpigal? Maybe "water walk" scroll.
All this makes "Might & Magic VI" to easy game

Code: Select all
Game.MapEvtLines:RemoveEvent(104)
Code: Select all
Game.MapEvtLines:RemoveEvent(92)
Code: Select all
Game.MapEvtLines:RemoveEvent(225)
Code: Select all
local remove = {["oute3.odm"] = {104, 225}, ["outb3.odm"] = {92}}
function events.LoadMap()
local val = remove[Map.Name:lower()]
if val then
for _, event in pairs(val) do
Game.MapEvtLines:RemoveEvent(event)
end
end
end
Users browsing this forum: Google [Bot] and 5 guests