• 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.

cynos

Second Lieutenant
5 Badges
Jun 22, 2004
110
0
  • Crusader Kings II
  • Europa Universalis III
  • Hearts of Iron III
  • Victoria 2
  • 500k Club
Quick query - is there a guide anywhere to what these things mean?
id = { type = 4712 id = 3678135 }

There's a few in my saved game header section, and they also occur in the attacker/defender bits of the combats. Is it sprite info?

Thanks in advance.
 

Ayeshteni

Jehanne's Slave
111 Badges
Jul 31, 2002
6.280
108
  • 500k Club
  • Europa Universalis III Complete
  • March of the Eagles
  • Europa Universalis III Complete
  • Penumbra - Black Plague
  • Europa Universalis IV: Res Publica
  • Europa Universalis: Rome
  • Semper Fi
  • Sengoku
  • Victoria 2
  • Victoria 2: A House Divided
  • Rome: Vae Victis
  • 200k Club
  • Heir to the Throne
  • Cities: Skylines
  • Crusader Kings II: Holy Knight (pre-order)
  • Europa Universalis III: Collection
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Pre-order
  • Pride of Nations
  • Rise of Prussia
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Cities: Skylines - After Dark
  • Hearts of Iron IV: No Step Back
  • Europa Universalis III
  • Hearts of Iron II: Armageddon
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • Deus Vult
  • A Game of Dwarves
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • For The Glory
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
cynos said:
Quick query - is there a guide anywhere to what these things mean?
id = { type = 4712 id = 3678135 }

There's a few in my saved game header section, and they also occur in the attacker/defender bits of the combats. Is it sprite info?

Thanks in advance.

I am sure someone can give a fuller explaination. However;

Each item in the game has a unique id that differentaites them from each other. Wars and Alliances are defined this way, specific Armies and Navies as well. Each id therefore points to one of those and to one only.

alliance = {
id = { type = 9424 id = 1 }
type = vassalization
startdate = { year = 1617 month = january day = 0 }
expirydate = { year = 1820 month = december day = 29 }
participant = { ENG SCO }
}

this points to an alliance between England and Scotland for example.

war = {
id = { type = 4712 id = 16978 }
date = { year = 1618 month = march day = 23 }
enddate = { year = 1625 month = december day = 8 }
defenderscore = { PAR = { GEN = 6 } VEN = { GEN = 28 } BAD = { } }
attackerscore = { GEN = { VEN = 17 PAR = 14 } }
attackers = {
id = { type = 4712 id = 16976 } type = war
startdate = { year = 1618 month = march day = 23 }
expirydate = { year = 0 month = january day = 0 }
participant = { GEN }
}
defenders = {
id = { type = 4712 id = 16977 }
type = war
startdate = { year = 1618 month = march day = 23 }
expirydate = { year = 0 month = january day = 0 }
participant = { PAR VEN BAD }
}
}

this to a war between two alliances. The numbers are consecutive. They point to the war participants (in fact the war status of all participants), not to any actual armies participating.

They are unique identification the game uses to identify specifics actions ongoing in a savedgame so that the game can continue them when the game is loaded.

Ayeshteni