ok that's perfect. Since it will be a choice event.Robotron wrote: ↑Sun Nov 05, 2023 5:28 pm Only choice-events can be displayed as ???-events.
If you want to prevent your Hindenburg-Line event from showing upon triggering, trigger it with -1 instead of game.turn
The disadvantage of doing it this way is that you won't be able to refer to the proper game.turn on which the HindenburgLine was triggered in the future, because this is now set to -1Code: Select all
if GetEvent("HindenburgLine") == 0 then if game.turn == 45 then --- just an example for whatever condition you fancy SetEvent("HindenburgLine", -1) end end
So for example this would no longer be possibleCode: Select all
if game.turn == GetEvent("HindenburgLine") +12 then (...) end
still working on the code. Getting close