-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathm.xml
More file actions
2181 lines (2181 loc) · 75 KB
/
m.xml
File metadata and controls
2181 lines (2181 loc) · 75 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 M
DO NOT EDIT THIS FILE, CHANGES WILL EVENTUALLY BE OVERWRITTEN BY THE AUTO UPDATE SYSTEM!-->
<game name="MacGuffinsCurse" added="2012-09-12T14:11:29" updated="2012-09-12T14:11:29">
<title>MacGuffin's Curse</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="58230"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userprofile" path="AppData\LocalLow\Brawsome\MacGuffin"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Machinarium" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Machinarium</title>
<version platform="Flash">
<locations>
<path ev="flashshared" path="localhost\Program Files (x86)\GOG.com\Machinarium\machinarium.exe"/>
<path ev="flashshared" path="localhost\program files (x86)\steam\steamapps\common\machinarium"/>
<path ev="flashshared" path="localhost\Program Files\GOG.com\Machinarium\machinarium.exe"/>
<path ev="flashshared" path="localhost\program files\steam\steamapps\common\machinarium"/>
<path ev="flashshared" path="localhost\steam\steamapps\common\machinarium"/>
</locations>
<files>
<include/>
</files>
<contributor>AvvA</contributor>
</version>
</game>
<game name="Madagascar" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Madagascar</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Activision\Madagascar\Save"/>
</locations>
<files>
<include/>
</files>
<registry type="Saves">
<entry root="current_user" key="Software\Activision\Madagascar" value="Saves"/>
</registry>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MadballsBaboInvasion" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Madballs in.. BaboInvasion</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="25700"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="baboinvasion"/>
</locations>
<files>
<include filename="*.hdb"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MadRiders" added="2012-09-12T14:11:29" updated="2012-09-12T14:11:29">
<title>Mad Riders</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="madriders"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Mafia" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mafia</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Mafia"/>
<path ev="steamcommon" path="mafia"/>
<registry root="local_machine" key="SOFTWARE\Gathering of Developers\Mafia" value="InstallPath"/>
</locations>
<files>
<include path="savegame"/>
</files>
<contributor>Arc Angel</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Mafia2" follows="Mafia" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mafia II</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="2K Games\Mafia II"/>
</locations>
<files>
<include path="Saves"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="MagicCarpet" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Magic Carpet</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGMAGICCARPET" value="PATH"/>
</locations>
<files>
<include path="CARPET.CD\SAVE"/>
</files>
<linkable path="CARPET.CD\SAVE"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Magicka" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Magicka</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="Magicka"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<contributor>slake_jones</contributor>
</version>
</game>
<game name="MagicTheGathering" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Magic: The Gathering</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Wizards of the Coast\Magic the Gathering"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MagicTheGatheringDuelsOfThePlaneswalkers" added="2012-08-27T18:13:36" updated="2013-02-03T05:40:17">
<title>Magic: The Gathering - Duels of the Planeswalkers</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="49400"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version platform="SteamCloud" release="2013">
<title>Magic: The Gathering - Duels of the Planeswalkers (2013)</title>
<locations>
<path ev="steamuserdata" path="97330"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Magnetis" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Magnetis</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="magnetis"/>
<registry root="local_machine" key="SOFTWARE\Magnetis" value="Install_Dir"/>
</locations>
<files>
<include filename="*.conf"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MahJongQuest" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Mah Jong Quest</title>
<version os="Windows">
<locations>
<path ev="public" path="Documents\iWin\mahjong"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MahJongQuest2" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Mah Jong Quest 2</title>
<version os="Windows">
<locations>
<path ev="public" path="Documents\iWin\MahjongQuest2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MahJongQuest3" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Mah Jong Quest 3</title>
<version os="Windows">
<locations>
<path ev="appdata" path="iWin\MahjongQuest3"/>
<registry root="local_machine" key="SOFTWARE\iWinArcade\Mah Jong Quest III" value="InstallDir"/>
</locations>
<files>
<include/>
<include filename="players.cfg*"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MahjongSuite" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Mahjong Suite</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Mahjong Suite"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Majesty" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Majesty: The Fantasy Kingdom Sim</title>
<version os="Windows">
<locations>
<registry root="current_user" key="Software\Cyberlore\Majesty\InstallShield" value="INSTALLPATH"/>
</locations>
<files>
<include path="SaveGame"/>
</files>
<linkable path="SaveGame"/>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows" release="GoldHD">
<title>Majesty Gold HD</title>
<locations>
<path ev="userdocuments" path="My Games\MajestyHD"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Majesty2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Majesty 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="majesty2"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<expansion name="MajestyNorthernExpansion" for="Majesty" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Majesty: The Northern Expansion</title>
<version os="Windows">
<locations>
<registry root="current_user" key="Software\Cyberlore\Majesty Expansion\InstallShield" value="INSTALLPATH"/>
</locations>
<files>
<include path="SaveGame"/>
</files>
<linkable path="SaveGame"/>
<contributor>GameSaveManager</contributor>
</version>
</expansion>
<game name="MajorLeagueBaseball2011" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Major League Baseball 2011</title>
<version os="Windows">
<locations>
<path ev="appdata" path="2K Sports\Major League Baseball 2K11"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Manhunt" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Manhunt</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Manhunt User Files"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="Manhunt2" follows="Manhunt" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Manhunt 2</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Rockstar Games\Manhunt 2"/>
<path ev="localappdata" path="Rockstar Games\Manhunt 2"/>
<path ev="userdocuments" path="Rockstar Games\Manhunt 2"/>
</locations>
<files>
<include path="savegames"/>
</files>
<files type="Settings">
<include path="settings"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="ManiaPlanet" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>ManiaPlanet</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="ManiaPlanet"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ManyYearsAgo" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Many Years Ago</title>
<version os="Windows">
<locations>
<path ev="appdata" path="ERS G-Studio\Many Years Ago"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Mari0" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Mari0</title>
<version os="Windows">
<locations>
<path ev="appdata" path="LOVE\mari0"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MarkLeungRevengeOfTheBitch" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mark Leung: Revenge of the Bitch</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Uglysoft\MarkLeung"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Mark Leung - Revenge of the Bitchv1.3" value="InstallLocation"/>
<shortcut ev="startmenu" path="Programs\Mark Leung - Revenge of the Bitch\MarkLeung.lnk"/>
</locations>
<files>
<include path="save"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="MarkOfTheNinja" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Mark of the Ninja</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="214560"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MarsWarLogs" added="2013-06-14T05:17:42" updated="2014-01-28T15:32:05">
<title>Mars: War Logs</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Mars - War Logs"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="MartianMemorandum" follows="MeanStreets" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Martian Memorandum</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Tex Murphy 1 and 2\Martian Memorandum"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTEX2" value="SAVEGAMEFOLDER"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Tex Murphy 1 and 2\Martian Memorandum\Martian Memorandum.lnk" detract="DOSBOX" append="Martian Memorandum"/>
</locations>
<files>
<include filename="*.GAM"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MarvelTradingCardGame" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Marvel Trading Card Game (a.k.a. Marvel VS)</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="Software\Marvel VS" value="Install_Dir"/>
</locations>
<files>
<include path="save"/>
</files>
<linkable path="save"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MarvelVS" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Marvel VS</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Marvel VS" value="Install_Dir"/>
</locations>
<files>
<include path="save"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MarvinsMittens" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Marvins' Mittens</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="SavedGames\MarvinsMittens"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MassEffect" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mass Effect</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="BioWare\Mass Effect"/>
</locations>
<files>
<include path="Save"/>
</files>
<files type="Settings">
<include path="Config" filename="BIOGame.ini"/>
<include path="Config" filename="BIOInput.ini"/>
</files>
<contributor>Christian Hamann</contributor>
</version>
</game>
<game name="MassEffect2" follows="MassEffect" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mass Effect 2</title>
<version os="PS3" region="USA">
<ps_code prefix="BLUS" suffix="30650"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="BioWare\Mass Effect 2"/>
</locations>
<files>
<include path="BIOGame\Profile"/>
<include path="Save"/>
</files>
<files type="Settings">
<include path="BIOGame\Config"/>
</files>
<contributor>Christian Hamann</contributor>
</version>
</game>
<game name="MassEffect3" follows="MassEffect2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mass Effect 3</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="BioWare\Mass Effect 3"/>
</locations>
<files>
<include path="Save"/>
</files>
<files type="Settings">
<include path="BIOGame\Config"/>
</files>
<contributor>AdmiringWorm</contributor>
</version>
</game>
<game name="MasterLevelsForDoom2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Master Levels For Doom II</title>
<version os="DOS">
<locations>
<path ev="steamcommon" path="master levels of doom\doom2"/>
</locations>
<files>
<include filename="*.dsg"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MasterOfMagic" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Master of Magic</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Master Of Magic"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGMASTEROFMAGIC" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Master of Magic\Master of Magic.lnk" detract="DOSBOX"/>
</locations>
<files>
<include filename="SAVE*.GAM"/>
</files>
<contributor>Mark Barbour</contributor>
</version>
</game>
<game name="MasterOfOrion" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Master of Orion</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Master of Orion 1 and 2\Master of Orion 1"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGMASTEROFORION1" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Master of Orion 1 and 2\Master of Orion\Documents\Readme.lnk"/>
</locations>
<files>
<include filename="SAVE*.GAM"/>
</files>
<files type="Settings">
<include filename="CONFIG.MOO"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MasterOfOrion2" follows="MasterOfOrion" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Master of Orion 2: Battle at Antares</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Master of Orion 1 and 2\Master of Orion 2"/>
<path ev="installlocation" path="Microprose\Orion2"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGMASTEROFORION2" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Master of Orion 1 and 2\Master of Orion 2\Documents\Readme.lnk"/>
<shortcut ev="startmenu" path="Programs\Microprose\Master of Orion II\Master of Orion II.lnk"/>
</locations>
<files>
<include filename="SAVE*.GAM"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MataHari" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mata Hari</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="MataHari"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MatrixPathOfNeo" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Matrix: Path of Neo</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Atari\The Matrix - Path of Neo"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E571E8B1-9771-465D-9DE0-3BA2D1BDAE99}" value="InstallLocation"/>
<shortcut ev="startmenu" path="Programs\Atari\The Matrix - Path of Neo\The Matrix - Path of Neo.lnk"/>
</locations>
<files>
<include path="saved"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Maw" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Maw</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="26000"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MaxPayne" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Max Payne</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Max Payne Savegames"/>
</locations>
<files>
<include/>
</files>
<contributor>duncans_pumpkin</contributor>
</version>
</game>
<game name="MaxPayne2" follows="MaxPayne" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Max Payne 2: The Fall of Max Payne</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Max Payne 2 Savegames"/>
</locations>
<files>
<include/>
</files>
<contributor>duncans_pumpkin</contributor>
</version>
</game>
<game name="MaxPayne3" follows="MaxPayne2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Max Payne 3</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Rockstar Games\Max Payne 3"/>
</locations>
<files>
<include/>
</files>
<contributor>Paul Taylor</contributor>
</version>
</game>
<game name="MayanPropheciesShipOfSpirits" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Mayan Prophecies: Ship of Spirits</title>
<version os="Windows">
<locations>
<path ev="appdata" path="EleFun Games\Mayan Prophecies Ship of Spirits\default"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="McPixel" added="2012-10-01T16:54:44" updated="2012-10-01T16:54:44">
<title>McPixel</title>
<version os="Windows">
<locations>
<path ev="appdata" path="gd.sos.McPixel"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MDK" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MDK</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\MDK"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGMDK" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\MDK\MDK.lnk"/>
</locations>
<files>
<include path="SAVES"/>
</files>
<files type="Settings">
<include filename="MDK.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MDK2" follows="MDK" added="1955-11-05T00:00:00" updated="2013-02-03T05:40:17">
<title>MDK 2</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\MDK2"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGMDK2" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\MDK2\MDK 2.lnk"/>
</locations>
<files>
<include path="save" filename="*.sav"/>
</files>
<files type="Settings">
<include path="save" filename="*.lua"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows" release="HD">
<title>MDK 2 HD</title>
<locations>
<path ev="localappdata" path="MDK2HD"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MeanStreets" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mean Streets</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Tex Murphy 1 and 2\Mean Streets"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTEX1" value="SAVEGAMEFOLDER"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Tex Murphy 1 and 2\Mean Streets\Mean Streets.lnk" detract="DOSBOX" append="Mean Streets"/>
</locations>
<files>
<include filename="*.GAM"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MechCommander" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechCommander</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="FasaInteractive\MechCmdr"/>
<registry root="local_machine" key="SOFTWARE\FASA Interactive\MechCommander" value="Path"/>
<shortcut ev="startmenu" path="Programs\Microprose\MechCommander\Mech Commander.lnk"/>
</locations>
<files>
<include path="data\savegame"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MechCommander2" follows="MechCommander" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechCommander 2</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Microsoft Games\MechCommander2"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Microsoft Games\MechCommander2\1.0" value="EXE Path"/>
<shortcut ev="startmenu" path="Programs\Microsoft Games\MechCommander 2\MechCommander 2.lnk"/>
</locations>
<files>
<include path="data\savegame"/>
</files>
<files type="Settings">
<include filename="*.cfg"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MechoWars" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Mecho Wars</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Oyaji Games\Mecho Wars"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="MechWarrior2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechWarrior 2: 31st Century Combat</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Activision\BattlePack\MW2"/>
<registry root="local_machine" key="SOFTWARE\Activision\Activenet\Applications\1020.2.1" value="Cwd"/>
<shortcut ev="startmenu" path="Programs\BattlePack\MechWarrior 2\MechWarrior 2 Uninstall.lnk"/>
</locations>
<files>
<include filename="userstar.bwd"/>
</files>
<files type="Mechs">
<include path="mek"/>
</files>
<files type="Settings">
<include filename="MW2PRM.CFG"/>
<include filename="MW2REG.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows" release="TitaniumEdition">
<title>MechWarrior 2: 31st Century Combat: Titanium Edition</title>
<locations>
<path ev="altsavepaths" path="MechVM\games\mw2-31stcc-tt"/>
<path ev="installlocation" path="Activision\Titanium\Mechwarrior2"/>
<registry root="local_machine" key="SOFTWARE\Activision\Activenet\Applications\1020.2.1" value="Cwd"/>
<shortcut ev="startmenu" path="Programs\Titanium\Mechwarrior2\Play MechWarrior2.lnk" detract="splash"/>
</locations>
<files>
<include filename="userstar.bwd"/>
</files>
<files type="Mechs">
<include path="mek"/>
</files>
<files type="Settings">
<include filename="MW2PRM.CFG"/>
<include filename="MW2REG.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<expansion name="MechWarrior2GhostBearsLegacy" for="MechWarrior2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechWarrior 2: Ghost Bear's Legacy</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Activision\Ghost Bear"/>
<shortcut ev="startmenu" path="Programs\Ghost Bear's Legacy\Ghost Bear's Legacy.lnk"/>
</locations>
<files>
<include filename="userstar.bwd"/>
</files>
<files type="Mechs">
<include path="mek"/>
</files>
<files type="Settings">
<include filename="MW2PRM.CFG"/>
<include filename="MW2REG.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows" release="TitaniumEdition">
<title>MechWarrior 2: Ghost Bear's Legacy: Titanium Edition</title>
<locations>
<path ev="altsavepaths" path="MechVM\games\mw2-gbl-tt"/>
<path ev="installlocation" path="Activision\Titanium\GhostBearsLegacy"/>
<shortcut ev="startmenu" path="Programs\Titanium\GhostBearsLegacy\Play Ghost Bear's Legacy.lnk" detract="splash"/>
</locations>
<files>
<include filename="userstar.bwd"/>
</files>
<files type="Mechs">
<include path="mek"/>
</files>
<files type="Settings">
<include filename="MW2PRM.CFG"/>
<include filename="MW2REG.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<game name="MechWarrior2Mercenaries" follows="MechWarrior2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechWarrior 2: Mercenaries</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Activision\Mercenaries"/>
<registry root="local_machine" key="SOFTWARE\Activision\Activenet\Applications\1060.2.1" value="Cwd"/>
<shortcut ev="startmenu" path="Programs\Mercenaries\Mercenaries.lnk"/>
</locations>
<files>
<include filename="userstar.bwd"/>
</files>
<files type="Mechs">
<include path="mek"/>
</files>
<files type="Settings">
<include filename="MW2PRM.CFG"/>
<include filename="MW2REG.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows" release="TitaniumEdition">
<title>MechWarrior 2: Mercenaries: Titanium Edition</title>
<locations>
<path ev="altsavepaths" path="MechVM\games\mw2-mercs-tt"/>
<path ev="installlocation" path="Activision\Titanium\Mercenaries"/>
<registry root="local_machine" key="SOFTWARE\Activision\Activenet\Applications\1060.2.1" value="Cwd"/>
<shortcut ev="startmenu" path="Programs\Titanium\Mercenaries\Play Mercenaries.lnk" detract="splash"/>
</locations>
<files>
<include filename="userstar.bwd"/>
</files>
<files type="Mechs">
<include path="mek"/>
</files>
<files type="Settings">
<include filename="MW2PRM.CFG"/>
<include filename="MW2REG.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MechWarrior3" follows="MechWarrior2Mercenaries" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechWarrior 3</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="MicroProse\MechWarrior3"/>
<registry root="local_machine" key="SOFTWARE\MicroProse\MechWarrior 3\1.0" value="Program"/>
</locations>
<files>
<include path="pilots"/>
</files>
<files type="Mechs">
<include filename="*.mw3"/>
<include path="configs"/>
</files>
<files type="Settings">
<include path="Keys"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<expansion name="MechWarrior3PiratesMoon" for="MechWarrior3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechWarrior 3: Pirate's Moon</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="MicroProse\MechWarrior 3 Pirate's Moon"/>
</locations>
<files>
<include path="pilots"/>
</files>
<files type="Mechs">
<include path="configs"/>
</files>
<files type="Settings">
<include path="Keys"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<expansion name="MechWarrior4BlackKnight" for="MechWarrior4Vengeance" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechWarrior 4: Black Knight</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Microsoft\Microsoft Games\MechWarrior Black Knight" value="EXE Path"/>
<parent name="MechWarrior4Vengeance" os="Windows"/>
</locations>
<files>
<include path="resource\Pilotsx"/>
</files>
<files type="Mechs">
<include path="resource\Variantsx"/>
</files>
<files type="Settings">
<include filename="optionsx.ini"/>
</files>
<identifier filename="optionsx.ini"/>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<game name="MechWarrior4Mercenaries" follows="MechWarrior4Vengeance" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechWarrior 4: Mercenaries</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Microsoft Games\Mechwarrior Mercenaries"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Microsoft Games\MechWarrior Mercenaries" value="EXE Path"/>
</locations>
<files>
<include path="RESOURCE\Pilots"/>
</files>
<files type="Mechs">
<include path="RESOURCE\VariantsMercs"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MechWarrior4Vengeance" follows="MechWarrior3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>MechWarrior 4: Vengeance</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Microsoft Games\MechWarrior Vengeance"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Microsoft Games\MechWarrior Vengeance" value="EXE Path"/>
</locations>
<files>
<include path="resource\pilots"/>
</files>
<files type="Mechs">
<include path="resource\variants"/>
</files>
<files type="Settings">
<include filename="options.ini"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="MedalOfHonor2010" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Medal of Honor (2010)</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="EA Games\Medal of Honor"/>
</locations>