Hey fellas, I'm having trouble getting the "month = { " trigger to work properly.
Now, what I'm trying to do is get an even firing in a specific month. I've found that you can consistently get an event to fire almost immediately (within 2-3 days) when you set the MTTH to -1 day, so that's no issue. Here are the triggers that I'm using:
Now, looking at the EU3 modding documentation, the month trigger looks for whether the current month is the same or before the value given. In this example, the event will fire during January, February or March.
I'm aware that it will keep firing, that's something that can be worked out easily once I have this hurdle overcome.
The obvious way around this is to add:
so that it doesn't trigger before March. However, it looks like this trigger doesn't like the NOT boolean, so adding this line means the event won't fire. I've tried removing the original month trigger, but it looks like the NOT completely messes it up.
The only other way I can think of doing this is by adding a title that is automatically given to all characters in January (month = 1) and removed after a 2-month term, replacing it with another title that expires in January. This would allow the event to keep track of the months by using a trigger that checks for which title the characters have at any given time.
This is a bit of an inelegant solution, though, and I was wondering if anyone knows how to fix this within the event itself?
Now, what I'm trying to do is get an even firing in a specific month. I've found that you can consistently get an event to fire almost immediately (within 2-3 days) when you set the MTTH to -1 day, so that's no issue. Here are the triggers that I'm using:
Code:
trigger = {
government = republic
tag = ROM
month = 3
}
I'm aware that it will keep firing, that's something that can be worked out easily once I have this hurdle overcome.
The obvious way around this is to add:
Code:
NOT = { month = 2 }
The only other way I can think of doing this is by adding a title that is automatically given to all characters in January (month = 1) and removed after a 2-month term, replacing it with another title that expires in January. This would allow the event to keep track of the months by using a trigger that checks for which title the characters have at any given time.
This is a bit of an inelegant solution, though, and I was wondering if anyone knows how to fix this within the event itself?