Not sure if this is helpful but I was recently working on a decision and found that I could create a unit with a nonculturegroup status just by changing the order of the decision code.
Decision "effect" code that doesnt create a nonculturegroup fleet:
Decision "effect" code that creates a nonculturegroup fleet:
This simple switch leads to a nonculture group fleet appearing from the event.
This is the event code:
Could it be that there is an event that has the wrong "order" which is creating this bug ?
Decision "effect" code that doesnt create a nonculturegroup fleet:
Code:
effect = {
country_event = 180001
<provincenum> = { remove_fleet }
}
Decision "effect" code that creates a nonculturegroup fleet:
Code:
effect = {
<provincenum> = { remove_fleet }
country_event = 180001
}
This simple switch leads to a nonculture group fleet appearing from the event.
This is the event code:
Code:
country_event = {
id = 180001
is_triggered_only = yes
title = "EVTNAME180001"
desc = "EVTDESC180001"
option = {
name = "EVTOPTA180001"
trireme = <provincenum>
}
}
Could it be that there is an event that has the wrong "order" which is creating this bug ?
Upvote
0