goobermaster said:
I am creating an event chain that starts with one, than that triggers others etc.. but I do not know what year this will execute, so I do not have a set date for the beginning of the chain.
So my question is this: can I trigger an event from another, but put a delay of a week or so on the actual execution of it?
If you're first event isn't date specific I believe you've got to start using flags and offsets.
So, if you want 'Choice A' of EVENT1 to be the one which triggers the 'EVENT2', add this to the command line:
Code:
command = { type = setflag which = EVENT2 } ## Specific flagname not important!
Then, for EVENT2, you've got have the trigger and date conditions like this:
Code:
[B] trigger = {
flag = EVENT2
}[/B]
name = "<<Blahblah>>"
desc = "<<Blahblahblah....>>"
[B] date = { day = 1 month = january year = 1936 }
offset = 10
deathdate = { day = 30 month = december year = 1949 }[/B]
This means EVENT2 will fire sometime in the next 10 days after EVENT1.
There may be an easier way to do this, but this is how I generally make these sorts of events!