• 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.

GavinYao

Recruit
10 Badges
Aug 16, 2024
4
0
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Prison Architect
  • Prison Architect: Psych Ward
  • Crusader Kings III
  • Battle for Bosporus
  • Island Bound
  • Hearts of Iron IV: No Step Back
hi, it's supposed to take place at 1836.1.7, but it don't happen, i can trigger it by console mode, but the console mode also says it's not the right time.
1723918010562.png
1723918021431.png
(it didn't happen at 1836.1.7)
the trigger i set is like this:
1723918077646.png

i don't know what i've done wrong.
 
Events must be triggered by something. This can be an on_action or any effect. If you want an event to happen precisely six days after the start, adding an effect to the history files is the best way to do so. Trigger conditions only determine whether the event can actually fire when called by the effect.

For example, in 00_global.txt:

Code:
    c:PNI ?= {
        trigger_event = {
            id = garibaldi_events.1
            days = 6
        }
    }
 
  • 1Like
Reactions:
Events must be triggered by something. This can be an on_action or any effect. If you want an event to happen precisely six days after the start, adding an effect to the history files is the best way to do so. Trigger conditions only determine whether the event can actually fire when called by the effect.

For example, in 00_global.txt:

Code:
    c:PNI ?= {
        trigger_event = {
            id = garibaldi_events.1
            days = 6
        }
    }
Events must be triggered by something. This can be an on_action or any effect. If you want an event to happen precisely six days after the start, adding an effect to the history files is the best way to do so. Trigger conditions only determine whether the event can actually fire when called by the effect.

For example, in 00_global.txt:

Code:
    c:PNI ?= {
        trigger_event = {
            id = garibaldi_events.1
            days = 6
        }
    }
it works! thanks pal! are there any other counters apart from days? like months or years?
 
I can't find any uses of months or years with events, but there is a possibility those work. There are a few events that use weeks, but basically all delayed events use days