I'm working on my own scenario based on the vanilla 1795 one with its own mod. The problem is, I tried to add one country in Corsica, but when I load the scenario it gets stuck (doesn't crash). If I remove it from the include file, the game loads fine and Corsica is uncolonised, and if I give the province and city to another country the game works too.
Before using my own country I tried with the Corsican files already in the game without success either.
Here's the country file for the scenario:
And this is what I added to countries.txt
Before this I had changed France to another country of my creation, only adding its section to the countries.txt and a file in the scenario folder, which is what I also did here.
Before using my own country I tried with the Corsican files already in the game without success either.
Here's the country file for the scenario:
Code:
# Napoleonic lands #
country = {
tag = NPL
ai = "default_ai.txt"
monarchtable = "scenarios\1807\monarchs\monarchs_npl.txt"
colonialattempts = 0
colonialnation = no
major = no
colonists = 0
cancelledloans = 0
extendedloans = 0
treasury = 1500
inflation = 0.300000
merchants = 0.083333
religion = { type = catholic }
culture = {
type = italian
type = french }
diplomacy = {
}
changedreligion = no
knownprovinces = { 1331 1362 1470 1469 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 732 733 734 735 736 737 738 739 740 741 742 744 745 746 806 840 841 842 871 873 874 875 876 877 878 879 880 881 882 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1057 1058 1059 1422 1460 1458 1459 1461 1361 1390 1394 1433 1455 1429 1426 1430 1423 1424 1425 1428 1391 1401 1397 1420 1418 1462 1419 1416 1417 1415 1414 1413 1435 1432 1431 1453 1437 1454 821 819 820 817 1609 1610 1611 1612 1613 }
ownedprovinces = { 398 }
controlledprovinces = { 398 }
nationalprovinces = { 398 376 379 380 382 383 384 385 407 408 410 411 412 413 417 418 419 420 421 422 423 424 425 426 # 1419 }
city = {
population = 5200
location = 398
bailiff = yes
courthouse = yes
fortress = { level = 2 date = { year = 1492 month = january day = 1 } increase = no }
capital = yes
}
technology = {
land = { level = 57 value = 0 }
naval = { level = 51 value = 0 }
stability = { level = 3 value = 0 }
trade = { level = 9 value = 0 }
infra = { level = 9 value = 100 }
}
}
And this is what I added to countries.txt
Code:
NPL = { # Napoleonic lands
picture = "gfx\scenarios\picture_min.bmp"
color = DarkGray
techgroup = latin
leader_language = FRA
new_colony = FRA
gfx = {
army = FRA
navy = FRA
}
policy = {
aristocracy = 5
centralization = 8
innovative = 5
mercantilism = 6
offensive = 5
land = 5
quality = 8
serfdom = 2
}
elector = 0
history = { }
}
Before this I had changed France to another country of my creation, only adding its section to the countries.txt and a file in the scenario folder, which is what I also did here.