I haven't really worked on this in a while and I'm not sure when I may find time to make more changes to it. Maybe over the holidays I will have some time off to work on it.
I used the Visual Studio Express compiler. It is a free download from Microsoft.
It is possible to just change the underlying code, recompile, and run it to get what you want. That way you don't have to change the GUI at all which would probably be the hardest part.
The province claims come from the IncCreator.cs file. There is a comment "//getting the number of border provinces to be cores" around line 266. The two lines under that get a random number for the provinces from the country lower in the list and higher in the list. It is currently set to 0 to 7.
The rando.Next(8) is generating the random number. You can put your own number in there or make a rando.Next(x) + y to have a min and max.
Good luck.
I used the Visual Studio Express compiler. It is a free download from Microsoft.
It is possible to just change the underlying code, recompile, and run it to get what you want. That way you don't have to change the GUI at all which would probably be the hardest part.
The province claims come from the IncCreator.cs file. There is a comment "//getting the number of border provinces to be cores" around line 266. The two lines under that get a random number for the provinces from the country lower in the list and higher in the list. It is currently set to 0 to 7.
The rando.Next(8) is generating the random number. You can put your own number in there or make a rando.Next(x) + y to have a min and max.
Good luck.