-
Notifications
You must be signed in to change notification settings - Fork 12
/
useful errors.txt
2571 lines (2561 loc) · 233 KB
/
useful errors.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
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
455
456
457
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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\opinion_modifiers\00_opinion_modifiers.txt, 179, 0, CW100, Warning, "Localisation key consort_regent_marriage_ties is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\opinion_modifiers\00_opinion_modifiers.txt, 888, 0, CW100, Warning, "Localisation key oman_agressive_trade is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\2683 - Mentawai.txt, 3, 0, CW241, Error, "Unexpected node culture in 2683 - Mentawai"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\2683 - Mentawai.txt, 4, 0, CW241, Error, "Unexpected node religion in 2683 - Mentawai"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\2683 - Mentawai.txt, 5, 0, CW241, Error, "Unexpected node capital in 2683 - Mentawai"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\2683 - Mentawai.txt, 6, 0, CW241, Error, "Unexpected node hre in 2683 - Mentawai"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\2683 - Mentawai.txt, 7, 0, CW241, Error, "Unexpected node base_tax in 2683 - Mentawai"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\2683 - Mentawai.txt, 8, 0, CW241, Error, "Unexpected node base_production in 2683 - Mentawai"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\2683 - Mentawai.txt, 9, 0, CW241, Error, "Unexpected node base_manpower in 2683 - Mentawai"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\2817 - Neiva.txt, 13, 0, CW241, Error, "Unexpected node is_city in 2817 - Neiva"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\4565 - Tenerife.txt, 15, 0, CW242, Warning, "Too many trade_goods, expecting at most 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\provinces\4565 - Tenerife.txt, 15, 0, CW242, Warning, "Too many trade_goods, expecting at most 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\wars\LithuanianCivilWar.txt, 18, 1, CW241, Error, "Unexpected node rem_attaacker in 1444.11.10"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\history\wars\LithuanianCivilWar.txt, 19, 1, CW241, Error, "Unexpected node rem_attaacker in 1444.11.10"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\church_aspects\02_anglican_aspects.txt, 114, 3, CW240, Error, "Expecting a value between 0.000000 and 1.000000"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\countries\Foix.txt, 7, 0, CW242, Warning, "Too many lv TypeField (Simple "idea_group.selectable"), expecting at most 8"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\disasters\internal_conflicts.txt, 15, 2, CW999, Error, "Wrong scope, in Country but expected [Province]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\disasters\internal_conflicts.txt, 22, 11, CW999, Error, "Wrong scope, in Country but expected [Province]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\disasters\internal_conflicts.txt, 53, 10, CW999, Error, "Wrong scope, in Country but expected [Province]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\church_aspects\00_church_aspects.txt, 28, 3, CW999, Error, "Wrong scope, in Country but expected [Province]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\church_aspects\00_church_aspects.txt, 202, 3, CW999, Error, "Wrong scope, in Country but expected [Province]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\parliament_issues\support_ruling_dynasty.txt, 46, 11, CW240, Error, "Expecting an integer, got 0.7
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\naval_doctrines\00_naval_doctrines.txt, 81, 2, CW241, Error, "Unexpected node treasure_fleet_income in country_modifier"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\naval_doctrines\00_naval_doctrines.txt, 99, 2, CW241, Error, "Unexpected node global_naval_barrage_cost in country_modifier"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\on_actions\00_on_actions.txt, 917, 2, CW240, Error, "Expected value of type event_modifier"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\on_actions\00_on_actions.txt, 3134, 2, CW241, Error, "Unexpected node add_or_extend_province_modifier_effect in area"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\opinion_modifiers\00_opinion_modifiers.txt, 432, 1, CW241, Error, "Unexpected node max in insulted"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\opinion_modifiers\00_opinion_modifiers.txt, 439, 1, CW241, Error, "Unexpected node max in scornfully_insulted"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\ideas\zz_group_ideas.txt, 119, 2, CW241, Error, "Unexpected node pr_captains_influence in barbary_board_of_captains"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\ideas\zz_group_ideas.txt, 187, 2, CW241, Error, "Unexpected node power_projection_from_insults in cossacks_insults"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\ideas\zzzz_compatibility.txt, 3, 0, CW242, Error, "Missing LocalisationField false, expecting at least 7"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 23, 1, CW241, Error, "Unexpected node trade_company_efficiency in feudalism"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 151, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 151, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 276, 1, CW241, Error, "Unexpected node trade_company_efficiency in renaissance"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 386, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 386, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 539, 1, CW241, Error, "Unexpected node trade_company_efficiency in new_world_i"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 808, 1, CW241, Error, "Unexpected node trade_company_efficiency in printing_press"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 945, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 945, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 1134, 1, CW241, Error, "Unexpected node trade_company_efficiency in global_trade"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 1213, 2, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 1421, 1, CW241, Error, "Unexpected node trade_company_efficiency in manufactories"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 1549, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 1549, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 1912, 1, CW241, Error, "Unexpected node trade_company_efficiency in enlightenment"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 2027, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\institutions\00_Core.txt, 2027, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\scripted_triggers\00_scripted_triggers.txt, 426, 3, CW240, Error, "Expected value of type religion
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]
or
This is not a target. Expected a target in scope(s) Province
or
Expected value of type province_id
or
Expecting value secondary"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\scripted_triggers\00_scripted_triggers.txt, 426, 3, CW240, Error, "Expected value of type religion
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]
or
This is not a target. Expected a target in scope(s) Province
or
Expected value of type province_id
or
Expecting value secondary"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\scripted_triggers\01_scripted_triggers_muslim_schools.txt, 50, 1, CW240, Error, "Expected value of type event_modifier
or
Expected value of type static_modifier
or
Expected value of type triggered_modifier"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\scripted_triggers\01_scripted_triggers_muslim_schools.txt, 54, 3, CW240, Error, "Expecting a "religious_schools" value, e.g. seq
["allowed_center_conversion"; "allowed_conversion"; "aspects"; "blessings";
...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\scripted_triggers\01_scripted_triggers_muslim_schools.txt, 59, 10, CW240, Error, "Expected value of type event_modifier
or
Expected value of type static_modifier
or
Expected value of type triggered_modifier"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\scripted_triggers\01_scripted_triggers_muslim_schools.txt, 62, 2, CW240, Error, "Expecting a "religious_schools" value, e.g. seq
["allowed_center_conversion"; "allowed_conversion"; "aspects"; "blessings";
...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\scripted_triggers\01_scripted_triggers_muslim_schools.txt, 126, 4, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\01_church.txt, 81, 2, CW241, Error, "Unexpected node local_missionary_maintenance_cost in province_modifier_happy"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\01_church.txt, 85, 2, CW241, Error, "Unexpected node local_missionary_maintenance_cost in province_modifier_neutral"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\02_nobility.txt, 66, 2, CW241, Error, "Unexpected node monthly_support_heir_gain in country_modifier_happy"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\03_burghers.txt, 831, 3, CW241, Error, "Unexpected node create_admiral in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\04_cossacks.txt, 369, 4, CW241, Error, "Unexpected node ai_wants_raise_cossack in modifier"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\04_cossacks.txt, 373, 1, CW242, Warning, "Too many potential, expecting at most 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\06_dhimmi.txt, 69, 2, CW241, Error, "Unexpected node local_religious_unity_contribution in province_modifier_happy"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\06_dhimmi.txt, 74, 2, CW241, Error, "Unexpected node local_religious_unity_contribution in province_modifier_neutral"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\estates\07_jains.txt, 232, 2, CW242, Error, "Missing factor, expecting at least 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\event_modifiers\00_event_modifiers.txt, 1736, 1, CW241, Error, "Unexpected node mr_guilds_influence in ven_murano_glass_industry"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\event_modifiers\00_event_modifiers.txt, 4314, 1, CW241, Error, "Unexpected node mr_traders_influence in ven_nobility_bought"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\event_modifiers\00_event_modifiers.txt, 4324, 1, CW241, Error, "Unexpected node mr_traders_influence in ven_barnabotti"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\event_modifiers\00_event_modifiers.txt, 4329, 1, CW241, Error, "Unexpected node mr_traders_influence in ven_expanded_council"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\event_modifiers\00_event_modifiers.txt, 4335, 1, CW241, Error, "Unexpected node mr_aristocrats_influence in ven_ten_restrained"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\event_modifiers\00_event_modifiers.txt, 4339, 1, CW241, Error, "Unexpected node mr_aristocrats_influence in ven_council_of_ten_strong"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\event_modifiers\00_event_modifiers.txt, 7252, 1, CW241, Error, "Unexpected node secondary_religion in tengri_insincere_leadership"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\event_modifiers\00_event_modifiers.txt, 10493, 1, CW241, Error, "Unexpected node establish_order_cost in sublimis_deus"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\EgyptianNation.txt, 61, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\EgyptianNation.txt, 141, 4, CW241, Error, "Unexpected node move_capital_effect in 361"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\EnglishNation.txt, 60, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\EnglishNation.txt, 56, 4, CW241, Error, "Unexpected node move_capital_effect in 236"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Estates.txt, 306, 11, CW240, Error, "Expected value of type government.normal"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\parliament_issues\appoint_a_grand_admiral.txt, 10, 2, CW241, Error, "Unexpected node create_admiral in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\FrenchNation.txt, 69, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\FrenchNation.txt, 65, 4, CW241, Error, "Unexpected node move_capital_effect in 183"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\GeorgiaNation.txt, 79, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RestoreByzantineEmpire.txt, 61, 4, CW241, Error, "Unexpected node move_capital_effect in 151"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RestoreByzantineEmpire.txt, 135, 4, CW240, Error, "Expected value of type ambient_object"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RestoreByzantineEmpire.txt, 136, 4, CW240, Error, "Expected value of type ambient_object"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RestoreRomanEmpire.txt, 78, 4, CW241, Error, "Unexpected node move_capital_effect in 118"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RomanianNation.txt, 58, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RomanianNation.txt, 55, 4, CW241, Error, "Unexpected node move_capital_effect in 161"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Russia.txt, 31, 4, CW241, Error, "Unexpected node move_capital_effect in 33"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Russia.txt, 31, 4, CW241, Error, "Unexpected node move_capital_effect in 33"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RussianNation.txt, 111, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RuthenianNation.txt, 103, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RuthenianNation.txt, 84, 4, CW241, Error, "Unexpected node move_capital_effect in 280"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RuthenianNation.txt, 84, 4, CW241, Error, "Unexpected node move_capital_effect in 280"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\SardinaPiedmontNation.txt, 67, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\SardinaPiedmontNation.txt, 64, 4, CW241, Error, "Unexpected node move_capital_effect in 103"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\SardinaPiedmontNation.txt, 158, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\SardinaPiedmontNation.txt, 144, 4, CW241, Error, "Unexpected node move_capital_effect in 103"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 727, 4, CW241, Error, "Unexpected node clear_religious_scholar_modifiers_effect in on_invite_scholar"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 768, 4, CW241, Error, "Unexpected node clear_religious_scholar_modifiers_effect in on_invite_scholar"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 808, 4, CW241, Error, "Unexpected node clear_religious_scholar_modifiers_effect in on_invite_scholar"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 848, 4, CW241, Error, "Unexpected node clear_religious_scholar_modifiers_effect in on_invite_scholar"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 889, 4, CW241, Error, "Unexpected node clear_religious_scholar_modifiers_effect in on_invite_scholar"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 932, 4, CW241, Error, "Unexpected node clear_religious_scholar_modifiers_effect in on_invite_scholar"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 972, 4, CW241, Error, "Unexpected node clear_religious_scholar_modifiers_effect in on_invite_scholar"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 1446, 14, CW241, Error, "Unexpected node SAMARITAN in heretic"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 1446, 24, CW241, Error, "Unexpected node KARAITE in heretic"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\religions\00_religion.txt, 1446, 2, CW242, Error, "Missing LocalisationField false, expecting at least 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\GondNation.txt, 68, 4, CW241, Error, "Unexpected node move_capital_effect in 546"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Governments.txt, 622, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\HaitiNation.txt, 38, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\HindustanNation.txt, 85, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\HindustanNation.txt, 213, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\HindustanNation.txt, 340, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\HindustanNation.txt, 468, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\HindustanNation.txt, 596, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\IncanNation.txt, 92, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\IrishNation.txt, 66, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\JapaneseNation.txt, 150, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\LaPlataNation.txt, 38, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\ColonialNation.txt, 650, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 333, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 344, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 399, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 410, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 465, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 476, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 533, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 544, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 574, 15, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 596, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 606, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 665, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 676, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 729, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 740, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Confucianism.txt, 801, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\ConsortEvents.txt, 1384, 2, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\ConsortEvents.txt, 4414, 2, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\CultureandReligionEvents.txt, 3524, 2, CW242, Information, "Missing limit, expecting at least 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\CultureandReligionEvents.txt, 3530, 2, CW242, Information, "Missing limit, expecting at least 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 137, 4, CW999, Error, "Wrong scope, in Trade node but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 224, 4, CW999, Error, "Wrong scope, in Trade node but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 341, 4, CW999, Error, "Wrong scope, in Trade node but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 475, 4, CW999, Error, "Wrong scope, in Trade node but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 707, 4, CW999, Error, "Wrong scope, in Trade node but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 668, 0, CW242, Warning, "Too many immediate, expecting at most 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 842, 4, CW999, Error, "Wrong scope, in Trade node but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 933, 4, CW999, Error, "Wrong scope, in Trade node but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 985, 11, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 987, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Trade node"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 997, 3, CW999, Error, "Wrong scope, in Province but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 999, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PropagateReligionEvents.txt, 1001, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Trade node"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 20, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 211, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 264, 11, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 349, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 541, 11, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 648, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 731, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 824, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 929, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1101, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1211, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1287, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1358, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1545, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1588, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1778, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1847, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1884, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 1964, 11, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 2035, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 2071, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 2125, 10, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 2204, 11, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 2392, 12, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Protestantism.txt, 2486, 11, CW240, Error, "Expecting a value between 0 and 100
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PurelyNasty.txt, 62, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 1843, 3, CW240, Error, "Expected value of type government.normal"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 2123, 4, CW240, Error, "Expecting an integer, got 0.2
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 2134, 4, CW999, Error, "Wrong scope, in Country but expected [Province]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 3779, 12, CW240, Error, "Expecting an integer, got 0.5
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 5352, 10, CW240, Error, "Expecting an integer, got 0.1
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 5871, 11, CW240, Error, "Expecting an integer, got 0.5"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 5889, 4, CW999, Error, "Wrong scope, in Country but expected [Province]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 5905, 12, CW240, Error, "Expecting an integer, got 0.5"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 5920, 12, CW240, Error, "Expecting an integer, got 0.5"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 6709, 2, CW244, Error, "This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 8781, 2, CW241, Error, "Unexpected node create_admiral in option"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 9044, 11, CW240, Error, "Expecting an integer, got 0.5"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 9064, 12, CW240, Error, "Expecting an integer, got 0.5"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 9124, 12, CW240, Error, "Expecting an integer, got 0.5"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 9335, 2, CW241, Error, "Unexpected node check_if_non_state_advisor_effect in immediate"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 9344, 2, CW241, Error, "Unexpected node generate_advisor_of_type_and_semi_random_religion_effect in option"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 9354, 2, CW241, Error, "Unexpected node erase_advisor_flags_effect in after"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10048, 10, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10746, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10752, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10761, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10789, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10795, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10804, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10914, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 10978, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomEvents.txt, 11011, 6, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 27, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 58, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 101, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 132, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 175, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 206, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 250, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 281, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 514, 3, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 510, 11, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 512, 11, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 517, 12, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 527, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 531, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 566, 4, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 562, 12, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 564, 12, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 568, 22, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 573, 5, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 577, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 615, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 619, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 623, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 654, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 667, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 680, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 711, 11, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 713, 11, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 719, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 729, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 733, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 762, 12, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 764, 12, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 770, 22, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 775, 5, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 779, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 803, 11, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 805, 11, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 816, 21, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 825, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 829, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 858, 12, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 860, 12, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 871, 22, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 876, 5, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 880, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1041, 15, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1041, 15, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1166, 11, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1169, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1168, 12, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1172, 12, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1191, 12, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1196, 5, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1194, 13, CW240, Error, "Expected value of type province_id
or
Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\RandomProvinceEvents.txt, 1195, 13, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Ottoman.txt, 54, 2, CW241, Error, "Unexpected node do_not_core in make_constantinople_capital"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Ottoman.txt, 33, 4, CW241, Error, "Unexpected node move_capital_effect in 151"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PapalState.txt, 26, 2, CW241, Error, "Unexpected node do_not_core in move_capital_to_rome"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PapalState.txt, 19, 4, CW241, Error, "Unexpected node move_capital_effect in 118"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\ParaguayNation.txt, 50, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PersianNation.txt, 100, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PeruNation.txt, 38, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PirateGovernment.txt, 6, 3, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PirateGovernment.txt, 38, 8, CW241, Error, "Unexpected node province_is_on_an_island in OR"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PirateGovernment.txt, 149, 3, CW241, Error, "Unexpected node abolish_slavery_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Poland.txt, 25, 4, CW241, Error, "Unexpected node move_capital_effect in 257"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PolishNation.txt, 70, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PrussianNation.txt, 60, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PrussianNation.txt, 175, 4, CW241, Error, "Unexpected node move_capital_effect in 41"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\PrussianNation.txt, 284, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\QuebecNation.txt, 62, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RajputNation.txt, 82, 3, CW241, Error, "Unexpected node remove_non_electors_emperors_from_empire_effect in effect"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\RajputNation.txt, 78, 4, CW241, Error, "Unexpected node move_capital_effect in 4497"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Religion.txt, 886, 4, CW240, Error, "Expecting a value between 0.000000 and 1.000000"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Religion.txt, 919, 5, CW240, Error, "Expecting a value between 0.000000 and 1.000000"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\decisions\Religion.txt, 952, 4, CW240, Error, "Expecting a value between 0.000000 and 1.000000"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\NativeAmerican.txt, 140, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\NativeAmerican.txt, 199, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\NativeAmerican.txt, 514, 2, CW240, Error, "Expected value of type event_modifier"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\NativeAmerican.txt, 541, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\NativeAmerican.txt, 558, 20, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Natives.txt, 153, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Natives.txt, 204, 3, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Natives.txt, 268, 3, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Natives.txt, 399, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Natives.txt, 596, 4, CW243, Error, "Target has incorrect scope. Is Province but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 16, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 19, 2, CW241, Error, "Unexpected node native_policy in trigger"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 84, 3, CW241, Error, "Unexpected node native_policy in if"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 100, 3, CW241, Error, "Unexpected node native_policy in if"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 289, 2, CW241, Error, "Unexpected node event_target:dominican_university_province in option"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 289, 45, CW241, Error, "Unexpected node { [KeyValue
(PosKeyValue
(c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt (289,47--289,72) IsSynthetic=false,
KeyValueItem (Key "add_building",String "university")))] } in option"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 295, 3, CW241, Error, "Unexpected node event_target:dominican_university_province in trigger"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 295, 46, CW241, Error, "Unexpected node { [KeyValue
(PosKeyValue
(c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt (296,4--296,35) IsSynthetic=false,
KeyValueItem
(Key "NOT",
Clause
[KeyValue
(PosKeyValue
(c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt (296,12--296,33) IsSynthetic=false,
KeyValueItem (Key "has_building",String "temple")))])))] } in trigger"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 300, 2, CW241, Error, "Unexpected node event_target:dominican_university_province in option"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 300, 45, CW241, Error, "Unexpected node { [KeyValue
(PosKeyValue
(c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt (300,47--300,68) IsSynthetic=false,
KeyValueItem (Key "add_building",String "temple")))] } in option"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 331, 3, CW241, Error, "Unexpected node holy_order in random_owned_province"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 419, 4, CW241, Error, "Unexpected node can_establish_order in any_neighbor_province"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 436, 6, CW241, Error, "Unexpected node can_establish_order in any_neighbor_province"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 446, 6, CW241, Error, "Unexpected node can_establish_order in limit"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 461, 3, CW241, Error, "Unexpected node holy_order in event_target:franciscan_target_province"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 492, 3, CW999, Error, "Wrong scope, in Province but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 505, 4, CW999, Error, "Wrong scope, in Province but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\OrderEvents.txt, 522, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PersonalityEvents.txt, 1798, 4, CW999, Error, "Wrong scope, in Province but expected [Country]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PersonalityEvents.txt, 3647, 2, CW241, Error, "Unexpected node remove_advisor_adm_effect in option"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 9, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 210, 4, CW241, Error, "Unexpected node create_flagship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 223, 4, CW241, Error, "Unexpected node create_named_ship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 260, 4, CW241, Error, "Unexpected node create_flagship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 273, 4, CW241, Error, "Unexpected node create_named_ship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 311, 4, CW241, Error, "Unexpected node create_flagship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 324, 4, CW241, Error, "Unexpected node create_named_ship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 385, 4, CW241, Error, "Unexpected node create_flagship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 398, 4, CW241, Error, "Unexpected node create_named_ship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 425, 3, CW240, Error, "Expected value of type culture
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]
or
This is not a target. Expected a target in scope(s) Province
or
Expected value of type province_id"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 462, 4, CW241, Error, "Unexpected node create_flagship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 475, 4, CW241, Error, "Unexpected node create_named_ship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 512, 4, CW241, Error, "Unexpected node create_flagship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 525, 4, CW241, Error, "Unexpected node create_named_ship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 562, 4, CW241, Error, "Unexpected node create_flagship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 575, 4, CW241, Error, "Unexpected node create_named_ship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 602, 3, CW240, Error, "Expected value of type culture
or
This is not a target. Expected a target in scope(s) Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]
or
This is not a target. Expected a target in scope(s) Province
or
Expected value of type province_id"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 612, 4, CW241, Error, "Unexpected node create_flagship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 625, 4, CW241, Error, "Unexpected node create_named_ship in capital_scope"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 646, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 652, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 662, 4, CW241, Error, "Unexpected node recent_treasure_ship_passage in carribeans_region"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 727, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 733, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 777, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 783, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 826, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 832, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 864, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 870, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 875, 24, CW243, Error, "Target has incorrect scope. Is Trade node but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 889, 26, CW243, Error, "Target has incorrect scope. Is Trade node but expect Country
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 913, 2, CW241, Error, "Unexpected node create_admiral in option"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 931, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 937, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 983, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 989, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 1024, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 1030, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 1052, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 1058, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 1118, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PirateEvents.txt, 1124, 2, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PriceChanges.txt, 268, 4, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PriceChanges.txt, 859, 4, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PriceChanges.txt, 1209, 4, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PriceChanges.txt, 1336, 4, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PrivateerEvents.txt, 12, 2, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\PrivateerEvents.txt, 25, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\flavorARA.txt, 22, 12, CW240, Error, "Expecting a "DLCs" value, e.g. seq
["American Dream"; "Art of War"; "Common Sense"; "Conquest of Paradise"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\flavorBYZ.txt, 22, 3, CW241, Error, "Unexpected node add_loot_from_rich_province_general_effect in 112"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\flavorCYP.txt, 26, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
This is not a target. Expected a target in scope(s) Country
or
Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\flavorCYP.txt, 27, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
This is not a target. Expected a target in scope(s) Country
or
Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\flavorSOK.txt, 91, 22, CW240, Error, "Expected value of type event.country"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\flavorSOK.txt, 100, 22, CW240, Error, "Expected value of type event.country"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\rebel_types\anti_tax.txt, 4, 0, CW242, Warning, "Too many will_relocate, expecting at most 1"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 246, 1, CW241, Error, "Unexpected node institution_growth in knowledge_sharing"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 564, 1, CW241, Error, "Unexpected node temples_influence in positive_stability"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 565, 1, CW241, Error, "Unexpected node mr_aristocrats_influence in positive_stability"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 566, 1, CW241, Error, "Unexpected node rr_jacobins_influence in positive_stability"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 576, 1, CW241, Error, "Unexpected node pr_captains_influence in privateering"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 641, 1, CW241, Error, "Unexpected node bureaucrats_influence in bankruptcy"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 642, 1, CW241, Error, "Unexpected node mr_guilds_influence in bankruptcy"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 658, 1, CW241, Error, "Unexpected node rr_girondists_influence in war"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 666, 1, CW241, Error, "Unexpected node rr_girondists_influence in peace"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 667, 1, CW241, Error, "Unexpected node pr_smugglers_influence in peace"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 685, 1, CW241, Error, "Unexpected node temples_influence in war_exhaustion"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 686, 1, CW241, Error, "Unexpected node mr_aristocrats_influence in war_exhaustion"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 687, 1, CW241, Error, "Unexpected node rr_girondists_influence in war_exhaustion"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 688, 1, CW241, Error, "Unexpected node rr_royalists_influence in war_exhaustion"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 731, 1, CW241, Error, "Unexpected node temples_influence in army_tradition"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 732, 1, CW241, Error, "Unexpected node mr_aristocrats_influence in army_tradition"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 733, 1, CW241, Error, "Unexpected node rr_girondists_influence in army_tradition"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 742, 1, CW241, Error, "Unexpected node enuchs_influence in navy_tradition"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 743, 1, CW241, Error, "Unexpected node mr_traders_influence in navy_tradition"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 931, 1, CW241, Error, "Unexpected node bureaucrats_influence in over_extension"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 932, 1, CW241, Error, "Unexpected node mr_guilds_influence in over_extension"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 981, 1, CW241, Error, "Unexpected node rr_jacobins_influence in republican_tradition"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 986, 1, CW241, Error, "Unexpected node rr_jacobins_influence in inverse_republican_tradition"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 1491, 1, CW100, Warning, "Localisation key RELIGIOUS_SCHOLAR_EXPIRY is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 1499, 1, CW100, Warning, "Localisation key RELIGIOUS_SCHOLAR_EXPIRY is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 1507, 1, CW100, Warning, "Localisation key RELIGIOUS_SCHOLAR_EXPIRY is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 1515, 1, CW100, Warning, "Localisation key RELIGIOUS_SCHOLAR_EXPIRY is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 1523, 1, CW100, Warning, "Localisation key RELIGIOUS_SCHOLAR_EXPIRY is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 1534, 1, CW100, Warning, "Localisation key RELIGIOUS_SCHOLAR_EXPIRY is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\static_modifiers\00_static_modifiers.txt, 1542, 1, CW100, Warning, "Localisation key RELIGIOUS_SCHOLAR_EXPIRY is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\subject_types\00_subject_types.txt, 86, 1, CW241, Error, "Unexpected node overlord_can_fabricate_for in default"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\subject_types\00_subject_types.txt, 250, 2, CW100, Warning, "Localisation key MARCHTOOLARGE is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\subject_types\00_subject_types.txt, 251, 2, CW100, Warning, "Localisation key MARCHTOOLARGEUS is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\subject_types\00_subject_types.txt, 512, 1, CW241, Error, "Unexpected node overlord_can_fabricate_for in tributary_state"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trade_companies\00_trade_companies.txt, 302, 2, CW100, Warning, "Localisation key TRADE_COMPANY_MOLUCCAS_Indonesia_Trade_Company is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 7, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
Wrong scope, in Province but expected [TradeNode]
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 14, 2, CW100, Warning, "Localisation key maximize_profits is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 25, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
Wrong scope, in Province but expected [TradeNode]
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 41, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
Wrong scope, in Province but expected [TradeNode]
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 42, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 51, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
Wrong scope, in Province but expected [TradeNode]
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 52, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 70, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
Wrong scope, in Province but expected [TradeNode]
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 88, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
Wrong scope, in Province but expected [TradeNode]
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 90, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 101, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]
or
Wrong scope, in Province but expected [TradeNode]
or
Expecting a "country_tags" value, e.g. seq ["AAC"; "ABB"; "ABE"; "ACH"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\common\trading_policies\00_trading_policies.txt, 103, 3, CW999, Error, "Wrong scope, in Province but expected [TradeNode]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 10, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 35, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 73, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 114, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 230, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 321, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 388, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 491, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 530, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 612, 1, CW240, Warning, "Expected value of type sprite
or
Expecting a "dlc_event_pictures" value, e.g. seq
["10_Jain_Estate_eventPicture"; "11_Jain_Estate_eventPicture";
"12_Maratha_Estate_eventPicture"; "13_Maratha_Estate_eventPicture"; ...]"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 622, 4, CW100, Warning, "Localisation key VESTMENTS_BANNED is not defined for English"
c:\Users\Pierre\Documents\Paradox Interactive\Development\EU4\game\events\Anglican_events.txt, 666, 1, CW240, Warning, "Expected value of type sprite