Auto-translated
Comrades, I have a question. I need a trigger for a new day to count down 7 days from the current day and only then execute the function, but it counts down to the 7th day of the week and executes the function.
---
Trigger(NEW_DAY_TRIGGER, "Training_camp1")
function Training_camp1()
if GetDate(DAY) == DAY+7 then
MessageBox("/Maps/SingleMissions/No_Mans_Lands/Text_Training_Camp1_is_over.txt")
Trigger(OBJECT_TOUCH_TRIGGER, "tower1", "camp_1quest_complete");
end;
end;
