well, i have 2 question right now.
one is about this event:
this code is the trigger of an event that i made.
like you can see, it will not trigger if event 9001 has already trigger (that is what I understand that line does
) and also if Ukraine exists.
Then starts an OR to know if Germany OR Hungary OR Romania controls Kiev.
Then if there is war between Germany and the Soviets.
Well, i want the event to:
Trigger if Ukraine don't exists and the event has not happened AND if Germany or Hungary or Romania owns Kiev AND there is a war between Germany and the Soviets.
So i think that the TRIGGER condition is good right?
but if i want to add that if Germany own Kiev or Hungary own kiev AND it is allied with Germay or Romania owns Kiev AND it is allied with Germany, how do I do that?
i thought this:
what do you think?
another question, how do you create a division for a country through an event?
i do not have a clue.
Thanks.
one is about this event:
Code:
trigger = {
NOT = {
OR = {
event = 9001
exists = UKR
}
}
OR = {
control = { province = 775 data = GER } # Germany controls Kiev
control = { province = 775 data = HUN } # Hungary controls Kiev
control = { province = 775 data = ROM } # Romania controls Kiev
}
war = { country = GER country = SOV }
}
like you can see, it will not trigger if event 9001 has already trigger (that is what I understand that line does
Then starts an OR to know if Germany OR Hungary OR Romania controls Kiev.
Then if there is war between Germany and the Soviets.
Well, i want the event to:
Trigger if Ukraine don't exists and the event has not happened AND if Germany or Hungary or Romania owns Kiev AND there is a war between Germany and the Soviets.
So i think that the TRIGGER condition is good right?
but if i want to add that if Germany own Kiev or Hungary own kiev AND it is allied with Germay or Romania owns Kiev AND it is allied with Germany, how do I do that?
i thought this:
Code:
trigger = {
NOT = {
OR = {
event = 9001
exists = UKR
}
}
OR = {
control = { province = 775 data = GER } # Germany controls Kiev
AND = {
control = { province = 775 data = HUN } # Hungary controls Kiev
alliance = { country = GER country = HUN } # Hungary allied with Germany
}
AND = {
control = { province = 775 data = ROM } # Romania controls Kiev
alliance = { country = GER country = ROM } # Romania allied with Germany
}
}
war = { country = GER country = SOV }
}
another question, how do you create a division for a country through an event?
i do not have a clue.
Thanks.