-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathb.xml
More file actions
2394 lines (2394 loc) · 80.5 KB
/
b.xml
File metadata and controls
2394 lines (2394 loc) · 80.5 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 B
DO NOT EDIT THIS FILE, CHANGES WILL EVENTUALLY BE OVERWRITTEN BY THE AUTO UPDATE SYSTEM!-->
<game name="BackToTheFutureEpisode1ItsAboutTime" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Back to the Future: Episode 1: It's About Time</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\back to the future 101"/>
<path ev="userdocuments" path="Telltale Games\Episode 1"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>slake_jones</contributor>
</version>
</game>
<game name="BackToTheFutureEpisode2GetTannen" follows="BackToTheFutureEpisode1ItsAboutTime" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Back to the Future: Episode 2: Get Tannen!</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\Episode 2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>slake_jones</contributor>
</version>
</game>
<game name="BackToTheFutureEpisode3CitizenBrown" follows="BackToTheFutureEpisode2GetTannen" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Back to the Future: Episode 3: Citizen Brown</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\back to the future 103"/>
<path ev="userdocuments" path="Telltale Games\Episode 3"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>slake_jones</contributor>
</version>
</game>
<game name="BackToTheFutureEpisode4DoubleVisions" follows="BackToTheFutureEpisode3CitizenBrown" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Back to the Future: Episode 4: Double Visions</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\back to the future 104"/>
<path ev="userdocuments" path="Telltale Games\Episode 4"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>slake_jones</contributor>
</version>
</game>
<game name="BackToTheFutureEpisode5OUTATIME" follows="BackToTheFutureEpisode4DoubleVisions" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Back to the Future: Episode 5: OUTATIME</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\back to the future 105"/>
<path ev="userdocuments" path="Telltale Games\Episode 5"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>slake_jones</contributor>
</version>
</game>
<game name="BackyardSportsSandlotSluggers" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Backyard Sports Sandlot Sluggers</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Saved Game\Sandlot Sluggers"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Baconing" added="1955-11-05T00:00:00" updated="2013-02-03T05:40:17">
<title>The Baconing</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="18070"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="thebaconing"/>
</locations>
<files>
<include filename="*.*.gg"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BadHotel" added="2014-02-22T23:29:12" updated="2014-02-22T23:29:12">
<title>Bad Hotel</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="231720"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BadPiggies" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Bad Piggies</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="Rovio\Bad Piggies"/>
</locations>
<files>
<include>
<exclude filename="contraptions"/>
</include>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BadRatsTheRatsRevenge" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Bad Rats: The Rats Revenge</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="bad rats"/>
<registry root="local_machine" key="SOFTWARE\Invent 4 Entertainment\Bad Rats" value="Path"/>
</locations>
<files>
<include filename="*.sav"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BaldursGate" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Baldur's Gate</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Baldurs Gate"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGBALDURSGATE1" value="PATH"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\DirectPlay\Applications\Baldur's Gate" value="CurrentDirectory"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\BGMain.Exe" value="Path"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Baldur's Gate\Baldur's Gate.lnk"/>
</locations>
<files>
<include path="Save"/>
</files>
<files type="Characters">
<include path="Characters"/>
</files>
<files type="Settings">
<include filename="Baldur.ini"/>
</files>
<linkable path=" Save"/>
<linkable path="Characters"/>
<comment>Includes expansion saves</comment>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows" release="Enhanced">
<title>Baldur's Gate: Enhanced Edition</title>
<locations>
<path ev="userdocuments" path="Baldur's Gate - Enhanced Edition"/>
</locations>
<files>
<include>
<exclude filename="temp*.*"/>
</include>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="BaldursGate2" follows="BaldursGate" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Baldur's Gate II</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Baldurs Gate II"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGBALDURSGATE2" value="PATH"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\DirectPlay\Applications\Baldur's Gate2" value="CurrentDirectory"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\BG2Main.Exe" value="Path"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Baldur's Gate II\Baldur's Gate II.lnk"/>
</locations>
<files>
<include path="save"/>
</files>
<files type="Characters">
<include path="characters"/>
</files>
<files type="Settings">
<include filename="baldur.ini"/>
</files>
<linkable path="characters"/>
<linkable path="save"/>
<comment>Includes expansion saves</comment>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Ball" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Ball</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\The Ball"/>
</locations>
<files>
<include path="UDKGame\Config"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="Ballance" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Ballance</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Ballance\Settings" value="TargetDir"/>
</locations>
<files>
<include filename="Database.tdb"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BalloonExpress" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Balloon Express</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Balloon Express"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BangBangRacing" added="2012-10-01T16:54:44" updated="2012-10-01T16:54:44">
<title>Bang Bang Racing</title>
<version os="Windows">
<locations>
<path ev="steamuserdata" path="207020"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BardsTale" added="2012-08-07T19:25:20" updated="2012-08-07T19:25:20">
<title>The Bard's Tale</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="The Bards Tale"/>
</locations>
<files>
<include path="Saved Games"/>
</files>
<linkable path="Saved Games"/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="BasementCollection" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>The Basement Collection</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="basement"/>
</locations>
<files>
<include filename="*.swf"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Bastion" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Bastion</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="107100"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
<version os="Windows">
<locations>
<path ev="savedgames" path="Bastion" only_for="WindowsVista"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BatmanArkhamAsylum" added="1955-11-05T00:00:00" updated="2014-01-28T15:32:05">
<title>Batman: Arkham Asylum</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="35140"/>
</locations>
<files>
<include path="remote"/>
</files>
<contributor>Arc Angel</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Eidos\Batman Arkham Asylum"/>
<path ev="userdocuments" path="Square Enix\Batman Arkham Asylum"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<linkable path="SaveData"/>
<restore_comment>Restoring saves for this game also requires restoring Game for Windows Account Data, which MASGAU automatically backs up in G4WAccountData.</restore_comment>
<contributor>GameSaveManager</contributor>
<contributor>Michael Lamere</contributor>
</version>
<version os="Windows" release="GOTY">
<title>Batman: Arkham Asylum GOTY</title>
<locations>
<path ev="userdocuments" path="Square Enix\Batman Arkham Asylum GOTY"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<linkable path="SaveData"/>
<restore_comment>Restoring saves for this game also requires restoring Game for Windows Account Data, which MASGAU automatically backs up in G4WAccountData.</restore_comment>
<contributor>Michael Lamere</contributor>
</version>
</game>
<game name="BatmanArkhamCity" follows="BatmanArkhamAsylum" added="1955-11-05T00:00:00" updated="2013-01-05T16:19:39">
<title>Batman: Arkham City</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="57400"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version platform="SteamCloud" release="GOTY">
<locations>
<path ev="steamuserdata" path="200260"/>
</locations>
<files>
<include/>
</files>
<contributor>Jan</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="WB Games\Batman Arkham City"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<files type="Settings">
<include path="BmGame\Config"/>
</files>
<linkable path="SaveData"/>
<contributor>paul_taylor30</contributor>
</version>
<version os="Windows" release="GOTY">
<title>Batman: Arkham City GOTY</title>
<locations>
<path ev="userdocuments" path="WB Games\Batman Arkham City GOTY"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<files type="Settings">
<include path="BmGame\Config"/>
</files>
<linkable path="SaveData"/>
<contributor>Jan</contributor>
</version>
</game>
<game name="BattleArmorDivision" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>B.A.D - Battle Armor Division</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="B.A.D Battle Armor Division"/>
<shortcut ev="startmenu" path="Programs\B.A.D Battle Armor Division\BAD Battle Armor Division.lnk"/>
</locations>
<files>
<include filename="*.sav"/>
</files>
<files type="Settings">
<include filename="*.ini"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="BattleEngineAquila" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battle Engine Aquila</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{2F3121CF-1AA2-4C12-8839-3F297042005E}" value="InstallLocation"/>
</locations>
<files>
<include path="savegames"/>
</files>
<linkable path="savegames"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Battlefield1942" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Battlefield 1942</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\EA GAMES\Battlefield 1942" value="GAMEDIR"/>
</locations>
<files>
<include path="save"/>
</files>
<files type="Settings">
<include path="Settings"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Battlefield2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlefield 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlefield 2"/>
</locations>
<files type="Settings">
<include filename="*.con"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Battlefield2142" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlefield 2142</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlefield 2142"/>
</locations>
<files type="Settings">
<include filename="*.con"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Battlefield3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlefield 3</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlefield 3"/>
</locations>
<files type="Settings">
<include path="settings"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="Battlefield4" follows="Battlefield3" added="2014-02-22T23:29:12" updated="2014-02-22T23:29:12">
<title>Battlefield 4</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlefield 4"/>
</locations>
<files type="Settings">
<include path="settings"/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="BattlefieldBadcompany" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlefield: Bad Company</title>
<version os="PS3" region="USA">
<ps_code prefix="BLUS" suffix="30118"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BattlefieldBadCompany2" follows="BattlefieldBadcompany" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlefield: Bad Company 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="BFBC2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="BattlefieldHeroes" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlefield Heroes</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlefield Heroes"/>
</locations>
<files type="Settings">
<include filename="*.con"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BattlefieldPlay4Free" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Battlefield Play4Free</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlefield Play4Free"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BattlefieldVietnam" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Battlefield Vietnam</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlefield Vietnam"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BattleForge" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>BattleForge</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="BattleForge"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BattleForMiddleEarth2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Battle For Middle Earth II</title>
<version os="Windows">
<locations>
<path ev="appdata" path="My Battle for Middle-earth(tm) II Files"/>
</locations>
<files>
<include path="Save"/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BattleForWesnoth" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battle For Wesnoth</title>
<version>
<locations>
<path ev="userprofile" path=".wesnoth"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BattleLA" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battle: Los Angeles</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="BattleLA Saves"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="BattlestarGalactica" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Battlestar Galactica</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Battlestar Galactica"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BattlestationsMidway" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlestations: Midway</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlestations-Midway"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BattlestationsPacific" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlestations: Pacific</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Battlestations-Pacific"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BattlestrikeForceOfResistance2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Battlestrike: Force Of Resistance 2</title>
<version os="Windows">
<locations>
<path ev="public" path="Documents\City Interactive\Battlestrike Force Of Resistance 2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BattleVsChess" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Battle vs. Chess</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\battle vs chess"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BBCBattlefieldAcademy" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>BBC Battlefield Academy</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\BBCBA"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BCKings" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>BC Kings</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="bc kings"/>
</locations>
<files>
<include path="PlayerProfiles"/>
</files>
<linkable path="PlayerProfiles"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BeachLife" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Beach Life</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Beach Life"/>
<registry root="local_machine" key="SOFTWARE\Eidos Interactive\Beach Life" value="Path"/>
<shortcut ev="startmenu" path="Programs\Eidos Interactive\Beach Life\Beach Life.lnk"/>
</locations>
<files>
<include path="SaveGames"/>
</files>
<linkable path="SaveGames"/>
<contributor>slake_jones</contributor>
</version>
</game>
<game name="BeastWithin" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>The Beast Within</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGGABRIELKNIGHT2" value="PATH"/>
</locations>
<files>
<include filename="GK2SG.*"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BeatHazard" added="1955-11-05T00:00:00" updated="2013-02-03T05:40:17">
<title>Beat Hazard</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="49600"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="appdata" path="Beat Hazard"/>
</locations>
<files>
<include filename="*.sav"/>
</files>
<files type="Settings">
<include filename="BeatHazardPref.txt"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BEEP" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>BEEP</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="beep\Art"/>
</locations>
<files>
<include filename="Settings.xml"/>
<include path="Save"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Beijing2008" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Beijing 2008</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\SEGA\Beijing 2008"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Bejeweled2Deluxe" follows="BejeweledDeluxe" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Bejeweled 2 Deluxe</title>
<version os="Windows">
<locations>
<path ev="allusersprofile" path="PopCap Games\Bejeweled2" only_for="WindowsVista"/>
<path ev="allusersprofile" path="Steam\Bejeweled2" only_for="WindowsVista"/>
<path ev="steamcommon" path="bejeweled 2 deluxe" only_for="WindowsXP"/>
</locations>
<files>
<include path="users"/>
</files>
<linkable path="users"/>
<identifier path="users"/>
<contributor>duncans_pumpkin</contributor>
</version>
</game>
<game name="Bejeweled3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Bejeweled 3</title>
<version os="Windows">
<locations>
<path ev="commonapplicationdata" path="PopCap Games\Bejeweled 3"/>
<path ev="localappdata" path="GameHouse\Bejeweled3"/>
<path ev="localappdata" path="PopCap Games\Bejeweled3"/>
<path ev="localappdata" path="Steam\Bejeweled3"/>
</locations>
<files>
<include path="users"/>
</files>
<linkable path="users"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BejeweledBlitz" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Bejeweled Blitz</title>
<version os="Windows">
<locations>
<path ev="commonapplicationdata" path="PopCap Games\BejeweledBlitz"/>
</locations>
<files>
<include path="users"/>
</files>
<linkable path="users"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BejeweledDeluxe" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Bejeweled Deluxe</title>
<version os="Windows">
<locations>
<path ev="allusersprofile" path="PopCapGames\Bejeweled" only_for="WindowsVista"/>
<path ev="allusersprofile" path="Steam\Bejeweled" only_for="WindowsVista"/>
<path ev="steamcommon" path="bejeweled deluxe" only_for="WindowsXP"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Bejeweled Deluxe 1.87" value="UninstallString" only_for="WindowsXP"/>
</locations>
<files>
<include path="userdata"/>
</files>
<linkable path="userdata"/>
<identifier path="userdata"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BejeweledTwist" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Bejeweled Twist</title>
<version os="Windows">
<locations>
<path ev="commonapplicationdata" path="PopCap Games\BejeweledTwist"/>
<path ev="commonapplicationdata" path="Steam\BejeweledTwist"/>
<path ev="localappdata" path="PopCap Games\BejeweledTwist"/>
</locations>
<files>
<include path="users"/>
</files>
<linkable path="users"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BeneathASteelSky" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Beneath a Steel Sky</title>
<version platform="ScummVM">
<scummvm name="sky"/>
<scummvm name="SKY-VM"/>
<locations>
<path ev="installlocation" path="GOG.com\Beneath a Steel Sky"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGBENEATH" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Beneath a Steel Sky\Beneath a Steel Sky.lnk" detract="ScummVM"/>
</locations>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BenThereDanThat" added="1955-11-05T00:00:00" updated="2013-01-05T16:19:39">
<title>Ben There, Dan That!</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Ben There Dan That"/>
<path ev="steamcommon" path="ben there, dan that!"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Steam App 3740" value="InstallLocation"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{3CD921DC-FE10-404C-99DB-FA57A6FCB32E}_is1" value="InstallLocation"/>
<shortcut ev="startmenu" path="Programs\Ben There Dan That\Ben There Dan That.lnk"/>
</locations>
<files>
<include filename="agssave.*"/>
</files>
<files type="Settings">
<include filename="acsetup.cfg"/>
</files>
<contributor>AdmiringWorm</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BeowulfTheGame" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Beowulf: The Game</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Ubisoft\Beowulf"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BetOnSoldierBloodSport" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Bet on Soldier: Blood Sport</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Bet on Soldier"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Bet on Soldier_is1" value="InstallLocation"/>
<shortcut ev="startmenu" path="Programs\Bet on Soldier\Bet on Soldier.lnk"/>
</locations>
<files>
<include path="Mods\Bos\Saves"/>
</files>
<files type="Settings">
<include path="Mods\Bos\Settings"/>
</files>
<linkable path="Mods\Bos\Saves"/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="BetrayalAtKrondor" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Betrayal at Krondor</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGBAK" value="PATH"/>
</locations>
<files>
<include path="GAMES"/>
</files>
<linkable path="GAMES"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BetrayalInAntara" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Betrayal in Antara</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGBIA" value="PATH"/>
</locations>
<files>
<include path="SAVE"/>
</files>
<linkable path="SAVE"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="BeyondGoodAndEvil" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Beyond Good & Evil</title>
<version os="PS2" region="USA">
<ps_code prefix="SLUS" suffix="20763"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="PS3" region="USA">
<ps_code prefix="NPUB" suffix="30394" append="-SALLY" type="Profile"/>
<ps_code prefix="NPUB" suffix="30394" append="-SLOT"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Beyond Good and Evil"/>
<path ev="installlocation" path="Ubisoft\Beyond Good & Evil"/>
<path ev="steamcommon" path="beyond good and evil"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGBEYONDGOODANDEVIL" value="PATH"/>
<registry root="local_machine" key="SOFTWARE\Ubisoft\Beyond Good & Evil" value="Install path"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Beyond Good and Evil\Beyond Good and Evil.lnk"/>
<shortcut ev="startmenu" path="Programs\Ubisoft\Beyond Good & Evil\Play Beyond Good & Evil.lnk"/>
</locations>
<files>
<include filename="*.sav"/>
<include filename="sally.idx"/>
</files>
<registry>
<entry root="current_user" key="Software\Ubisoft\Beyond Good & Evil\SettingsApplication.INI" value="Saves"/>
</registry>
<contributor>duncans_pumpkin</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BeyondZork" follows="Zork3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Beyond Zork: The Coconut of Quendor</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Zork Anthology\Beyond Zork"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGBEOYNDZORK1" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Zork Anthology\Beyond Zork - The Coconut of Quendor\Beyond Zork - The Coconut of Quendor.lnk" detract="DOSBOX" append="Beyond Zork"/>
</locations>
<files>
<include filename="*.SAV"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="BinaryDomain" added="2012-08-07T19:25:20" updated="2013-02-03T05:40:17">
<title>Binary Domain</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="203750"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="binary domain"/>
<registry root="local_machine" key="SOFTWARE\Sega\Binary Domain" value="Install_Path"/>
</locations>
<files>
<include path="savedata"/>