I want to add two events:
"Die, damnit" was included because in the Mac version certain people simply never die. I got sick of F12-dying the world at 65 and so I wrote an event that I think should kill all of them.
I tried putting these events into a new file, but the game keeps telling me "Unknown event" when I try to fire the damn things.
What else do I have to do?
Nick
Code:
################
#You get a random Courtier
################
character_event = {
id = 20001
picture = "event_appearance"
trigger = {
condition = { type = ruler }
}
mean_time_to_happen = {
months = 2000
}
action_a = { #Grant him a place in your court
effect = { type = create_courtier value = spymaster }
}
action_b = { #Grant him a place in your court
effect = { type = create_courtier value = steward }
}
action_c = { #Grant him a place in your court
effect = { type = create_courtier value = marshal }
}
action_d = { #Grant him a place in your court
effect = { type = create_courtier value = chaplain }
}
}
#################################
#Die, damnit
#################################
character_event = {
id = 20002
picture = "event_plague"
trigger = {
condition = { type = age value = 65 }
mean_time_to_happen = {
months = 2
immidiate = {
effect = { type = death }
}
I tried putting these events into a new file, but the game keeps telling me "Unknown event" when I try to fire the damn things.
What else do I have to do?
Nick