Overall, this is what it looks like. The only problem is choosing which player hero to teleport.function NewDay()
if GetDate() == 71 then
SetObjectPosition('hero_name_1', coord_x, coord_y, floor_0_or_1)
SetObjectPosition('hero_name_2', coord_x, coord_y, floor_0_or_1)
-- ... and so on
end
end
Trigger(NEW_DAY_TRIGGER, 'NewDay')
RedHeavenHero, thank you very much. And one more question, if possible. Are the heroes on the map chosen by the player or randomly? If so, how would that work? As I understand it, I need to choose a starting block for the hero, right?