• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

tuore

Caramelised Utopian
76 Badges
Mar 16, 2009
6.981
188
  • March of the Eagles
  • Europa Universalis IV: Call to arms event
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Heir to the Throne
  • The Kings Crusade
  • Lost Empire - Immortals
  • Magicka
  • Crusader Kings II
  • Victoria: Revolutions
  • Rome Gold
  • Semper Fi
  • Supreme Ruler: Cold War
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • 500k Club
  • Arsenal of Democracy
  • Europa Universalis IV
  • Divine Wind
  • Europa Universalis III Complete
  • Deus Vult
  • Cities: Skylines - After Dark
  • Cities: Skylines
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Pre-order
  • Mount & Blade: Warband
  • Mount & Blade: With Fire and Sword
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Legacy of Rome
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Conclave
  • Cities: Skylines - Snowfall
  • Island Bound
  • 200k Club
  • Crusader Kings II: Charlemagne
  • Europa Universalis IV: Wealth of Nations
  • Victoria 2
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Europa Universalis IV: Res Publica
  • Europa Universalis III Complete
  • Crusader Kings II: Sword of Islam
  • Europa Universalis III
  • Europa Universalis III Complete
  • Europa Universalis IV: Art of War
My mod constantly gives errors about my Berlin Wall event. It says "Unknown data defined db/events/NewWall.txt line = 12 data = "name = "Rebuild the Wall?"" or something like that. Here's the event file. It doesn't differ from any of my other events that work fine, though.

Code:
event = { 
	id = 120
	random = no
	country = SOV
	trigger = {
		control = { province = 300 data = SOV } #Berlin owned by the USSR
		government = communist #Communists in the government
		}
	}

    name = "Rebuild the Wall?"
	desc = "In late 1989, the Berlin Wall, a symbol of communism in Europe, collapsed. It was rumoured to be the end of the USSR and the communism. Well, they were wrong. We must show the Western capitalists that communism is the only acceptable way of life. Should we rebuild the Berlin Wall?"
    picture = "berlinwall"
	style = 0
	
	date = { day = 1 month = january year = 1990 }
	offset = 7 # Check for trigger conditions every seven days
	deathdate = { day = 30 month = december year = 9999 }

I don't think the rest is needed. The game says the problem is on line 12, which is the name part.
 
You have all brackets (is that the right English term for "{" ?) closed before the "name =" line, so the name line is not considered part of the event. Erase one of the "}" and try it again. :)

EDIT: Argh, Jarno! You were faster only because you never use capital letters!
;)
 
You have all brackets (is that the right English term for "{" ?) closed before the "name =" line, so the name line is not considered part of the event. Erase one of the "}" and try it again. :)

EDIT: Argh, Jarno! You were faster only because you never use capital letters!
;)

OH IM SORRY IS THIS BETTER :)?

good its fixed now.
 
I am having a similar problem with this event for The Broken Star.


Event said:
event = {
id = 501
random = no
country = USA

name = "1992 Democratic Primary"
desc = "The Democratic Primary is between Arkansas Governor Bill Clinton, Former California Governor Jerry Brown, and Former Senator from Massachusetts Paul Tsongas. Clinton has been successful labeling himself as the centrist New Democrat, but has been battling an affair scandal. Brown is no newcomer to the Democratic Primaries, and has focused on a reform platform including Congressional term limits and a flat income tax. Paul Tsongas has focused on his fiscally conservative policies, including a commitment to paying down the Federal Debt. Ultimately the Democratic Party met in New York City to pick its candidate."
picture = "PRIMARYPICTUREDEM"
style = 0

trigger = { government = democratic }

date = { day = 13 month = july year = 1992 }

action_a = {
name = "Nominate Arkansas Governor Bill Clinton"
ai_chance = 60
command = { type = sleepevent which = 505 }
}
action_b = {
name = "Nominate Former Senator Paul Tsongas"
ai_chance = 28
command = { type = sleepevent which = 503 }
command = { type = sleepevent which = 504 }
}
action_c = {
name = "Nominate Former California Governor Jerry Brown"
ai_chance = 12
command = { type = sleepevent which = 503 }
command = { type = sleepevent which = 504 }
}
}
 
Your description may be too long. I dunno the max # of characters but there is one. Test it with a short desc.

Yep. Guess its time to mess with the localization :eek:

EDIT: Looks like the threshold is about 500 characters (incl spaces) before AoD starts to throw a fit.
 
Last edited: