• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
russ555 said:
i will change it when i get home but i dont no how it even got there cos i copied & pasted what blue emu said :confused:
also how would an or trigger work?

following the

OR ={
a
b
c
d
e
}
when any one of a, b, c, d, or e are true.
 
so if i did

or {
control = { province = 187 data = GER }
control = { province = 238 data = GER }
control = { province = 175 data = GER }
control = { province = 248 data = GER }
control = { province = 258 data = GER }
control = { province = 253 data = GER }
control = { province = 163 data = GER }
control = { province = 154 data = GER }
control = { province = 1907 data = GER }
control = { province = 1372 data = GER }

-------------------------------------------
the event would fire everytime GER captured 1 of the above provinces? (i no its not set out perfectly)
 
No, it would still fire randomly none to a couple of times a year (assuming the trigger conditions are true when it tries to fire).

Btw, I am not entirely certain a random event respects a country specification.
 
date = { year = 1936 }
offset = 7
deathdate = { year = 1999 }

You will have to remove the "random = yes" line for this to work.
 
ok theokrat i took your advice and made i single event for each province but they dont fire :( here are 2 samples

PHP:
#############################################
###### Vital province lost # 
#############################################
event = {
        id = 55564
        random = no
        country = SOV
        trigger = {
                atwar = Yes = GER
                control = { province = 253 data = GER }

        }
 
        name = "EVT_55556_NAME"
        desc = "EVT_55556_DESC"
        style = 0
         persistent = yes
 
 
        action_a = {
                name = "ACTIONNAME55556A"
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }

                   }

}
#############################################
###### Vital province lost # 
#############################################
event = {
        id = 55563
        random = no
        country = SOV
        trigger = {
                atwar = Yes = GER
                control = { province = 154 data = GER }

        }
 
        name = "EVT_55556_NAME"
        desc = "EVT_55556_DESC"
        style = 0
         persistent = yes
 
 
        action_a = {
                name = "ACTIONNAME55556A"
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }
                command = { type = add_division which = "militia" value = militia when = 3 }

                   }

}

to test the events i started a '41 campaign as GER use fullcontrol to move Russia's armies moved my troops to all of the provinces and then loaded as Russia and waited till the event fired but after 0ctober 42 i gave up. any idea y they are not firing?
 
1. You still have "atwar = Yes = GER" in your trigger.
2. You still do not have a date, offset and deathdate.
3. Are you sure you want these events to be persistent?