Thank you. But how do I disable spawning on a new week then? For example, Lich week has arrived, and no monsters are spawning?
Then you'll have to do it like this:
function NewDay()
if GetDate(DAY_OF_WEEK) == 1 and GetCurrentMoonWeek() < 84 then
CreateMonster('mob1', CREATURE_PEASANT, 50, 45, 51, GROUND);
end;
end;
Trigger(NEW_DAY_TRIGGER, "NewDay")Then, if a week of some creature happens, the monster won't be placed on the map.