Myrddraal -> RE: Entry turns? (1/3/2013 3:13:32 PM)
|
The starting alliances are defined by which alliance bracket the faction is included in. So in 1914.lua, you'll see something like this: alliances =
{
{
id = 0,
factions =
{
[i]A load of factions, these are the neutral factions[/i]
}
},
-- **************************** ENTENTE ALLIES ***********************
{
id = 1,
enemies = {2},
factions =
{
[i]Just Serbia here[/i]
}
},
-- ******************* CENTRAL POWERS *********************
{
id = 2,
enemies = {1},
factions =
{
[i]Just Austria here[/i]
}
}
} To change the starting alliances, shift factions between the relevant sections. The alignment of neutral nations is then set by the function SetFactionAlignment
|
|
|
|