Bug with English Holy League sequence
o
As you can see, actions A & C should be reversed for the Yorkists, but are currently identical. This is my fault, and should be corrected:
I don't see a problem with having this event share the same action names as the first. The event text is different, however.
I've also moved Henry VIII from below the OR trigger to above it, as Edward V is in the second event. It is my understanding that the trigger ought to be that the respective monarch (Henry or Edward) should be active, as well as either of the Holy League events.
Either way, it's now corrected.
Sorry, Bordic.
o
Bordic's right here, despite my previous answer (I misunderstood him at the time); after checking the latest version of the English events file (Beta 2) A & C should be swapped...Bordic said:This last event seems to be bugged! According to event ENG_17029 ACTIONNAME164253A should be on the place of ACTIONNAME164253C, shouldn't it? And, why don't you use the same strings included in 17029? They are just duplicates in text.csv.
Code:
#(1510-1512) Holy League of 1510 -I- (Tudor)
event = {
id = 17029
trigger = {
[COLOR=Yellow]monarch = 046009 #Henry VIII[/COLOR]
OR = {
[COLOR=Red]monarch = 046009 #Henry VIII[/COLOR]
event = 17024 #PAP: The Holy League against France
event = 236006 #MUS: The Holy League against France
}
}
random = no
country = ENG
name = "EVENTNAME17024" #The Holy League against France
desc = "EVENTHIST17024"
date = { day = 10 month = October year = 1510 }
offset = 500
deathdate = { day = 1 month = april year = 1512 }
action_a = {
name = "ACTIONNAME17024[COLOR=DeepSkyBlue]A[/COLOR]" [COLOR=DeepSkyBlue]#Express Support[/COLOR]
command = { type = casusbelli which = FRA value = 36 }
command = { type = relation which = FRA value = -150 }
command = { type = relation which = HAB value = 150 }
command = { type = relation which = VEN value = 150 }
command = { type = relation which = ARG value = 150 }
command = { type = relation which = PAP value = 150 }
command = { type = sleepevent which = 164253 } #ENG: The Holy League against France -II-
}
action_b = {
name = "ACTIONNAME17024B" #Stay neutral
command = { type = relation which = FRA value = 50 }
command = { type = relation which = VEN value = -50 }
command = { type = relation which = HAB value = -50 }
command = { type = relation which = ARG value = -50 }
command = { type = relation which = PAP value = -50 }
command = { type = sleepevent which = 164253 } #ENG: The Holy League against France -II-
}
action_c = {
name = "ACTIONNAME17024[COLOR=DeepSkyBlue]C[/COLOR]" [COLOR=DeepSkyBlue]#Express Hostility[/COLOR]
command = { type = relation which = FRA value = 150 }
command = { type = relation which = VEN value = -150 }
command = { type = relation which = HAB value = -150 }
command = { type = relation which = ARG value = -150 }
command = { type = relation which = PAP value = -150 }
command = { type = sleepevent which = 164253 } #ENG: The Holy League against France -II-
}
}
Code:
#(1510-1512) Holy League of 1510 -II- (Yorkist)
event = {
id = 164253
trigger = {
[COLOR=DeepSkyBlue]monarch = 046047 #Edward V[/COLOR]
OR = {
event = 17024 #PAP: The Holy League against France
event = 236006 #MUS: The Holy League against France
}
}
random = no
country = ENG
name = "EVENTNAME17024" #The Holy League against France
desc = "EVENTHIST164253"
date = { day = 10 month = october year = 1510 }
offset = 500
deathdate = { day = 1 month = april year = 1512 }
action_a = {
name = "ACTIONNAME17024[COLOR=Yellow]C[/COLOR]" [COLOR=Yellow]#Express Hostility[/COLOR]
command = { type = relation which = FRA value = 150 }
command = { type = relation which = VEN value = -150 }
command = { type = relation which = HAB value = -150 }
command = { type = relation which = ARG value = -150 }
command = { type = relation which = PAP value = -150 }
command = { type = sleepevent which = 17029 } #ENG: The Holy League against France -I-
}
action_b = {
name = "ACTIONNAME17024B" #Stay neutral
command = { type = relation which = FRA value = 50 }
command = { type = relation which = VEN value = -50 }
command = { type = relation which = HAB value = -50 }
command = { type = relation which = ARG value = -50 }
command = { type = relation which = PAP value = -50 }
command = { type = sleepevent which = 17029 } #ENG: The Holy League against France -I-
}
action_c = {
name = "ACTIONNAME17024[COLOR=Yellow]A[/COLOR]" [COLOR=Yellow]#Express Support[/COLOR]
command = { type = casusbelli which = FRA value = 36 }
command = { type = relation which = FRA value = -150 }
command = { type = relation which = HAB value = 150 }
command = { type = relation which = VEN value = 150 }
command = { type = relation which = ARG value = 150 }
command = { type = relation which = PAP value = 150 }
command = { type = sleepevent which = 17029 } #ENG: The Holy League against France -I-
}
}
I don't see a problem with having this event share the same action names as the first. The event text is different, however.
I've also moved Henry VIII from below the OR trigger to above it, as Edward V is in the second event. It is my understanding that the trigger ought to be that the respective monarch (Henry or Edward) should be active, as well as either of the Holy League events.
Either way, it's now corrected.
Sorry, Bordic.