-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy patha.xml
More file actions
2330 lines (2330 loc) · 79 KB
/
a.xml
File metadata and controls
2330 lines (2330 loc) · 79 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<programs majorVersion="2" minorVersion="0" revision="2" updated="2013-06-19T23:06:20" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="GameSaveInfo202.xsd">
<!--This file contains games, mods and expansions that start with the letter A
DO NOT EDIT THIS FILE, CHANGES WILL EVENTUALLY BE OVERWRITTEN BY THE AUTO UPDATE SYSTEM!-->
<game name="AaaaaAAaaaAAAaaAAAAaAAAAA" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>AaaaaAAaaaAAAaaAAAAaAAAAA!!!</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="AaaaaRecklessDisregard"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>duncans_pumpkin</contributor>
</version>
</game>
<game name="Academagia" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Academagia</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Academagia"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AceCombatAssaultHorizon" added="2013-02-23T21:39:00" updated="2013-02-23T21:39:00">
<title>Ace Combat: Assault Horizon</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="NAMCO\ACAH"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AcesOfTheGalaxy" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Aces of the Galaxy</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Aces of the Galaxy"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Achron" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Achron</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Achron"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AchtungPanzerOperationStar" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Achtung Panzer: Operation Star</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{688A396E-0C6B-4CC7-9B58-76619E9E530F}_is1" value="InstallLocation"/>
</locations>
<files>
<include path="users\profiles"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ActOfWarDirectAction" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Act of War: Direct Action</title>
<version os="Windows">
<locations>
<registry root="current_user" key="SOFTWARE\Eugen Systems\ActOfWar" value="AppDir"/>
</locations>
<files>
<include path="AOW\Save"/>
</files>
<linkable path="AOW\Save"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ActOfWarHighTreason" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Act of War: High Treason</title>
<version os="Windows">
<locations>
<registry root="current_user" key="SOFTWARE\Eugen Systems\ActOfWar_HighTreason" value="AppDir"/>
</locations>
<files>
<include path="AOW\Save"/>
</files>
<linkable path="AOW\Save"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AdamsVenture2" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Adam's Venture 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\VentureGame"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AdventRising" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Advent Rising</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Advent Rising"/>
<path ev="steamcommon" path="advent rising"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGADVENTRISING" value="PATH"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Advent" value="UninstallString"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Advent Rising\Advent Rising.lnk" detract="System"/>
</locations>
<files>
<include path="System\Saves"/>
</files>
<files type="Settings">
<include path="System" filename="My*.ini"/>
</files>
<linkable path="System\Saves"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AdventuresofShuggy" added="2012-10-01T16:54:44" updated="2012-10-01T16:54:44">
<title>Adventures of Shuggy</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="211440"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="AdventuresOfTintin" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Adventures of Tintin: The Game</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="The Adventures of Tintin"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="aeroflyFS" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>aeroflyFS</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="aerofly FS"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AffairBureau" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Affair Bureau</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Azuzaz Games\Bureau"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AfterfallInsanity" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Afterfall: Insanity</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Afterfall InSanity"/>
</locations>
<files>
<include path="Binaries\SaveData"/>
<include path="RascalGame\SaveData"/>
</files>
<files type="Settings">
<include path="RascalGame\Config"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="AGameOfDwarves" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>A Game of Dwarves</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Zeal Game Studio\A Game of Dwarves"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AgathaChristieDeathOnTheNile" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Agatha Christie: Death on the Nile</title>
<version os="Windows">
<locations>
<path ev="appdata" path="FloodLightGames\Death on the Nile"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AgeOfConan" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Age of Conan</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="Funcom\Conan"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AgeOfEmpires" added="2012-09-12T14:11:29" updated="2012-09-12T14:11:29">
<title>Age of Empires</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Microsoft\DirectPlay\Applications\Age of Empires" value="Path"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Games\Age of Empires\1.00" value="InstallationDirectory"/>
</locations>
<files>
<include filename="empires.GID"/>
<include filename="game2.nfo"/>
<include path="savegame"/>
</files>
<linkable path="savegame"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AgeOfEmpires2" added="1955-11-05T00:00:00" updated="2013-06-14T05:17:42">
<title>Age of Empires II</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Microsoft Games\Age of Empires II"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\DirectPlay\Applications\Age of Empires II" value="Path"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Microsoft Games\Age of Empires\2.0" value="InstallationDirectory"/>
<shortcut ev="startmenu" path="Programs\Microsoft Games\Age of Empires II\Age of Empires II.lnk"/>
</locations>
<files>
<include filename="player.nfp"/>
<include path="SaveGame"/>
<include path="Scenario" filename="*.scx"/>
</files>
<linkable path="SaveGame"/>
<contributor>Samuel Barbour</contributor>
</version>
<version os="Windows" release="HD">
<title>Age of Empires II HD</title>
<locations>
<path ev="steamcommon" path="Age2HD"/>
</locations>
<files>
<include path="SaveGame" filename="*.gax"/>
</files>
<files type="Scenarios">
<include path="Scenario" filename="*.scx"/>
</files>
<files type="Settings">
<include filename="player.nfp"/>
</files>
<linkable path="SaveGame"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AgeOfEmpires3" follows="AgeOfEmpires2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Age of Empires III</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Age of Empires 3"/>
</locations>
<files>
<include path="Savegame"/>
<include path="Users"/>
</files>
<linkable/>
<contributor>SamuelTaylor</contributor>
</version>
</game>
<game name="AgeOfMythology" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Age of Mythology</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Microsoft Games\Age of Mythology"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Microsoft Games\Age of Mythology\1.0" value="AppPath"/>
<shortcut ev="startmenu" path="Programs\Microsoft Games\Age of Mythology\Age of Mythology.lnk"/>
</locations>
<files>
<include path="savegame" filename="*.rec"/>
<include path="savegame" filename="*.sav"/>
</files>
<linkable path="savegame"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<expansion name="AgeOfMythologyTheTitansExpansion" for="AgeOfMythology" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Age of Mythology: The Titans Expansion</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Age of Mythology"/>
</locations>
<files>
<include path="Savegame" filename="*.rcx"/>
<include path="Savegame" filename="*.svx"/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<game name="AgeOfOraclesTarasJourney" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Age of Oracles: Tara's Journey</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="JollyBear\Age of Oracles Taras Journey"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AgeOfPirates2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Age of Pirates 2: City of Abandoned Ships</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Playlogic\AoP2" value="InstallPath"/>
</locations>
<files>
<include path="SAVE"/>
</files>
<linkable path="SAVE"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AgeOfWonders" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Age of Wonders</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Age of Wonders"/>
<path ev="installlocation" path="Triumph Studios\Age of Wonders"/>
<registry root="current_user" key="Software\Triumph Studios\Age of Wonders\General" value="Root Directory"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGAOM1" value="PATH"/>
<shortcut ev="startmenu" path="Programs\Age of Wonders\Age of Wonders.lnk"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Age of Wonders\Age of Wonders.lnk"/>
</locations>
<files>
<include path="Save"/>
</files>
<linkable path="Save"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AgeOfWonders2" added="2012-10-01T16:54:44" updated="2013-02-03T05:40:17">
<title>Age of Wonders II</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Age of Wonders II"/>
<registry root="current_user" key="Software\Triumph Studios\Age of Wonders II\General" value="Root Directory"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGAOM2" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Age of Wonders 2\Age of Wonders 2.lnk"/>
</locations>
<files>
<include path="Save"/>
</files>
<contributor>GameSave.Info</contributor>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AgeOfWondersShadowMagic" added="1955-11-05T00:00:00" updated="2013-02-03T05:40:17">
<title>Age of Wonders: Shadow Magic</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Age of Wonders Shadow Magic"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGAOMSM" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Age of Wonders - Shadow Magic\Age of Wonders - Shadow Magic.lnk"/>
</locations>
<files>
<include path="Save"/>
</files>
<linkable path="Save"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AgriculturalSimulator2011" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Agricultural Simulator 2011</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\agrar simulator 2011"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AIMRacing" added="1955-11-05T00:00:00" updated="2013-01-05T16:19:39">
<title>A.I.M. Racing</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\A.I.M. Racing"/>
<registry root="local_machine" key="SOFTWARE\1C:Multimedia\A.I.M. Racing\Path" value="1"/>
</locations>
<files>
<include>
<exclude path="My Music"/>
</include>
</files>
<linkable/>
<contributor>AdmiringWorm</contributor>
</version>
</game>
<game name="AirConflictsSecretWars" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Air Conflicts Secret Wars</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="bitComposer\AirConflictsSW"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AirForte" added="2014-02-22T23:29:12" updated="2014-02-22T23:29:12">
<title>Air Forte</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Air Forte"/>
<path ev="steamcommon" path="airforte"/>
<shortcut ev="startmenu" path="Programs\Air Forte\Air Forte.lnk" detract="data"/>
</locations>
<files>
<include path="data\AirForteSaveData" filename="*.sav"/>
</files>
<files type="Settings">
<include path="data\AirForteSaveData" filename="*settings.dat"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AirlineTycoon2" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Airline Tycoon 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Kalypso Media\Airline Tycoon 2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AirportControlSimulator" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Airport Control Simulator</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Airport Control Simulator"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AIWarFleetCommand" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>AI War: Fleet Command</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="ai war fleet command"/>
</locations>
<files>
<include path="Save"/>
</files>
<linkable path="Save"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AladdinAndTheWonderfulLampThe1001Nights" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Aladdin and the Wonderful Lamp: The 1001 Nights</title>
<version os="Windows">
<locations>
<path ev="appdata" path="HdO Adventure\Aladin"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Alamandi" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alamandi</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="bitComposer\AirConflictsSW"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AlanWake" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alan Wake</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="108710"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Remedy\AlanWake"/>
<path ev="userdocuments" path="Remedy\AlanWake_GOG_Version"/>
</locations>
<files>
<include path="savegames"/>
</files>
<files type="Settings">
<include filename="*"/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AlanWakesAmericanNightmare" follows="AlanWake" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alan Wake's American Nightmare</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="202750"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Remedy\AmericanNightmare"/>
<path ev="userdocuments" path="Remedy\AmericanNightmare_GOG_Version"/>
</locations>
<files>
<include path="savegames"/>
</files>
<files type="Settings">
<include filename="*"/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Algodoo" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Algodoo</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Algodoo"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Alice" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>American McGee's Alice</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="EA GAMES\American McGee's Alice"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Alice.exe" value="Path"/>
</locations>
<files>
<include path="Base\save"/>
</files>
<files type="Settings">
<include path="Base" filename="*.cfg"/>
</files>
<linkable path="Base\save"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AliceMadnessReturns" follows="Alice" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alice: Madness Returns</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Alice Madness Returns"/>
<path ev="userdocuments" path="My Games\Alice Retour au pays de la folie"/>
</locations>
<files>
<include path="AliceGame\CheckPoint"/>
</files>
<files type="Settings">
<include path="AliceGame\Config"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="AlienBreed2Assault" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alien Breed 2: Assault</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\UnrealEngine3\AlienBreed2AssaultGame"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<files type="Settings">
<include path="Config"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="AlienBreed3Descent" follows="AlienBreed2Assault" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alien Breed 3: Descent</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\UnrealEngine3\AlienBreed3DescentGame"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<files type="Settings">
<include path="Config"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="AlienBreedImpact" follows="AlienBreed3Descent" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alien Breed: Impact</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\UnrealEngine3\AlienBreedEp1Game"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<files type="Settings">
<include path="Config"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="AlienHallway" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alien Hallway</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Sigma Team\Alien Hallway"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AliensColonialMarines" added="2013-02-23T21:39:00" updated="2013-02-23T21:39:00">
<title>Aliens: Colonial Marines</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="49540"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Aliens Colonial Marines"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AlienShooter2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alien Shooter: Vengeance</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="AlienShooter2 Saves"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows" release="Reloaded">
<title>Alien Shooter 2: Reloaded</title>
<locations>
<path ev="userdocuments" path="AlienShooter2 Reloaded Saves"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="AlienShooterRevisited" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alien Shooter: Revisited</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="AlienShooter Revisited Saves"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AliensVsPredator" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Aliens vs. Predator</title>
<version platform="SteamCloud" release="Classic">
<title>Aliens vs. Predator Classic</title>
<locations>
<path ev="steamuserdata" path="10680"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows" release="Classic">
<title>Aliens vs. Predator Classic</title>
<locations>
<path ev="localappdata" path="Rebellion\AvP Classic"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AliensVsPredator2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Aliens vs. Predator 2</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Fox\Aliens vs. Predator 2"/>
<registry root="local_machine" key="SOFTWARE\Monolith Productions\Aliens vs. Predator 2\1.0" value="InstallDir"/>
<registry root="local_machine" key="SOFTWARE\Sierra OnLine\Setup\AVP2" value="Directory"/>
<shortcut ev="startmenu" path="Programs\Fox Interactive\Aliens vs. Predator 2\Aliens vs. Predator 2.lnk"/>
</locations>
<files>
<include path="Profiles"/>
<include path="Save"/>
</files>
<linkable path="Profiles"/>
<linkable path="Save"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AliensVsPredator2010" follows="AliensVsPredator2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Aliens vs. Predator (2010)</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="AliensVsPredator"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>Michael Lamere</contributor>
</version>
</game>
<expansion name="AliensVsPredator2PrimalHunt" for="AliensVsPredator2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Aliens vs. Predator 2: Primal Hunt</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Fox\Aliens versus Predator 2 - Primal Hunt"/>
<registry root="local_machine" key="SOFTWARE\Sierra OnLine\Setup\AVP2X" value="Directory"/>
<registry root="local_machine" key="SOFTWARE\Third Law Interactive\Aliens versus Predator 2: Primal Hunt\1.0" value="InstallDir"/>
<shortcut ev="startmenu" path="Programs\Fox Interactive\Aliens versus Predator 2 - Primal Hunt\Aliens versus Predator 2 - Primal Hunt.lnk"/>
</locations>
<files>
<include path="Profiles"/>
<include path="Save"/>
</files>
<linkable path="Profiles"/>
<linkable path="Save"/>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<game name="AlienSwarm" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alien Swarm</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="630"/>
</locations>
<files>
<include/>
</files>
<contributor>AvvA</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="alien swarm"/>
</locations>
<files type="Settings">
<include path="swarm\cfg"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AllZombiesMustDie" added="2012-08-27T18:13:36" updated="2012-08-27T18:13:36">
<title>All Zombies Must Die!</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\UnrealEngine3\Bzb2Game"/>
</locations>
<files>
<include>
<exclude filename="Logs"/>
</include>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AloneInTheDark" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alone in the Dark</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Alone in the Dark\INDARK"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGALONE1" value="PATH" append="INDARK"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Alone in the Dark\Alone in the Dark.lnk" detract="DOSBOX" append="INDARK"/>
</locations>
<files>
<include filename="SAVE?.ITD"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AloneInTheDark2" follows="AloneInTheDark" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alone in the Dark 2</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Alone in the Dark 2\INDARK2"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGALONE2" value="PATH" append="INDARK2"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Alone in the Dark 2\Alone in the Dark 2.lnk" detract="DOSBOX" append="INDARK2"/>
</locations>
<files>
<include filename="SAVE?.ITD"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AloneInTheDark2008" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alone in the Dark (2008)</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="Atari\AITD"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AloneInTheDark3" follows="AloneInTheDark2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alone in the Dark 3</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Alone in the Dark 3\INDARK3"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGALONE3" value="PATH" append="INDARK3"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Alone in the Dark 3\Alone in the Dark 3.lnk" detract="DOSBOX" append="INDARK3"/>
</locations>
<files>
<include path="SAVE??" filename="SAVE?.ITD"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AloneInTheDarkTheNewNightmare" follows="AloneInTheDark3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alone in the Dark: The New Nightmare</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Alone in the Dark - The New Nightmare"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGALONEINTHEDARK" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Alone in the Dark - The New Nightmare\Alone in the Dark - The New Nightmare.lnk"/>
</locations>
<files>
<include filename="*.sav"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AlphaCentauri" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Sid Meier's Alpha Centauri</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Firaxis Games\Sid Meier's Alpha Centauri"/>
<path ev="installlocation" path="GOG.com\Sid Meiers Alpha Centauri"/>
<path ev="installlocation" path="GOGcom\Sid Meiers Alpha Centauri"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGSIDMAIERSALPHACENTAURI" value="PATH"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\DirectPlay\Applications\Sid Meier's Alpha Centauri" value="Path"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Sid Meier's Alpha Centauri\Sid Meier's Alpha Centauri.lnk"/>
</locations>
<files>
<include filename="*.SAV"/>
<include path="saves"/>
</files>
<files type="Maps">
<include path="maps" modified_after="2000-01-01T00:00:00"/>
</files>
<files type="Scenarios">
<include path="scenarios" modified_after="2000-01-01T00:00:00"/>
</files>
<files type="Settings">
<include filename="Alpha Centauri.Ini"/>
</files>
<linkable path="saves"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="AlphaPrime" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alpha Prime</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="alpha prime"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Alpha Prime" value="InstallLocation"/>
</locations>
<files>
<include path="save"/>
</files>
<files type="Settings">
<include filename="settings.cfg"/>
</files>
<linkable path="save"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="AlphaProtocol" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Alpha Protocol</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Alpha Protocol"/>
</locations>
<files>
<include path="Checkpoints"/>
<include path="Profile"/>
</files>
<files type="Settings">
<include path="APGame\Config"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>