Random event errors
I posted a big list of errors in random events some time ago, and the majority found their way into 1.03 or 1.04 (I don't recall which); the following, however, seem to have gotten lost in the shuffle. In each case, the errors prevent the event in question from ever firing.
Event 1021 - Agricultural Revolution:
The manpower command only has a value wherever it appears elsewhere. (It doesn't actually seem to do anything in any of the events where it does show up, but that's a different bug entirely.) Either the which = -1 here should be removed, or this should be changed to provincemanpower.
Event 1101 - Chartering of a university:
Both the infra and treasury commands should use value instead of which.
Event 1102 - Commission of a cathedral:
Again, the treasury command should use value instead of which.
Event 1103 - Commission of a great mosque:
Identical to 1102.
I posted a big list of errors in random events some time ago, and the majority found their way into 1.03 or 1.04 (I don't recall which); the following, however, seem to have gotten lost in the shuffle. In each case, the errors prevent the event in question from ever firing.
Event 1021 - Agricultural Revolution:
Code:
[color=white]action_a = {
name = "OK"
command = { type = manpower which = -1 value = 1 }
}[/color]
Event 1101 - Chartering of a university:
Code:
[color=white]action_a = {
name = "EVENT1101A"
command = { type = infra which = 250 }
command = { type = domestic which = innovative value = 1 }
command = { type = treasury which = -200 }
}[/color]
Event 1102 - Commission of a cathedral:
Code:
[color=white]action_a = {
name = "EVENT1102A"
command = { type = stability value = 2 }
command = { type = treasury which = -200 }
}[/color]
Event 1103 - Commission of a great mosque:
Code:
[color=white]action_a = {
name = "EVENT1130A"
command = { type = stability value = 2 }
command = { type = treasury which = -200 }
}[/color]
Last edited:
Upvote
0