-
Notifications
You must be signed in to change notification settings - Fork 0
/
masgau_gamesave.sql
999 lines (869 loc) · 552 KB
/
masgau_gamesave.sql
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
-- phpMyAdmin SQL Dump
-- version 3.4.10.1deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 11, 2012 at 03:26 PM
-- Server version: 5.5.24
-- PHP Version: 5.3.10-1ubuntu3.2
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `masgau_gamesave`
--
-- --------------------------------------------------------
--
-- Table structure for table `compatibility_equivalencies`
--
CREATE TABLE IF NOT EXISTS `compatibility_equivalencies` (
`priority` int(11) NOT NULL,
`os` varchar(50) DEFAULT NULL,
`platform` varchar(50) DEFAULT NULL,
`media` varchar(50) DEFAULT NULL,
`ev` varchar(50) DEFAULT NULL,
`regex` varchar(200) DEFAULT NULL,
`compat_platform` varchar(50) DEFAULT NULL,
`compat_media` varchar(50) DEFAULT NULL,
`stop` tinyint(1) NOT NULL,
KEY `ev` (`ev`),
KEY `compat_platform` (`compat_platform`),
KEY `compat_media` (`compat_media`),
KEY `os` (`os`),
KEY `platform` (`platform`),
KEY `media` (`media`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `compatibility_equivalencies`
--
INSERT INTO `compatibility_equivalencies` (`priority`, `os`, `platform`, `media`, `ev`, `regex`, `compat_platform`, `compat_media`, `stop`) VALUES
(9999, 'DOS', NULL, NULL, 'installlocation', '.*', 'dos', 'dosdisk', 0),
(0, 'PS1', NULL, NULL, NULL, NULL, 'playstation', NULL, 0),
(0, 'PS2', NULL, NULL, NULL, NULL, 'playstation', NULL, 0),
(0, 'PS3', NULL, NULL, NULL, NULL, 'playstation', NULL, 0),
(0, 'PSP', NULL, NULL, NULL, NULL, 'playstation', NULL, 0),
(0, NULL, NULL, NULL, 'installlocation', '.*GOG.com.*', 'windows', 'gog', 1),
(0, NULL, NULL, NULL, 'steamcommon', NULL, 'windows', 'steam', 1),
(0, NULL, NULL, NULL, 'steamsourcemods', NULL, 'windows', 'steam', 1),
(0, NULL, NULL, NULL, 'steamuser', NULL, 'windows', 'steam', 1),
(0, NULL, NULL, NULL, 'steamuserdata', NULL, 'windows', 'steam_cloud', 1),
(9999, 'Windows', NULL, NULL, 'installlocation', NULL, 'windows', 'disc', 0),
(999, NULL, NULL, NULL, 'localappdata', NULL, 'windows', 'universal', 0),
(999, 'Windows', NULL, NULL, 'userdocuments', NULL, 'windows', 'universal', 0),
(999, NULL, NULL, NULL, 'appdata', NULL, 'windows', 'universal', 0),
(999, 'Windows', NULL, NULL, 'public', NULL, 'windows', 'universal', 0),
(999, 'Windows', NULL, NULL, 'savedgames', NULL, 'windows', 'universal', 0),
(999, NULL, NULL, NULL, 'allusersprofile', NULL, 'windows', 'universal', 0),
(0, NULL, NULL, NULL, NULL, '.*steamapps.*', 'windows', 'steam', 1),
(0, 'Windows', NULL, NULL, 'installlocation', '.*Telltale Games.*', 'windows', 'other', 0),
(0, NULL, 'ScummVM', NULL, NULL, NULL, 'windows', 'scummvm', 1),
(0, 'Windows', NULL, NULL, NULL, '.*_GOG_Version.*', 'windows', 'gog', 1),
(0, 'Android', NULL, NULL, NULL, NULL, 'mobile', 'android', 1),
(999, NULL, NULL, NULL, 'userprofile', NULL, 'windows', 'universal', 0),
(100, NULL, 'Flash', NULL, 'flashshared', NULL, 'windows', 'universal', 1);
-- --------------------------------------------------------
--
-- Table structure for table `compatibility_medias`
--
CREATE TABLE IF NOT EXISTS `compatibility_medias` (
`name` varchar(50) NOT NULL,
`title` varchar(500) NOT NULL,
`order` int(11) NOT NULL,
`display` tinyint(1) NOT NULL,
`url` varchar(500) DEFAULT NULL,
`icon` varchar(500) NOT NULL,
`description` longtext NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `compatibility_medias`
--
INSERT INTO `compatibility_medias` (`name`, `title`, `order`, `display`, `url`, `icon`, `description`) VALUES
('amazon', 'Amazon.com', 7, 0, 'http://amazon.com/', 'amazon.png', 'Supports versions of the game downloaded from Amazon.com\r\n'),
('android', 'Android', 1, 1, 'http://www.android.com/', 'android.png', 'Supports versions of the game for the Android mobile phone and tablet OS'),
('disc', 'Disc', 0, 1, NULL, 'disc.png', 'Supports versions of the game that are installed from a disc'),
('dosdisk', 'DOS Disk', 0, 1, NULL, 'floppy.png', 'Supports DOS versions of the game that are installed from a disc or disk'),
('gamefly', 'GameFly', 6, 0, 'http://www.gamefly.com/', 'gamefly.png', 'Supports versions of the game downloaded from GameFly'),
('gamersgate', 'Gamer''s Gate', 9, 0, 'http://www.gamersgate.com/', 'gamersgate.png', 'Supports versions of the game downloaded from Gamer''s Gate'),
('gametap', 'GameTap', 5, 0, 'http://www.gametap.com/', 'gametap.png', 'Supports versions of the game downloaded from GameTap'),
('gog', 'GoG.com', 2, 1, 'http://GoG.com', 'gog.png', 'Supports versions of the game downloaded from GoG.com'),
('impulse', 'Impulse (GameStop)', 4, 0, 'http://www.impulsedriven.com/', 'impulse.png', 'Supports versions of the game downloaded from Gamestop''s Impulse store'),
('origin', 'Origin', 3, 0, 'http://www.origin.com', 'origin.png', 'Supports versions of the game downloaded from EA''s Origin store'),
('other', 'Other', 100, 1, NULL, 'other.png', 'Supports versions of the game downloaded from other web-based sources'),
('scummvm', 'ScummVM', 10, 1, 'http://www.scummvm.org/', 'scummvm.png', 'Support versions of the game run through the ScummVM game engine'),
('steam', 'Steam', 1, 1, 'http://steampowered.com/', 'steam.png', 'Supports versions of the game downloaded from Valve''s Steam'),
('steam_cloud', 'Steam Cloud', 1, 1, 'http://steampowered.com/', 'steam_cloud.png', 'Detects Steam Cloud data for this game'),
('universal', 'Universal', -1, 1, NULL, 'universal.png', 'Supports all versions of the game, regardless of where it was purchased or downloaded from'),
('wildtangent', 'WildTangent', 8, 0, 'http://www.wildtangent.com', 'wildtangent.png', 'Supports versions of the game downloaded from WildTangent');
-- --------------------------------------------------------
--
-- Table structure for table `compatibility_override`
--
CREATE TABLE IF NOT EXISTS `compatibility_override` (
`name` varchar(50) NOT NULL,
`platform` varchar(50) NOT NULL,
`media` varchar(50) NOT NULL,
PRIMARY KEY (`name`,`platform`,`media`),
KEY `platform` (`platform`),
KEY `media` (`media`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `compatibility_override`
--
INSERT INTO `compatibility_override` (`name`, `platform`, `media`) VALUES
('CodenameGordon', 'windows', 'steam'),
('fs2_open', 'windows', 'other'),
('HackerEvolution', 'windows', 'other'),
('IncredibleMachine3', 'windows', 'universal'),
('SystemShock2', 'windows', 'disc'),
('TombRaider', 'windows', 'disc'),
('TombRaiderUnfinishedBusiness', 'windows', 'disc');
-- --------------------------------------------------------
--
-- Table structure for table `compatibility_platforms`
--
CREATE TABLE IF NOT EXISTS `compatibility_platforms` (
`name` varchar(50) NOT NULL,
`title` varchar(50) NOT NULL,
`order` int(11) NOT NULL,
`display` tinyint(1) NOT NULL,
`width` varchar(10) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `compatibility_platforms`
--
INSERT INTO `compatibility_platforms` (`name`, `title`, `order`, `display`, `width`) VALUES
('dos', 'DOS', 0, 1, '50px'),
('linux', 'Linux', 1, 0, '50px'),
('mobile', 'Mobile', 6, 1, '50px'),
('osx', 'OS X', 2, 0, '50px'),
('playstation', 'PlayStation', 5, 1, '100px'),
('windows', 'Windows', 0, 1, 'auto');
-- --------------------------------------------------------
--
-- Table structure for table `games`
--
CREATE TABLE IF NOT EXISTS `games` (
`name` varchar(50) NOT NULL,
`title` longtext NOT NULL,
`type` enum('game','mod','expansion','system') NOT NULL DEFAULT 'game',
`for` varchar(50) DEFAULT NULL,
`follows` varchar(50) DEFAULT NULL,
`deprecated` tinyint(1) NOT NULL DEFAULT '0',
`comment` longtext,
PRIMARY KEY (`name`),
KEY `follows` (`follows`),
KEY `for` (`for`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_contributions`
--
CREATE TABLE IF NOT EXISTS `game_contributions` (
`game_version` varchar(32) NOT NULL,
`contributor` varchar(200) NOT NULL,
UNIQUE KEY `game_version` (`game_version`,`contributor`),
KEY `contributor` (`contributor`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_contributors`
--
CREATE TABLE IF NOT EXISTS `game_contributors` (
`name` varchar(200) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_environment_variables`
--
CREATE TABLE IF NOT EXISTS `game_environment_variables` (
`name` varchar(50) NOT NULL,
`description` longtext NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `game_environment_variables`
--
INSERT INTO `game_environment_variables` (`name`, `description`) VALUES
('allusersprofile', 'A Windows folder that contains data common to all the users.<br/>\r\nCommon locations include:\r\n<ul>\r\n<li>XP: C:\\Documents and Settings\\All Users</li>\r\n<li>Vista, 7, 8: C:\\ProgramData</li>\r\n</ul>\r\n'),
('altsavepaths', 'This is catch-all folder, it could be literally anywhere. I know it''s not much to go on :('),
('appdata', 'This folder contains the application data for a particular Windows user. It is usually located here:\r\n<ul>\r\n<li>XP: C:\\Documents and Settings\\%USERNAME%\\Application Data</li>\r\n<li>Vista, 7 & 8: C:\\Users\\%USERNAME%\\AppData\\Roaming</li>\r\n</ul>'),
('desktop', 'A per-user folder that contains the files store on a user''s desktop. It''s usually located at:\r\n<ul>\r\n<li>XP: C:\\Documents and Settings\\%USERNAME%\\Desktop </li>\r\n<li>Vista, 7 & 8: C:\\Users\\%USERNAME%\\Desktop\r\n</li>\r\n</ul>'),
('drive', 'Refers to the root of a drive. Any drive.'),
('flashshared', 'This folder stores cached Adobe Flash data. It''s usually located at:\r\n<ul>\r\n<li>XP: C:\\Documents and Settings\\%USERNAME%\\Application Data\\Macromedia\\Flash Player\\#SharedObjects</li>\r\n<li>Vista, 7 & 8: C:\\Users\\%USERNAME%\\AppData\\Roaming\\Macromedia\\Flash Player\\#SharedObjects</li>\r\n</ul>'),
('installlocation', 'This means that the game keeps its saves in its install folder. Usually games are installed in these locations:\r\n<ul>\r\n<li>C:\\Program Files</li>\r\n<li>C:\\Program Files (x86) (Common for games on 64-bit Windows)</li>\r\n<li>C:\\Games</li>\r\n<li>C:\\</li>\r\n</ul>'),
('localappdata', 'This folder contains the local settings for a particular Windows user. It is usually located here:\r\n<ul>\r\n<li>XP: C:\\Documents and Settings\\%USERNAME%\\Local Settings\\Application Data </li>\r\n<li>Vista, 7 & 8: C:\\Users\\%USERNAME%\\AppData\\Local</li>\r\n</ul>'),
('public', 'A special user folder on Windows Vista, 7 and 8. It''s usually located at:\r\n<ul>\r\n<li>C:\\Users\\Public</li>\r\n</ul>'),
('savedgames', 'A per-user folder in Vista and later specifically for storing game saves.\r\n<ul>\r\n<li>C:\\Users\\%USERNAME%\\Saved Games</li>\r\n</ul>'),
('startmenu', 'The folder that contains the files for Windows'' start menu. There is one for each user, and a global one that all users share. Usually located in these places:\r\n<ul>\r\n<li>XP:\r\n<ul>\r\n<li>User: C:\\Documents and Settings\\%USER%\\Start Menu</li>\r\n<li>Global: C:\\Documents and Settings\\All Users\\Start Menu</li>\r\n</ul>\r\n</li>\r\n<li>Vista, 7 & 8:\r\n<ul>\r\n<li>User: C:\\Users\\%USER%\\AppData\\Roaming\\Microsoft\\Windows\\Start\r\nMenu\\</li>\r\n<li>Global: C:\\ProgramData\\Microsoft\\Windows\\Start Menu</li>\r\n</ul></li>\r\n</ul>'),
('steamcommon', 'This is the location where Steam keeps games that don''t use its integrated GCF system (which is most games). It is typically in this location:\r\n<ul>\r\n<li>C:\\Program Files\\Steam\\steamapps\\common</li>\r\n</ul>'),
('steamsourcemods', 'This folder contains the files for mods for Valve''s Source game engine. It''s part of Steam and is usually found at:\r\n<ul>\r\n<li>C:\\Program Files\\Steam\\steamapps\\SourceMods</li>\r\n</ul>'),
('steamuser', 'This location stores per-user settings, saves and cache files for Valve''s game distributed through Steam. Usually found at:\r\n<ul>\r\n<li>C:\\Program Files\\Steam\\steamapps\\%USERNAME%</li>\r\n</ul>'),
('steamuserdata', 'This folder stores Steam Cloud data. This data is automatically backed up onto Steam''s servers, and is usually located at:\r\n<ul>\r\n<li>C:\\Program Files\\Steam\\userdata\\%STEAMID%</li>\r\n</ul>'),
('userdocuments', 'The user''s document folder. These are the default paths:\r\n<ul>\r\n<li>XP: C:\\Documents and Settings\\%USERNAME%\\My Documents</li>\r\n<li>Vista, 7, 8: C:\\Users\\%USERNAME%\\Documents</li>\r\n</ul>'),
('userprofile', 'This folder contains all the files related to a particular user. Usually found at:\r\n<ul>\r\n<li>XP: C:\\Documents and Settings\\%USERNAME%</li>\r\n<li>Vista, 7 & 8: C:\\Users\\%USERNAME%</li>\r\n<li>Linux: /home/%USERNAME%/</li>\r\n</ul>');
-- --------------------------------------------------------
--
-- Table structure for table `game_files`
--
CREATE TABLE IF NOT EXISTS `game_files` (
`type` varchar(32) NOT NULL,
`id` varchar(32) NOT NULL,
`path` longtext,
`filename` longtext,
`modified_after` datetime DEFAULT NULL,
`parent` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `parent` (`parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_file_types`
--
CREATE TABLE IF NOT EXISTS `game_file_types` (
`game_version` varchar(32) NOT NULL,
`id` varchar(32) NOT NULL,
`name` varchar(50) NOT NULL DEFAULT 'Saves',
PRIMARY KEY (`id`),
UNIQUE KEY `game_version` (`game_version`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_identifiers`
--
CREATE TABLE IF NOT EXISTS `game_identifiers` (
`game_version` varchar(32) NOT NULL,
`path` longtext,
`filename` longtext,
KEY `game_version` (`game_version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_locations`
--
CREATE TABLE IF NOT EXISTS `game_locations` (
`id` varchar(32) NOT NULL,
`game_version` varchar(32) NOT NULL,
`append` longtext,
`detract` longtext,
`only_for` varchar(50) DEFAULT NULL,
`deprecated` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`,`game_version`),
KEY `game_version` (`game_version`),
KEY `os` (`only_for`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_location_parents`
--
CREATE TABLE IF NOT EXISTS `game_location_parents` (
`id` varchar(32) NOT NULL,
`parent_game_version` varchar(32) NOT NULL,
PRIMARY KEY (`id`),
KEY `parent_game_version` (`parent_game_version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_location_paths`
--
CREATE TABLE IF NOT EXISTS `game_location_paths` (
`id` varchar(32) NOT NULL,
`ev` varchar(50) NOT NULL,
`path` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `ev` (`ev`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_location_registry_keys`
--
CREATE TABLE IF NOT EXISTS `game_location_registry_keys` (
`id` varchar(32) NOT NULL,
`root` enum('classes_root','current_user','current_config','dyn_data','local_machine','performance_data','users') NOT NULL,
`key` longtext NOT NULL,
`value` longtext,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_location_shortcuts`
--
CREATE TABLE IF NOT EXISTS `game_location_shortcuts` (
`id` varchar(32) NOT NULL,
`ev` varchar(50) NOT NULL DEFAULT 'startmenu',
`path` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `ev` (`ev`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_playstation_codes`
--
CREATE TABLE IF NOT EXISTS `game_playstation_codes` (
`game_version` varchar(32) NOT NULL,
`prefix` varchar(4) NOT NULL,
`suffix` int(5) NOT NULL,
`append` longtext,
`type` longtext,
`disc` int(11) DEFAULT NULL,
KEY `game_version` (`game_version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_scummvm`
--
CREATE TABLE IF NOT EXISTS `game_scummvm` (
`game_version` varchar(32) NOT NULL,
`name` varchar(200) NOT NULL,
PRIMARY KEY (`game_version`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `game_versions`
--
CREATE TABLE IF NOT EXISTS `game_versions` (
`id` varchar(32) NOT NULL,
`name` varchar(50) NOT NULL,
`os` varchar(50) DEFAULT NULL,
`platform` varchar(50) DEFAULT NULL,
`region` varchar(3) DEFAULT NULL,
`media` varchar(50) DEFAULT NULL,
`release` varchar(50) DEFAULT NULL,
`title` longtext,
`comment` longtext,
`restore_comment` longtext,
`virtualstore` enum('ignore') DEFAULT NULL,
`detect` enum('required') DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`,`os`,`platform`,`region`,`media`,`release`),
KEY `os` (`os`),
KEY `platform` (`platform`),
KEY `media` (`media`),
KEY `region` (`region`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `update_history`
--
CREATE TABLE IF NOT EXISTS `update_history` (
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`changelog` longtext NOT NULL,
PRIMARY KEY (`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `update_history`
--
INSERT INTO `update_history` (`timestamp`, `changelog`) VALUES
('2012-06-28 18:33:24', 'First update for GameSave.Info'),
('2012-06-28 19:27:00', 'test');
-- --------------------------------------------------------
--
-- Table structure for table `version_medias`
--
CREATE TABLE IF NOT EXISTS `version_medias` (
`name` varchar(50) NOT NULL,
`description` longtext NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `version_medias`
--
INSERT INTO `version_medias` (`name`, `description`) VALUES
('CD', ''),
('Download', ''),
('Floppy', ''),
('GoG', ''),
('Steam', '');
-- --------------------------------------------------------
--
-- Table structure for table `version_operating_systems`
--
CREATE TABLE IF NOT EXISTS `version_operating_systems` (
`name` varchar(50) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `version_operating_systems`
--
INSERT INTO `version_operating_systems` (`name`, `description`) VALUES
('Android', 'Android'),
('DOS', 'DOS'),
('Linux', 'Linux'),
('OSX', 'OS X'),
('PS1', 'PlayStation'),
('PS2', 'PlayStation 2'),
('PS3', 'PlayStation 3'),
('PSP', 'PSP'),
('Windows', 'Windows'),
('WindowsVista', 'Windows Vista'),
('WindowsXP', 'Windows XP');
-- --------------------------------------------------------
--
-- Table structure for table `version_platforms`
--
CREATE TABLE IF NOT EXISTS `version_platforms` (
`name` varchar(50) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `version_platforms`
--
INSERT INTO `version_platforms` (`name`, `description`) VALUES
('Flash', 'Flash'),
('ScummVM', 'ScummVM'),
('SteamCloud', 'Steam Cloud');
-- --------------------------------------------------------
--
-- Table structure for table `version_regions`
--
CREATE TABLE IF NOT EXISTS `version_regions` (
`name` varchar(3) NOT NULL,
`description` text NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `version_regions`
--
INSERT INTO `version_regions` (`name`, `description`) VALUES
('ABW', ' Aruba'),
('AF', 'Africa'),
('AFG', ' Afghanistan'),
('AGO', ' Angola'),
('AIA', ' Anguilla'),
('ALA', ' Åland Islands'),
('ALB', ' Albania'),
('AND', ' Andorra'),
('ARE', ' United Arab Emirates'),
('ARG', ' Argentina'),
('ARM', ' Armenia'),
('AS', 'Asia'),
('ASM', ' American Samoa'),
('ATA', ' Antarctica'),
('ATF', ' French Southern Territories'),
('ATG', ' Antigua and Barbuda'),
('AUS', ' Australia'),
('AUT', ' Austria'),
('AZE', ' Azerbaijan'),
('BDI', ' Burundi'),
('BEL', ' Belgium'),
('BEN', ' Benin'),
('BES', 'Bonaire, Sint Eustatius and Saba'),
('BFA', ' Burkina Faso'),
('BGD', ' Bangladesh'),
('BGR', ' Bulgaria'),
('BHR', ' Bahrain'),
('BHS', ' Bahamas'),
('BIH', ' Bosnia and Herzegovina'),
('BLM', ' Saint Barthélemy'),
('BLR', ' Belarus'),
('BLZ', ' Belize'),
('BMU', ' Bermuda'),
('BOL', ' Bolivia, Plurinational State of'),
('BRA', ' Brazil'),
('BRB', ' Barbados'),
('BRN', ' Brunei Darussalam'),
('BTN', ' Bhutan'),
('BVT', ' Bouvet Island'),
('BWA', ' Botswana'),
('CAF', ' Central African Republic'),
('CAN', ' Canada'),
('CCK', ' Cocos (Keeling) Islands'),
('CHE', ' Switzerland'),
('CHL', ' Chile'),
('CHN', ' China'),
('CIV', ' Côte d''Ivoire'),
('CMR', ' Cameroon'),
('COD', ' Congo, the Democratic Republic of the'),
('COG', ' Congo'),
('COK', ' Cook Islands'),
('COL', ' Colombia'),
('COM', ' Comoros'),
('CPV', ' Cape Verde'),
('CRI', ' Costa Rica'),
('CUB', ' Cuba'),
('CUW', ' Curaçao'),
('CXR', ' Christmas Island'),
('CYM', ' Cayman Islands'),
('CYP', ' Cyprus'),
('CZE', ' Czech Republic'),
('DEU', ' Germany'),
('DJI', ' Djibouti'),
('DMA', ' Dominica'),
('DNK', ' Denmark'),
('DOM', ' Dominican Republic'),
('DZA', ' Algeria'),
('ECU', ' Ecuador'),
('EGY', ' Egypt'),
('ERI', ' Eritrea'),
('ESH', ' Western Sahara'),
('ESP', ' Spain'),
('EST', ' Estonia'),
('ETH', ' Ethiopia'),
('EU', 'Europe'),
('FIN', ' Finland'),
('FJI', ' Fiji'),
('FLK', ' Falkland Islands (Malvinas)'),
('FRA', ' France'),
('FRO', ' Faroe Islands'),
('FSM', ' Micronesia, Federated States of'),
('GAB', ' Gabon'),
('GBR', ' United Kingdom'),
('GEO', ' Georgia'),
('GGY', ' Guernsey'),
('GHA', ' Ghana'),
('GIB', ' Gibraltar'),
('GIN', ' Guinea'),
('GLP', ' Guadeloupe'),
('GMB', ' Gambia'),
('GNB', ' Guinea-Bissau'),
('GNQ', ' Equatorial Guinea'),
('GRC', ' Greece'),
('GRD', ' Grenada'),
('GRL', ' Greenland'),
('GTM', ' Guatemala'),
('GUF', ' French Guiana'),
('GUM', ' Guam'),
('GUY', ' Guyana'),
('HKG', ' Hong Kong'),
('HMD', ' Heard Island and McDonald Islands'),
('HND', ' Honduras'),
('HRV', ' Croatia'),
('HTI', ' Haiti'),
('HUN', ' Hungary'),
('IDN', ' Indonesia'),
('IMN', ' Isle of Man'),
('IND', ' India'),
('IOT', ' British Indian Ocean Territory'),
('IRL', ' Ireland'),
('IRN', ' Iran, Islamic Republic of'),
('IRQ', ' Iraq'),
('ISL', ' Iceland'),
('ISR', ' Israel'),
('ITA', ' Italy'),
('JAM', ' Jamaica'),
('JEY', ' Jersey'),
('JOR', ' Jordan'),
('JPN', ' Japan'),
('KAZ', ' Kazakhstan'),
('KEN', ' Kenya'),
('KGZ', ' Kyrgyzstan'),
('KHM', ' Cambodia'),
('KIR', ' Kiribati'),
('KNA', ' Saint Kitts and Nevis'),
('KOR', ' Korea, Republic of'),
('KWT', ' Kuwait'),
('LAO', ' Lao People''s Democratic Republic'),
('LBN', ' Lebanon'),
('LBR', ' Liberia'),
('LBY', ' Libya'),
('LCA', ' Saint Lucia'),
('LIE', ' Liechtenstein'),
('LKA', ' Sri Lanka'),
('LSO', ' Lesotho'),
('LTU', ' Lithuania'),
('LUX', ' Luxembourg'),
('LVA', ' Latvia'),
('MAC', ' Macao'),
('MAF', ' Saint Martin (French part)'),
('MAR', ' Morocco'),
('MCO', ' Monaco'),
('MDA', ' Moldova, Republic of'),
('MDG', ' Madagascar'),
('MDV', ' Maldives'),
('MEX', ' Mexico'),
('MHL', ' Marshall Islands'),
('MKD', ' Macedonia, the former Yugoslav Republic of'),
('MLI', ' Mali'),
('MLT', ' Malta'),
('MMR', ' Myanmar'),
('MNE', ' Montenegro'),
('MNG', ' Mongolia'),
('MNP', ' Northern Mariana Islands'),
('MOZ', ' Mozambique'),
('MRT', ' Mauritania'),
('MSR', ' Montserrat'),
('MTQ', ' Martinique'),
('MUS', ' Mauritius'),
('MWI', ' Malawi'),
('MYS', ' Malaysia'),
('MYT', ' Mayotte'),
('NA', 'North America'),
('NAM', ' Namibia'),
('NCL', ' New Caledonia'),
('NER', ' Niger'),
('NFK', ' Norfolk Island'),
('NGA', ' Nigeria'),
('NIC', ' Nicaragua'),
('NIU', ' Niue'),
('NLD', ' Netherlands'),
('NOR', ' Norway'),
('NPL', ' Nepal'),
('NRU', ' Nauru'),
('NZL', ' New Zealand'),
('OC', 'Oceania'),
('OMN', ' Oman'),
('PAK', ' Pakistan'),
('PAN', ' Panama'),
('PCN', ' Pitcairn'),
('PER', ' Peru'),
('PHL', ' Philippines'),
('PLW', ' Palau'),
('PNG', ' Papua New Guinea'),
('POL', ' Poland'),
('PRI', ' Puerto Rico'),
('PRK', ' Korea, Democratic People''s Republic of'),
('PRT', ' Portugal'),
('PRY', ' Paraguay'),
('PSE', ' Palestinian Territory, Occupied'),
('PYF', ' French Polynesia'),
('QAT', ' Qatar'),
('REU', ' Réunion'),
('ROU', ' Romania'),
('RUS', ' Russian Federation'),
('RWA', ' Rwanda'),
('SA', 'South America'),
('SAU', ' Saudi Arabia'),
('SDN', ' Sudan'),
('SEN', ' Senegal'),
('SGP', ' Singapore'),
('SGS', ' South Georgia and the South Sandwich Islands'),
('SHN', ' Saint Helena, Ascension and Tristan da Cunha'),
('SJM', ' Svalbard and Jan Mayen'),
('SLB', ' Solomon Islands'),
('SLE', ' Sierra Leone'),
('SLV', ' El Salvador'),
('SMR', ' San Marino'),
('SOM', ' Somalia'),
('SPM', ' Saint Pierre and Miquelon'),
('SRB', ' Serbia'),
('SSD', ' South Sudan'),
('STP', ' Sao Tome and Principe'),
('SUR', ' Suriname'),
('SVK', ' Slovakia'),
('SVN', ' Slovenia'),
('SWE', ' Sweden'),
('SWZ', ' Swaziland'),
('SXM', ' Sint Maarten (Dutch part)'),
('SYC', ' Seychelles'),
('SYR', ' Syrian Arab Republic'),
('TCA', ' Turks and Caicos Islands'),
('TCD', ' Chad'),
('TGO', ' Togo'),
('THA', ' Thailand'),
('TJK', ' Tajikistan'),
('TKL', ' Tokelau'),
('TKM', ' Turkmenistan'),
('TLS', ' Timor-Leste'),
('TON', ' Tonga'),
('TTO', ' Trinidad and Tobago'),
('TUN', ' Tunisia'),
('TUR', ' Turkey'),
('TUV', ' Tuvalu'),
('TWN', ' Taiwan, Province of China'),
('TZA', ' Tanzania, United Republic of'),
('UGA', ' Uganda'),
('UKR', ' Ukraine'),
('UMI', ' United States Minor Outlying Islands'),
('URY', ' Uruguay'),
('USA', ' United States'),
('UZB', ' Uzbekistan'),
('VAT', ' Holy See (Vatican City State)'),
('VCT', ' Saint Vincent and the Grenadines'),
('VEN', ' Venezuela, Bolivarian Republic of'),
('VGB', ' Virgin Islands, British'),
('VIR', ' Virgin Islands, U.S.'),
('VNM', ' Viet Nam'),
('VUT', ' Vanuatu'),
('WLF', ' Wallis and Futuna'),
('WSM', ' Samoa'),
('YEM', ' Yemen'),
('ZAF', ' South Africa'),
('ZMB', ' Zambia'),
('ZWE', ' Zimbabwe');
-- --------------------------------------------------------
--
-- Table structure for table `xml_cache`
--
CREATE TABLE IF NOT EXISTS `xml_cache` (
`exporter` varchar(50) NOT NULL,
`file` varchar(50) NOT NULL,
`contents` longtext NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`exporter`,`file`),
KEY `file` (`file`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `xml_cache`
--
INSERT INTO `xml_cache` (`exporter`, `file`, `contents`, `timestamp`) VALUES
('GameSaveInfo20', 'deprecated.xml', '<?xml version="1.0" encoding="UTF-8"?>\n<programs majorVersion="2" minorVersion="0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="games.xsd" date="2012-06-29T13:12:31"/>\n', '2012-06-29 13:12:31');
INSERT INTO `xml_cache` (`exporter`, `file`, `contents`, `timestamp`) VALUES
('GameSaveInfo20', 'games.xml', '<?xml version="1.0" encoding="UTF-8"?>\n<programs majorVersion="2" minorVersion="0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="games.xsd" date="2012-06-28T19:46:29">\n <game name="18WheelsOfSteelExtremeTrucker">\n <title>18 Wheels of Steel: Extreme Trucker</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="18 WoS Extreme Trucker"/>\n </locations>\n <files type="Saves">\n <save path="profile*"/>\n </files>\n <files type="Settings">\n <save filename="*">\n <except filename="extremetrucker.log"/>\n </save>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="25ToLife">\n <title>25 to Life</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="25 to Life"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames" filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="settings.ini"/>\n <save path="SaveGames" filename="*.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="4x4Hummer">\n <title>4x4 Hummer</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="4x4 hummer"/>\n </locations>\n <files type="Saves">\n <save path="Data\\profiles"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="7554">\n <title>7554</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="7554"/>\n <registry root="current_user" key="Software\\7554" value="BASE_PATH_7554"/>\n <shortcut ev="startmenu" path="Programs\\7554\\7554.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <files type="Settings">\n <save filename="setting.xml"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="AaaaaAAaaaAAAaaAAAAaAAAAA">\n <title>AaaaaAAaaaAAAaaAAAAaAAAAA!!!</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="AaaaaRecklessDisregard"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="AdventRising">\n <title>Advent Rising</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Advent Rising"/>\n <path ev="steamcommon" path="advent rising"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGADVENTRISING" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Advent" value="UninstallString"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Advent Rising\\Advent Rising.lnk" detract="System"/>\n </locations>\n <files type="Saves">\n <save path="System\\Saves"/>\n </files>\n <files type="Settings">\n <save path="System" filename="My*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AfterfallInsanity">\n <title>Afterfall: Insanity</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Afterfall InSanity"/>\n </locations>\n <files type="Saves">\n <save path="Binaries\\SaveData"/>\n <save path="RascalGame\\SaveData"/>\n </files>\n <files type="Settings">\n <save path="RascalGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AgeOfEmpires2">\n <title>Age of Empires II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Microsoft Games\\Age of Empires II"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Microsoft Games\\Age of Empires\\2.0" value="InstallationDirectory"/>\n <shortcut ev="startmenu" path="Programs\\Microsoft Games\\Age of Empires II\\Age of Empires II.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SaveGame"/>\n </files>\n <contributor>Samuel Barbour</contributor>\n </version>\n </game>\n <game name="AgeOfEmpires3" follows="AgeOfEmpires2">\n <title>Age of Empires III</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Age of Empires 3"/>\n </locations>\n <files type="Saves">\n <save path="Savegame"/>\n <save path="Users"/>\n </files>\n <contributor>SamuelTaylor</contributor>\n </version>\n </game>\n <game name="AgeOfMythology">\n <title>Age of Mythology</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Microsoft Games\\Age of Mythology"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Microsoft Games\\Age of Mythology\\1.0" value="AppPath"/>\n <shortcut ev="startmenu" path="Programs\\Microsoft Games\\Age of Mythology\\Age of Mythology.lnk"/>\n </locations>\n <files type="Saves">\n <save path="savegame" filename="*.rec"/>\n <save path="savegame" filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="AgeOfMythologyTheTitansExpansion" for="AgeOfMythology">\n <title>Age of Mythology: The Titans Expansion</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Age of Mythology"/>\n </locations>\n <files type="Saves">\n <save path="Savegame" filename="*.rcx"/>\n <save path="Savegame" filename="*.svx"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="AgeOfWonders">\n <title>Age of Wonders</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Age of Wonders"/>\n <path ev="installlocation" path="Triumph Studios\\Age of Wonders"/>\n <registry root="current_user" key="Software\\Triumph Studios\\Age of Wonders\\General" value="Root Directory"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGAOM1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\Age of Wonders\\Age of Wonders.lnk"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Age of Wonders\\Age of Wonders.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AIMRacing">\n <title>A.I.M. Racing</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\A.I.M. Racing"/>\n </locations>\n <files type="Saves">\n <save>\n <except path="My Music"/>\n </save>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="AlanWake">\n <title>Alan Wake</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="108710"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n <version os="Windows" media="GoG">\n <locations>\n <path ev="userdocuments" path="Remedy\\AlanWake_GOG_Version"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save filename="*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AlanWakesAmericanNightmare" follows="AlanWake">\n <title>Alan Wake''s American Nightmare</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="202750"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n <version os="Windows" media="GoG">\n <locations>\n <path ev="userdocuments" path="Remedy\\AmericanNightmare_GOG_Version"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save filename="*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Alice">\n <title>American McGee''s Alice</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="EA GAMES\\American McGee''s Alice"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Alice.exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save path="Base\\save"/>\n </files>\n <files type="Settings">\n <save path="Base" filename="*.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AliceMadnessReturns" follows="Alice">\n <title>Alice: Madness Returns</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Alice Madness Returns"/>\n </locations>\n <files type="Saves">\n <save path="AliceGame\\CheckPoint"/>\n </files>\n <files type="Settings">\n <save path="AliceGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AlienBreed2Assault">\n <title>Alien Breed 2: Assault</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\UnrealEngine3\\AlienBreed2AssaultGame"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <files type="Settings">\n <save path="Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AlienBreed3Descent" follows="AlienBreed2Assault">\n <title>Alien Breed 3: Descent</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\UnrealEngine3\\AlienBreed3DescentGame"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <files type="Settings">\n <save path="Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AlienBreedImpact" follows="AlienBreed3Descent">\n <title>Alien Breed: Impact</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\UnrealEngine3\\AlienBreedEp1Game"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <files type="Settings">\n <save path="Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AlienShooter2">\n <title>Alien Shooter: Vengeance</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="AlienShooter2 Saves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="Reloaded">\n <title>Alien Shooter 2: Reloaded</title>\n <locations>\n <path ev="userdocuments" path="AlienShooter2 Reloaded Saves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AliensVsPredator">\n <title>Aliens vs. Predator</title>\n <version os="Windows" release="Classic">\n <title>Aliens vs. Predator Classic</title>\n <locations>\n <path ev="localappdata" path="Rebellion\\AvP Classic"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AliensVsPredator2">\n <title>Aliens vs. Predator 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Fox\\Aliens vs. Predator 2"/>\n <registry root="local_machine" key="SOFTWARE\\Monolith Productions\\Aliens vs. Predator 2\\1.0" value="InstallDir"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\AVP2" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\Fox Interactive\\Aliens vs. Predator 2\\Aliens vs. Predator 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AliensVsPredator2010" follows="AliensVsPredator2">\n <title>Aliens vs. Predator (2010)</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="AliensVsPredator"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Michael Lamere</contributor>\n </version>\n </game>\n <expansion name="AliensVsPredator2PrimalHunt" for="AliensVsPredator2">\n <title>Aliens vs. Predator 2: Primal Hunt</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Fox\\Aliens versus Predator 2 - Primal Hunt"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\AVP2X" value="Directory"/>\n <registry root="local_machine" key="SOFTWARE\\Third Law Interactive\\Aliens versus Predator 2: Primal Hunt\\1.0" value="InstallDir"/>\n <shortcut ev="startmenu" path="Programs\\Fox Interactive\\Aliens versus Predator 2 - Primal Hunt\\Aliens versus Predator 2 - Primal Hunt.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="AlienSwarm">\n <title>Alien Swarm</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="630"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="AloneInTheDark">\n <title>Alone in the Dark</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Alone in the Dark\\INDARK"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGALONE1" value="PATH" append="INDARK"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Alone in the Dark\\Alone in the Dark.lnk" append="INDARK" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SAVE?.ITD"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AloneInTheDark2" follows="AloneInTheDark">\n <title>Alone in the Dark 2</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Alone in the Dark 2\\INDARK2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGALONE2" value="PATH" append="INDARK2"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Alone in the Dark 2\\Alone in the Dark 2.lnk" append="INDARK2" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SAVE?.ITD"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AloneInTheDark3" follows="AloneInTheDark2">\n <title>Alone in the Dark 3</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Alone in the Dark 3\\INDARK3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGALONE3" value="PATH" append="INDARK3"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Alone in the Dark 3\\Alone in the Dark 3.lnk" append="INDARK3" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="SAVE??" filename="SAVE?.ITD"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AloneInTheDarkTheNewNightmare" follows="AloneInTheDark3">\n <title>Alone in the Dark: The New Nightmare</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Alone in the Dark - The New Nightmare"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGALONEINTHEDARK" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Alone in the Dark - The New Nightmare\\Alone in the Dark - The New Nightmare.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AlphaCentauri">\n <title>Sid Meier''s Alpha Centauri</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Firaxis Games\\Sid Meier''s Alpha Centauri"/>\n <path ev="installlocation" path="GOG.com\\Sid Meiers Alpha Centauri"/>\n <path ev="installlocation" path="GOGcom\\Sid Meiers Alpha Centauri"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSIDMAIERSALPHACENTAURI" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\Sid Meier''s Alpha Centauri" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Sid Meier''s Alpha Centauri\\Sid Meier''s Alpha Centauri.lnk"/>\n </locations>\n <files type="Maps">\n <save path="maps" modified_after="2000-01-01T00:00:00"/>\n </files>\n <files type="Saves">\n <save filename="*.SAV"/>\n <save path="saves"/>\n </files>\n <files type="Scenarios">\n <save path="scenarios" modified_after="2000-01-01T00:00:00"/>\n </files>\n <files type="Settings">\n <save filename="Alpha Centauri.Ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AlphaProtocol">\n <title>Alpha Protocol</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Alpha Protocol"/>\n </locations>\n <files type="Saves">\n <save path="Checkpoints"/>\n <save path="Profile"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AlterEcho">\n <title>Alter Echo</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20465"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AlternativA">\n <title>AlternativA</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="33990"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Altitude">\n <title>Altitude</title>\n <version>\n <locations>\n <path ev="steamcommon" path="Altitude"/>\n </locations>\n <files type="Settings">\n <save path="config"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="AmerzoneTheExplorersLegacy">\n <title>Amerzone: The Explorer''s Legacy</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\AmerZone"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGAMERZONE" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGAMERZONEUS" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microfolie''s\\L''Amerzone\\1.0" value="res"/>\n <registry root="local_machine" key="SOFTWARE\\Microfolie''s\\L''Amerzone\\1.0" value="source"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\AmerZone - The Explorer''s Legacy\\AmerZone - The Explorer''s Legacy.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="Saved_*.bin"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AmnesiaTheDarkDescent">\n <title>Amnesia: The Dark Descent</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Amnesia"/>\n </locations>\n <files type="Saves">\n <save path="Main" filename="*.cfg"/>\n <save path="Main\\*"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Anachronox">\n <title>Anachronox</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Anachronox"/>\n <registry root="local_machine" key="SOFTWARE\\Eidos Interactive\\Anachronox" value="SourcePath"/>\n <shortcut ev="startmenu" path="Programs\\Eidos Interactive\\Anachronox\\Anachronox.lnk"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AndYetItMoves">\n <title>And Yet It Moves</title>\n <version media="Steam">\n <locations>\n <path ev="appdata" path="Broken Rules\\And Yet It Moves Steam"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AngelsOnline">\n <title>Angels Online</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Angels Online"/>\n <registry root="local_machine" key="SOFTWARE\\IGG Games\\Angels Online\\Settings" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Angels Online\\Angels Online.lnk"/>\n </locations>\n <files type="Settings">\n <save path="save\\cfg"/>\n </files>\n <comment>Settings only</comment>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="AngryBirdsSpace">\n <title>Angry Birds Space</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Rovio\\Angry Birds Space"/>\n </locations>\n <files type="Highscores">\n <save filename="highscores.lua"/>\n </files>\n <files type="Settings">\n <save filename="settings.lua"/>\n </files>\n <contributor>cheshhire</contributor>\n </version>\n </game>\n <game name="Anno1404">\n <title>Anno 1404</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Anno 1404"/>\n </locations>\n <files type="Saves">\n <save path="Savegames"/>\n </files>\n <contributor>Caleb Love</contributor>\n </version>\n </game>\n <game name="AnomalyWarzoneEarth">\n <title>Anomaly: Warzone Earth</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="91200"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="APBReloaded">\n <title>APB Reloaded</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GamersFirst\\APB Reloaded"/>\n <path ev="steamcommon" path="apb reloaded"/>\n <registry root="local_machine" key="SOFTWARE\\GamersFirst\\APB\\APB Reloaded" value="Installation Path"/>\n <shortcut ev="startmenu" path="Programs\\GamersFirst\\APB Reloaded\\APB Reloaded.lnk" detract="Launcher"/>\n </locations>\n <files type="Accounts">\n <save path="APBGame\\Config\\Account"/>\n </files>\n <files type="Settings">\n <save path="APBGame\\Config" filename="*.ini"/>\n <save path="APBGame\\Config\\Linux"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Aquanox">\n <title>Aquanox</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="AquaNox"/>\n </locations>\n <files type="Saves">\n <save filename="player*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Aquanox2" follows="Aquanox">\n <title>Aquanox 2: Revelation</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="AquaNox2"/>\n </locations>\n <files type="Saves">\n <save filename="*.an2"/>\n </files>\n <files type="Settings">\n <save filename="Config.txt"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Aquaria">\n <title>Aquaria</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Aquaria"/>\n <path ev="steamcommon" path="aquaria"/>\n <registry root="local_machine" key="SOFTWARE\\BITBLOT_Aquaria" value="Install_Dir"/>\n <shortcut ev="startmenu" path="Programs\\Aquaria\\Aquaria.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Dwight Holman</contributor>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="ArcaniaFallOfSetarrif">\n <title>ArcaniA: Fall of Setarrif</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="ArcaniA - AddOn"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ArcaniaGothic4">\n <title>ArcaniA: Gothic 4</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="ArcaniA - Gothic 4"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ArcanumOfSteamworksAndMagickObscura">\n <title>Arcanum: Of Steamworks and Magick Obscura</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Arcanum"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGARCANUM" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\AR_USENG" value="Directory"/>\n <registry root="local_machine" key="SOFTWARE\\Troika\\Arcanum" value="installed_to"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Arcanum Of Steamworks and Magick Obscura\\Arcanum Of Steamworks and Magick Obscura.lnk"/>\n </locations>\n <files type="Saves">\n <save path="modules\\Arcanum\\Save" filename="*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ARES">\n <title>A.R.E.S</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="ARES"/>\n </locations>\n <files type="Saves">\n <save>\n <except filename="config.ini"/>\n </save>\n </files>\n <files type="Settings">\n <save filename="config.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ArmA2" follows="ArmACombatOperations">\n <title>ArmA II</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="ArmA 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ArmACombatOperations">\n <title>ArmA: Combat Operations</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="ArmA"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ArmedForcesCorps">\n <title>Armed Forces Corps</title>\n <version os="Windows">\n <locations>\n <path ev="public" path="Documents\\City Interactive\\Armed Forces Corps"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ArxFatalis">\n <title>Arx Fatalis</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Arx Fatalis"/>\n <registry root="local_machine" key="SOFTWARE\\Arkane Studios\\Installed Apps\\arx fatalis" value="Folder"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGARXFATALIS" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Arx Fatalis\\Arx Fatalis.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="AssassinsCreed">\n <title>Assassin''s Creed</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30089"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Ubisoft\\Assassin''s Creed"/>\n </locations>\n <files type="Saves">\n <save path="Saved Games"/>\n </files>\n <files type="Settings">\n <save filename="*.ini"/>\n </files>\n <contributor>Joe Looney</contributor>\n </version>\n </game>\n <game name="AssassinsCreedBrotherhood" follows="AssassinsCreed">\n <title>Assassin''s Creed: Brotherhood</title>\n <version os="PS3" region="EUR">\n <ps_code prefix="BLES" suffix="00909"/>\n <contributor>AdmiringWorm</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Assassin''s Creed Brotherhood" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AssassinsCreedRevelations" follows="AssassinsCreedBrotherhood">\n <title>Assassin''s Creed: Revelations</title>\n <version os="PS3" region="EUR">\n <ps_code prefix="BLES" suffix="01384"/>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="AtomZombieSmasher">\n <title>Atom Zombie Smasher</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="AtomZombieData"/>\n </locations>\n <files type="Saves">\n <save path="profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Audiosurf">\n <title>Audiosurf</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="audiosurf"/>\n </locations>\n <files type="Scores">\n <save path="engine\\Scores"/>\n </files>\n <contributor>raize221</contributor>\n </version>\n </game>\n <game name="AvadonTheBlackFortress">\n <title>Avadon: The Black Fortress</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Spiderweb Software\\Avadon Saved Games"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AvatarTheGame">\n <title>James Cameron''s Avatar: The Game</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Avatar"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AvencastRiseOfTheMage">\n <title>Avencast: Rise of the Mage</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Avencast"/>\n <registry root="local_machine" key="SOFTWARE\\ClockStone\\Avencast" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\Avencast\\Avencast.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="AxisAndAllies">\n <title>Axis & Allies</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Hasbro Interactive\\Axis and Allies"/>\n <registry root="local_machine" key="SOFTWARE\\Hasbro Interactive\\Axis and Allies" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\Axis & Allies\\Axis & Allies.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>David Barbour</contributor>\n </version>\n </game>\n <game name="BackToTheFutureEpisode1ItsAboutTime">\n <title>Back to the Future: Episode 1: It''s About Time</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Episode 1"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="BackToTheFutureEpisode2GetTannen" follows="BackToTheFutureEpisode1ItsAboutTime">\n <title>Back to the Future: Episode 2: Get Tannen!</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Episode 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="BackToTheFutureEpisode3CitizenBrown" follows="BackToTheFutureEpisode2GetTannen">\n <title>Back to the Future: Episode 3: Citizen Brown</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Episode 3"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="BackToTheFutureEpisode4DoubleVisions" follows="BackToTheFutureEpisode3CitizenBrown">\n <title>Back to the Future: Episode 4: Double Visions</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\back to the future 104"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="BackToTheFutureEpisode5OUTATIME" follows="BackToTheFutureEpisode4DoubleVisions">\n <title>Back to the Future: Episode 5: OUTATIME</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Episode 5"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="BaldursGate">\n <title>Baldur''s Gate</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Baldurs Gate"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBALDURSGATE1" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\Baldur''s Gate" value="CurrentDirectory"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Baldur''s Gate\\Baldur''s Gate.lnk"/>\n </locations>\n <files type="Characters">\n <save path="Characters"/>\n </files>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="Baldur.ini"/>\n </files>\n <comment>Also archives expansion saves</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BaldursGate2" follows="BaldursGate">\n <title>Baldur''s Gate II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Baldurs Gate II"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBALDURSGATE2" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\Baldur''s Gate2" value="CurrentDirectory"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Baldur''s Gate II\\Baldur''s Gate II.lnk"/>\n </locations>\n <files type="Characters">\n <save path="characters"/>\n </files>\n <files type="Saves">\n <save path="save"/>\n </files>\n <files type="Settings">\n <save filename="baldur.ini"/>\n </files>\n <comment>Also archives expansion saves</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Ball">\n <title>The Ball</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\The Ball"/>\n </locations>\n <files type="Saves">\n <save path="UDKGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Bastion">\n <title>Bastion</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="107100"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Bastion" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BatmanArkhamAsylum">\n <title>Batman: Arkham Asylum</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Eidos\\Batman Arkham Asylum"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <restore_comment>Restoring saves for this game also requires restoring Game for Windows Account Data, which MASGAU automatically backs up in G4WAccountData.</restore_comment>\n <contributor>Michael Lamere</contributor>\n </version>\n <version os="Windows" release="GOTY">\n <title>Batman: Arkham Asylum GOTY</title>\n <locations>\n <path ev="userdocuments" path="Square Enix\\Batman Arkham Asylum GOTY"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <restore_comment>Restoring saves for this game also requires restoring Game for Windows Account Data, which MASGAU automatically backs up in G4WAccountData.</restore_comment>\n <contributor>Michael Lamere</contributor>\n </version>\n </game>\n <game name="BatmanArkhamCity" follows="BatmanArkhamAsylum">\n <title>Batman: Arkham City</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="WB Games\\Batman Arkham City"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <files type="Settings">\n <save path="BmGame\\Config"/>\n </files>\n <contributor>paul_taylor30</contributor>\n </version>\n </game>\n <game name="BattleArmorDivision">\n <title>B.A.D - Battle Armor Division</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="B.A.D Battle Armor Division"/>\n <shortcut ev="startmenu" path="Programs\\B.A.D Battle Armor Division\\BAD Battle Armor Division.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="*.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Battlefield3">\n <title>Battlefield 3</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Battlefield 3"/>\n </locations>\n <files type="Settings">\n <save path="settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BattlefieldBadcompany">\n <title>Battlefield: Bad Company</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30118"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BattlefieldBadCompany2" follows="BattlefieldBadcompany">\n <title>Battlefield: Bad Company 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BFBC2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BattleForMiddleEarth2">\n <title>The Battle For Middle Earth II</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="My Battle for Middle-earth(tm) II Files"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BattleForWesnoth">\n <title>Battle For Wesnoth</title>\n <version>\n <locations>\n <path ev="userprofile" path=".wesnoth"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BattleLA">\n <title>Battle: Los Angeles</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BattleLA Saves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BeachLife">\n <title>Beach Life</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Beach Life"/>\n <registry root="local_machine" key="SOFTWARE\\Eidos Interactive\\Beach Life" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Eidos Interactive\\Beach Life\\Beach Life.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="BeatHazard">\n <title>Beat Hazard</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="49600"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Bejeweled2Deluxe" follows="BejeweledDeluxe">\n <title>Bejeweled 2 Deluxe</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Steam\\Bejeweled2" only_for="WindowsVista"/>\n <path ev="steamcommon" path="bejeweled 2 deluxe" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="users"/>\n </files>\n <identifier path="users"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="BejeweledDeluxe">\n <title>Bejeweled Deluxe</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="PopCapGames\\Bejeweled" only_for="WindowsVista"/>\n <path ev="allusersprofile" path="Steam\\Bejeweled" only_for="WindowsVista"/>\n <path ev="steamcommon" path="bejeweled deluxe" only_for="WindowsXP"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Bejeweled Deluxe 1.87" value="UninstallString" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="userdata"/>\n </files>\n <identifier path="userdata"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BeneathASteelSky">\n <title>Beneath a Steel Sky</title>\n <version platform="ScummVM">\n <scummvm name="sky"/>\n <scummvm name="SKY-VM"/>\n <locations>\n <path ev="installlocation" path="GOG.com\\Beneath a Steel Sky"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBENEATH" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Beneath a Steel Sky\\Beneath a Steel Sky.lnk" detract="ScummVM"/>\n </locations>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BenThereDanThat">\n <title>Ben There, Dan That!</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Ben There Dan That"/>\n <path ev="steamcommon" path="ben there, dan that!"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{3CD921DC-FE10-404C-99DB-FA57A6FCB32E}_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Ben There Dan That\\Ben There Dan That.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="agssave.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BetOnSoldierBloodSport">\n <title>Bet on Soldier: Blood Sport</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Bet on Soldier"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Bet on Soldier_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Bet on Soldier\\Bet on Soldier.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Mods\\Bos\\Saves"/>\n </files>\n <files type="Settings">\n <save path="Mods\\Bos\\Settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BeyondGoodAndEvil">\n <title>Beyond Good & Evil</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20763"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUB" suffix="30394" append="-SALLY" type="Profile"/>\n <ps_code prefix="NPUB" suffix="30394" append="-SLOT"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Beyond Good and Evil"/>\n <path ev="installlocation" path="Ubisoft\\Beyond Good & Evil"/>\n <path ev="steamcommon" path="beyond good and evil"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBEYONDGOODANDEVIL" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Ubisoft\\Beyond Good & Evil" value="Install path"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Beyond Good and Evil\\Beyond Good and Evil.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Ubisoft\\Beyond Good & Evil\\Play Beyond Good & Evil.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n <save filename="sally.idx"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BeyondZork" follows="Zork3">\n <title>Beyond Zork: The Coconut of Quendor</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Zork Anthology\\Beyond Zork"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBEOYNDZORK1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Zork Anthology\\Beyond Zork - The Coconut of Quendor\\Beyond Zork - The Coconut of Quendor.lnk" append="Beyond Zork" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BionicCommandoRearmed">\n <title>Bionic Commando Rearmed</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="bionic commando rearmed"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="data\\settings"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="BioShock">\n <title>BioShock</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Bioshock"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BioShock2" follows="BioShock">\n <title>BioShock 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Bioshock2"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>Håvard Krüger</contributor>\n </version>\n </game>\n <game name="BlackAndWhite">\n <title>Black And White</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Games\\Black And White"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Black.exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BlacklightTangoDown">\n <title>Blacklight: Tango Down</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Blacklight-Tango Down"/>\n </locations>\n <files type="Saves">\n <save path="FOXGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BlackMarket">\n <title>Black Market</title>\n <version os="Windows">\n <locations>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Black Market_is1" value="InstallLocation"/>\n </locations>\n <files type="Saves">\n <save filename="save.dat"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BlackMirror2">\n <title>Black Mirror 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BlackMirror2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BlackwellConvergence" follows="BlackwellUnbound">\n <title>Blackwell Convergence</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Blackwell Convergence" only_for="WindowsVista"/>\n <path ev="steamcommon" path="blackwell convergence\\Saves"/>\n <path ev="userdocuments" path="My Saved Games\\Blackwell Convergence" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BlackwellDeception" follows="BlackwellConvergence">\n <title>Blackwell Deception</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Blackwell Deception" only_for="WindowsVista"/>\n <path ev="userdocuments" path="My Saved Games\\Blackwell Deception" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BlackwellLegacy">\n <title>The Blackwell Legacy</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Blackwell Legacy v1.7" only_for="WindowsVista"/>\n <path ev="steamcommon" path="blackwell legacy\\Saves"/>\n <path ev="userdocuments" path="My Saved Games\\Blackwell Legacy v1.7" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BlackwellUnbound" follows="BlackwellLegacy">\n <title>Blackwell Unbound</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Blackwell Unbound" only_for="WindowsVista"/>\n <path ev="steamcommon" path="blackwell unbound\\Saves"/>\n <path ev="userdocuments" path="My Saved Games\\Blackwell Unbound" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BladeKitten">\n <title>BladeKitten</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUB" suffix="30253"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BladeRunner">\n <title>Blade Runner</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="WESTWOOD\\BLADE"/>\n <shortcut ev="startmenu" path="Programs\\Westwood\\Blade Runner\\Blade Runner.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Blood2TheChosen" follows="OneUnitWholeBlood">\n <title>Blood II: The Chosen</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Blood II"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBLOOD2" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Monolith Productions\\Blood2\\1.0" value="WorkingDirectory"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Blood II - The Chosen\\Blood II - The Chosen.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BloodBowl">\n <title>Blood Bowl</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BloodBowl"/>\n </locations>\n <files type="Achievements">\n <save path="Saves" filename="Achievements*"/>\n </files>\n <files type="Exported Teams">\n <save path="Saves\\Teams"/>\n </files>\n <files type="Replays">\n <save path="Saves\\Replays"/>\n </files>\n <files type="Saves">\n <save>\n <except filename="*.log"/>\n <except filename="Config.xml"/>\n <except path="Cache\\3d"/>\n <except path="Saves" filename="Achievements*"/>\n <except path="Saves\\Replays"/>\n <except path="Saves\\Teams"/>\n <except path="Screenshots"/>\n <except path="Scripts"/>\n </save>\n </files>\n <files type="Screenshots">\n <save path="Screenshots"/>\n </files>\n <files type="Settings">\n <save filename="Config.xml"/>\n </files>\n <comment>Includes Blood Bowl Dark Elves Edition as well.</comment>\n <contributor>AvvA</contributor>\n </version>\n <version os="Windows" release="LegendaryEdition">\n <title>Blood Bowl: Legendary Edition</title>\n <locations>\n <path ev="userdocuments" path="BloodBowlLegendary"/>\n </locations>\n <files type="Achievements">\n <save path="Saves" filename="Achievements*"/>\n </files>\n <files type="Exported Teams">\n <save path="Saves\\Teams"/>\n </files>\n <files type="Replays">\n <save path="Saves\\Replays"/>\n </files>\n <files type="Saves">\n <save>\n <except filename="*.log"/>\n <except filename="Config.xml"/>\n <except path="Cache\\3d"/>\n <except path="Saves" filename="Achievements*"/>\n <except path="Saves\\Replays"/>\n <except path="Saves\\Teams"/>\n <except path="Screenshots"/>\n <except path="Scripts"/>\n </save>\n </files>\n <files type="Screenshots">\n <save path="Screenshots"/>\n </files>\n <files type="Settings">\n <save filename="Config.xml"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="BloodRayne">\n <title>BloodRayne</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\BloodRayne 1"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBLOODRAYNE1" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Terminal Reality\\BloodRayne" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\BloodRayne 1\\BloodRayne 1.lnk"/>\n </locations>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BloodRayne2" follows="BloodRayne">\n <title>BloodRayne 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\BloodRayne 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBLOODRAYNE2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\BloodRayne 2\\BloodRayne 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BloodStone007">\n <title>Blood Stone 007</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="bizarre creations\\blood stone"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Blur">\n <title>Blur</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="bizarre creations\\blur"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BookwormAdventureDeluxe">\n <title>Bookworm Adventures Deluxe</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Steam\\WinBAD" only_for="WindowsVista"/>\n <path ev="steamcommon" path="bookworm adventures deluxe" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="users"/>\n </files>\n <identifier path="users"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="Borderlands">\n <title>Borderlands</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Borderlands"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Botanicula">\n <title>Botanicula</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BotaniculaSaves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Bouncer">\n <title>The Bouncer</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20069"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Braid">\n <title>Braid</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="26800"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Braid"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BraveStoryNewTraveler">\n <title>Brave Story: New Traveler</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10279"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BreathOfDeath7">\n <title>Breath of Death VII: The Beginning</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="SavedGames\\BoDVIIPC\\Breath of Death VII"/>\n </locations>\n <files type="Saves">\n <save>\n <except filename="Settings"/>\n </save>\n </files>\n <files type="Settings">\n <save filename="Settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Brink">\n <title>Brink</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="22350"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BrokenSword1">\n <title>Broken Sword: The Shadow of the Templars</title>\n <version platform="ScummVM">\n <scummvm name="sword1"/>\n <locations>\n <path ev="installlocation" path="GOG.com\\Broken Sword - The Shadow of the Templars"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBROKENSWORD1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Broken Sword - The Shadow of the Templars\\Broken Sword - The Shadow of the Templars\\Broken Sword - The Shadow of the Templars.lnk" detract="ScummVM"/>\n </locations>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="DirectorsCut">\n <title>Broken Sword: The Shadow of the Templars - The Director''s Cut</title>\n <locations>\n <path ev="userdocuments" path="Broken Sword - Director''s Cut"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BrokenSword2" follows="BrokenSword1">\n <title>Broken Sword II: The Smoking Mirror</title>\n <version platform="ScummVM">\n <scummvm name="bsword2"/>\n <scummvm name="sword2"/>\n <locations>\n <path ev="installlocation" path="GOG.com\\Broken Sword II - The Smoking Mirror"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBROKENSWORD2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Broken Sword II - The Smoking Mirror\\Broken Sword II - The Smoking Mirror.lnk" detract="ScummVM"/>\n </locations>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="Remastered">\n <title>Broken Sword II: The Smoking Mirror - Remastered</title>\n <locations>\n <path ev="userdocuments" path="Broken Sword II - Remastered"/>\n </locations>\n <files type="Saves">\n <save filename="BS2_save*"/>\n </files>\n <files type="Settings">\n <save filename="settings.bin"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BrokenSword3TheSleepingDragon" follows="BrokenSword2">\n <title>Broken Sword: The Sleeping Dragon</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Broken Sword - The Sleeping Dragon"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGBROKENSWORD3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Broken Sword - The Sleeping Dragon\\Broken Sword - The Sleeping Dragon.lnk"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BrokenSword4TheAngelOfDeath" follows="BrokenSword3TheSleepingDragon">\n <title>Broken Sword: The Angel of Death</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Broken Sword - The Angel of Death"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="BrutalLegend">\n <title>Brütal Legend</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30330"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Bulletstorm">\n <title>Bulletstorm</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\BulletStorm\\StormGame"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <files type="Settings">\n <save path="Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Bully">\n <title>Bully</title>\n <version os="Windows">\n <title>Bully Scolarship Edition</title>\n <locations>\n <path ev="userdocuments" path="Bully Scholarship Edition"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BurnoutParadise">\n <title>Burnout Paradise</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Criterion Games\\Burnout Paradise"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="config.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="BusDriver">\n <title>Bus Driver</title>\n <version os="Windows">\n <title>Bus Driver</title>\n <locations>\n <path ev="userdocuments" path="Bus Driver"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CallOfCthulhuDarkCornersOfTheEarth">\n <title>Call of Cthulhu: Dark Corners of the Earth</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Bethesda\\Call of Cthulhu"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CallOfDuty">\n <title>Call of Duty</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="call of duty"/>\n </locations>\n <files type="Saves">\n <save path="main\\save"/>\n </files>\n <files type="Settings">\n <save path="main" filename="*.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CallOfDuty2" follows="CallOfDuty">\n <title>Call of Duty 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="call of duty 2"/>\n </locations>\n <files type="Saves">\n <save path="main\\players"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CallOfDuty4ModernWarfare">\n <title>Call of Duty 4: Modern Warfare</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Activision\\Call of Duty 4 - Modern Warfare"/>\n <path ev="steamcommon" path="call of duty 4"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\Call of Duty 4" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\Activision\\Call of Duty(R) 4 - Modern Warfare(TM)\\Call of Duty(R) 4 - Modern Warfare(TM) Singleplayer.lnk"/>\n </locations>\n <files type="Saves">\n <save path="players\\profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="CallOfDutyBlackOps" follows="CallOfDutyWorldAtWar">\n <title>Call of Duty: Black Ops</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Call of Duty - Black Ops"/>\n <path ev="steamcommon" path="call of duty black ops"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\Call of Duty Black Ops" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\Activision\\Call of Duty - Black Ops\\Call of Duty - Black Ops.lnk"/>\n </locations>\n <files type="Saves">\n <save path="players"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>javier.ark</contributor>\n </version>\n </game>\n <game name="CallOfDutyModernWarfare2" follows="CallOfDuty4ModernWarfare">\n <title>Call of Duty: Modern Warfare 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="call of duty modern warfare 2"/>\n </locations>\n <files type="Saves">\n <save path="players"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CallOfDutyModernWarfare3" follows="CallOfDutyModernWarfare2">\n <title>Call of Duty: Modern Warfare 3</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="call of duty modern warfare 3"/>\n </locations>\n <files type="Saves">\n <save path="players2\\save"/>\n </files>\n <files type="Settings">\n <save path="players2" filename="*"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <expansion name="CallOfDutyUnitedOffensive" for="CallOfDuty">\n <title>Call of Duty: United Offensive</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="call of duty\\uo"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <files type="Settings">\n <save filename="*.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </expansion>\n <game name="CallOfDutyWorldAtWar">\n <title>Call of Duty: World at War</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Activision\\CoDWaW"/>\n </locations>\n <files type="Saves">\n <save path="players"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CallOfJuarezBoundInBlood">\n <title>Call of Juarez: Bound in Blood</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Call of Juarez - Bound in Blood"/>\n </locations>\n <files type="Saves">\n <save path="Out\\profiles"/>\n <save path="Out\\save"/>\n </files>\n <contributor>Michael Lamere</contributor>\n </version>\n </game>\n <game name="CallOfJuarezTheCartel">\n <title>Call of Juarez: The Cartel</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="33420\\remote\\out"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Capsized">\n <title>Capsized</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="capsized"/>\n </locations>\n <files type="Saves">\n <save path="Content" filename="Config.xfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CarnivoresCityscape">\n <title>Carnivores: Cityscape</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Infogrames\\Carnivores Cityscape"/>\n <registry root="local_machine" key="SOFTWARE\\Sunstorm Interactive\\Carnivores Cityscape" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Carnivores Cityscape\\Carnivores Cityscape.lnk" detract="bin"/>\n </locations>\n <files type="Saves">\n <save path="Players"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Catan">\n <title>Catan</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUB" suffix="30236"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="CaveStoryPlus">\n <title>Cave Story+</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="cave story+"/>\n </locations>\n <files type="Profile">\n <save filename="Profile.dat"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Ceville">\n <title>Ceville</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Ceville"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Chaser">\n <title>Chaser</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Chaser"/>\n <path ev="steamcommon" path="chaser"/>\n <registry root="local_machine" key="SOFTWARE\\Cauldron\\Chaser" value="InstallDir"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGCHASER" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Chaser\\Chaser.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Chime">\n <title>Chime</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Chime"/>\n </locations>\n <files type="Saves">\n <save filename="*.gamesave"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="Chrome">\n <title>Chrome</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="chrome"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ChromeSpecForce" follows="Chrome">\n <title>Chrome: SpecForce</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="chrome specforce"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ChroniclesOfRiddickAssaultOnDarkAthena" follows="ChroniclesOfRiddickEscapeFromButcherBay">\n <title>The Chronicles of Riddick: Assault on Dark Athena</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Atari\\The Chronicles of Riddick - Assault on Dark Athena"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ChroniclesOfRiddickEscapeFromButcherBay">\n <title>The Chronicles of Riddick: Escape From Butcher Bay</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Starbreeze\\Riddick"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ChronoCross" follows="ChronoTrigger">\n <title>Chrono Cross</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="01041"/>\n <ps_code prefix="SLUS" suffix="01080"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ChronoTrigger">\n <title>Chrono Trigger</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="01363"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <mod name="CinematicMod10HL2" for="HalfLife2">\n <title>Cinematic Mod 10</title>\n <version os="Windows">\n <locations>\n <path ev="steamsourcemods" path="FAKEFACTORY_CM10\\hl2"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </mod>\n <mod name="CinematicMod10HL2Ep1" for="HalfLife2EpisodeOne">\n <title>Cinematic Mod 10</title>\n <version os="Windows">\n <locations>\n <path ev="steamsourcemods" path="FAKEFACTORY_CM10\\episodic"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </mod>\n <mod name="CinematicMod10HL2Ep2" for="HalfLife2EpisodeTwo">\n <title>Cinematic Mod 10</title>\n <version os="Windows">\n <locations>\n <path ev="steamsourcemods" path="FAKEFACTORY_CM10\\ep2"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </mod>\n <game name="CitiesInMotion">\n <title>Cities in Motion</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Cities In Motion"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save filename="*">\n <except filename="*.txt"/>\n </save>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Civilization">\n <title>Sid Meier''s Civilization</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Sid Meier''s Civilization Chronicles\\Sid Meier''s Civilization"/>\n <shortcut ev="startmenu" path="Programs\\Firaxis Games\\Sid Meier''s Civilization Chronicles\\Launch Sid Meier''s Civilization.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Civilization2" follows="Civilization">\n <title>Sid Meier''s Civilization II</title>\n <version os="Windows" release="MultiplayerGold">\n <title>Sid Meier''s Civilization II: Multiplayer Gold</title>\n <locations>\n <path ev="installlocation" path="Sid Meier''s Civilization Chronicles\\Sid Meier''s Civilization II Multiplayer Gold"/>\n <shortcut ev="startmenu" path="Programs\\Firaxis Games\\Sid Meier''s Civilization Chronicles\\Launch Sid Meier''s Civilization II - Multiplayer Gold.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="TestOfTime">\n <title>Sid Meier''s Civilization II: Test of Time</title>\n <locations>\n <path ev="installlocation" path="Sid Meier''s Civilization Chronicles\\Civilization II Test of Time"/>\n <shortcut ev="startmenu" path="Programs\\Firaxis Games\\Sid Meier''s Civilization Chronicles\\Launch Civilization II - Test of Time.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Civilization3" follows="Civilization2">\n <title>Sid Meier''s Civilization III</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Firaxis Games\\Civilization III Complete"/>\n <registry root="local_machine" key="SOFTWARE\\Infogrames Interactive\\Civilization III" value="Install_Path"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="Civilization3.Ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="Civilization3Conquests" for="Civilization3">\n <title>Sid Meier''s Civilization III: Conquests</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Firaxis Games\\Civilization III Complete\\Conquests"/>\n <registry root="local_machine" key="SOFTWARE\\Infogrames\\Conquests" value="Install_Path"/>\n <shortcut ev="startmenu" path="Programs\\Firaxis Games\\Civilization III Complete Edition\\Civilization III Complete Edition.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="conquests.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <expansion name="Civilization3PlayTheWorld" for="Civilization3">\n <title>Sid Meier''s Civilization III: Play The World</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Firaxis Games\\Civilization III Complete\\civ3PTW"/>\n <registry root="local_machine" key="SOFTWARE\\Infogrames\\Civ3PTW" value="Install_Path"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="ptw.ini"/>\n </files>\n <identifier path="Saves"/>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="Civilization4" follows="Civilization3">\n <title>Sid Meier''s Civilization IV</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Sid Meier''s Civilization 4"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="Civilization4BeyondTheSword" for="Civilization4">\n <title>Sid Meier''s Civilization IV: Beyond the Sword</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Beyond the Sword"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="Civilization4Colonization">\n <title>Sid Meier''s Civilization IV: Colonization</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Sid Meier''s Civilization IV Colonization"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="Civilization4Warlords" for="Civilization4">\n <title>Sid Meier''s Civilization IV: Warlords</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Warlords"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="Civilization5" follows="Civilization4">\n <title>Sid Meier''s Civilization V</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="8930"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Sid Meier''s Civilization 5"/>\n </locations>\n <files type="Saves">\n <save path="ModdedSaves"/>\n <save path="Saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="CivilizationRevolution">\n <title>Sid Meier''s Civilization: Revolution</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30130"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ClassicCarRacing">\n <title>Classic Car Racing</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="classic car racing"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Data\\profiles"/>\n </files>\n <files type="Settings">\n <save path="Data" filename="AudioSettings.scr"/>\n <save path="Data" filename="CoDrvReader.scr"/>\n <save path="Data" filename="Controller.scr"/>\n <save path="Data" filename="DefaultControllers.scr"/>\n <save path="Data" filename="VideoSettings.scr"/>\n <save path="Data" filename="VideoSettingsGTI.scr"/>\n <save path="Data" filename="VideoSettingsGTI_MP.scr"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Clutch">\n <title>Clutch</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Clutch"/>\n </locations>\n <files type="Saves">\n <save path="profiles"/>\n </files>\n <files type="Settings">\n <save filename="*.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CodenameGordon">\n <title>Codename: Gordon</title>\n <version platform="Flash">\n <locations>\n <path ev="appdata" path="Macromedia\\Flash Player\\localhost"/>\n </locations>\n <files type="Settings">\n <save filename="hl2d_settings.sol"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="Cogs">\n <title>Cogs</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Lazy 8 Studios\\Cogs"/>\n </locations>\n <files type="Saves">\n <save filename="playerInfo.dat"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Colonization">\n <title>Sid Meier''s Colonization</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="MPS\\COLONIZE"/>\n <shortcut ev="startmenu" path="Programs\\Colonization\\Colonization.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <comment>Will probably require an Alternate Install Path</comment>\n <contributor>David Barbour</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="COLWIN"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="CommandAndConquer3KanesWrath" for="CommandAndConquer3TiberiumWars">\n <title>Command & Conquer 3: Kane''s Wrath</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Command & Conquer 3 Kane''s Wrath" only_for="WindowsVista"/>\n <path ev="userdocuments" path="Command & Conquer 3 Kane''s Wrath" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Paul Taylor</contributor>\n </version>\n </expansion>\n <game name="CommandAndConquer3TiberiumWars">\n <title>Command & Conquer 3: Tiberium Wars</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Command & Conquer 3 Tiberium Wars" only_for="WindowsVista"/>\n <path ev="userdocuments" path="Command & Conquer 3 Tiberium Wars" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Paul Taylor</contributor>\n </version>\n </game>\n <game name="CommandAndConquer4TiberianTwilight" follows="CommandAndConquer3TiberiumWars">\n <title>Command & Conquer 4: Tiberian Twilight</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Command and Conquer 4" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Håvard Krüger</contributor>\n </version>\n </game>\n <game name="CommandAndConquerGenerals">\n <title>Command & Conquer: Generals</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Command and Conquer Generals Data"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Statistics">\n <save filename="SkirmishStats.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="CommandAndConquerGeneralsZeroHour" for="CommandAndConquerGenerals">\n <title>Command & Conquer: Generals - Zero Hour</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Command and Conquer Generals Zero Hour Data"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Statistics">\n <save filename="SkirmishStats.ini"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </expansion>\n <game name="CommandAndConquerRedAlert3">\n <title>Command & Conquer: Red Alert 3</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Red Alert 3" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>cammkelly</contributor>\n </version>\n </game>\n <game name="CompanyOfHeroes">\n <title>Company of Heroes</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Company of Heroes"/>\n </locations>\n <files type="Saves">\n <save path="Savegames"/>\n </files>\n <files type="Settings">\n <save filename="*.lua"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CondemnedCriminalOrigins">\n <title>Condemned: Criminal Origins</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\Monolith Productions\\Condemned" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\Monolith Productions\\Condemned" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="settings.cfg"/>\n </files>\n <identifier path="Save"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="CorsixTH">\n <title>Corsix: Theme Hospital</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="CorsixTH"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="CounterStrikeConditionZero">\n <title>Counter-Strike: Condition Zero</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="condition zero\\czero"/>\n <registry root="local_machine" key="SOFTWARE\\Valve\\CZero" value="InstallPath" append="czero"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <identifier path="SAVE"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="CounterStrikeConditionZeroDeletedScenes" for="CounterStrikeConditionZero">\n <title>Counter-Strike: Condition Zero: Deleted Scenes</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="condition zero deleted scenes\\czeror"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <identifier path="SAVE"/>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="CrayonPhysicsDeluxe">\n <title>Crayon Physics Deluxe</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Crayon Physics Deluxe"/>\n </locations>\n <files type="Saves">\n <save path="My Solutions"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="CrisisCoreFinalFantasy7">\n <title>Crisis Core: Final Fantasy VII</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10336"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Cryostasis">\n <title>Cryostasis</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Cryostasis"/>\n <path ev="steamcommon" path="cryostasis"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGCRYOSTASIS" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Cryostasis\\Cryostasis.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Data\\Save"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Crysis">\n <title>Crysis</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Crysis"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Crysis2" follows="CrysisWarhead">\n <title>Crysis 2</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Crysis2" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="SaveGames"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CrysisWarhead" follows="Crysis">\n <title>Crysis Warhead</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Crysis_WARHEAD"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="SaveGames"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CrysisWars">\n <title>Crysis Wars</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Crysis Wars"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="CrystalsOfArborea">\n <title>Crystals of Arborea</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Ishar Compilation\\Crystals of Arborea"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGISHAR0" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Ishar Compilation\\Crystals of Arborea\\Crystals of Arborea.lnk" append="Crystals of Arborea" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.DAT"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="CSIHardEvidence">\n <title>CSI: Hard Evidence</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="csi hard evidence"/>\n <registry root="local_machine" key="HKEY_LOCAL_MACHINE\\SOFTWARE\\Telltale Games\\CSI4.exe" value="Install Location"/>\n </locations>\n <files type="Saves">\n <save filename="CSISaveGame*"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="CSINYTheGame">\n <title>CSI: NY The Game</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Ubisoft\\Legacy\\CSI"/>\n </locations>\n <files type="Saves">\n <save filename="csiconfig.dat"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="CthulhuSavesTheWorld">\n <title>Cthulhu Saves The World</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="SavedGames\\CSTW\\Cthulhu Saves the World"/>\n </locations>\n <files type="Saves">\n <save>\n <except filename="Settings"/>\n </save>\n </files>\n <files type="Settings">\n <save filename="Settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="CursedMountain">\n <title>Cursed Mountain</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Deep Silver\\Cursed Mountain"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="settings.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Cyberstorm">\n <title>Missionforce: Cyberstorm</title>\n <version os="Windows">\n <locations>\n <path ev="altsavepaths"/>\n <path ev="userdocuments" path="Cyberstorm"/>\n </locations>\n <files type="Saves">\n <save filename="*.cbs"/>\n </files>\n <identifier filename="*.cbs"/>\n <comment>Checks for saves in Documents\\Cyberstorm and Alt. Save Paths</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Cyberstorm2" follows="Cyberstorm">\n <title>Cyberstorm 2: Corporate Wars</title>\n <version os="Windows">\n <locations>\n <path ev="altsavepaths"/>\n <path ev="userdocuments" path="Cyberstorm 2"/>\n </locations>\n <files type="Saves">\n <save filename="*.cbs"/>\n </files>\n <identifier filename="*.cbs"/>\n <comment>Checks for saves in Documents\\Cyberstorm 2 and Alt. Save Paths</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Daikatana">\n <title>Daikatana</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Eidos Interactive\\Daikatana"/>\n <registry root="local_machine" key="SOFTWARE\\Eidos Interactive\\Daikatana\\1.00.000" value="SourcePath"/>\n </locations>\n <files type="Saves">\n <save path="data\\save"/>\n </files>\n <files type="Settings">\n <save path="data" filename="*.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DangerousHighSchoolGirlsInTrouble">\n <title>Dangerous High School Girls In Trouble!</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="dangerous high school girls in trouble"/>\n </locations>\n <files type="Saves">\n <save path="prog\\data\\Mousechief\\RPBG\\DHSGiT_v1_0_0"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DarkCloud">\n <title>Dark Cloud</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97111"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DarkCloud2" follows="DarkCloud">\n <title>Dark Cloud 2</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97213"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DarkestOfDays">\n <title>Darkest Of Days</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Darkest of Days"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{3D6293F2-53DA-45A1-B7F4-1843CA3B2658}" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Games\\Darkest of Days\\Play Darkest of Days.lnk"/>\n </locations>\n <files type="Saves">\n <save path="base\\save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DarkFall2LightsOut" follows="DarkFallTheJournal">\n <title>Dark Fall II: Lights Out</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Dark Fall 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DarkFallTheJournal">\n <title>Dark Fall: The Journal</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Dark Fall"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DarkHorizon">\n <title>Dark Horizon</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Paradox Interactive\\Dark Horizon"/>\n <registry root="local_machine" key="SOFTWARE\\Paradox Interactive\\Dark Horizon" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Paradox Interactive\\Dark Horizon\\Dark Horizon.lnk"/>\n </locations>\n <files type="Saves">\n <save path="data\\profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DarkMessiahMightandMagic">\n <title>Dark Messiah Might and Magic</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="dark messiah might and magic single player"/>\n <registry root="local_machine" key="SOFTWARE\\Ubisoft\\Dark Messiah of Might and Magic" value="Install Location"/>\n </locations>\n <files type="Saves">\n <save path="mm\\SAVE"/>\n </files>\n <identifier path="mm\\SAVE"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Darkness">\n <title>The Darkness</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30035"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Darkness2" follows="Darkness">\n <title>The Darkness II</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="DarknessII"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DarknessWithin">\n <title>Darkness Within</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Iceberg Interactive\\Darkness Within"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Darkness Within: In Pursuit of Loath Nolder_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Iceberg Interactive\\Darkness Within\\Darkness Within.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <files type="Settings">\n <save filename="config.txt"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DarknessWithin2" follows="DarknessWithin">\n <title>Darkness Within 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Iceberg Interactive\\Darkness Within 2"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Darkness Within 2: The Dark Lineage_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Iceberg Interactive\\Darkness Within 2\\Darkness Within 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DarkScavenger">\n <title>Dark Scavenger</title>\n <version platform="Flash">\n <locations>\n <path ev="flashshared" path="localhost\\Games\\Dark Scavenger\\Dark Scavenger.exe"/>\n </locations>\n <files type="Saves">\n <save filename="DarkScavenger_Dellida.sol"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DarkSector">\n <title>Dark Sector</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Dark Sector"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Darksiders">\n <title>Darksiders</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Darksiders"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Darkspore">\n <title>Darkspore</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="DarksporeData"/>\n </locations>\n <files type="Creatures">\n <save path="Creatures"/>\n </files>\n <files type="Settings">\n <save path="Preferences"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="DarkstarOne">\n <title>Darkstar One</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Ascaron Entertainment\\Darkstar One"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Darkstone">\n <title>Darkstone</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Delphine Software\\Darkstone"/>\n <registry root="local_machine" key="SOFTWARE\\DelphineSoft\\Darkstone\\CurrentVersion\\Darkstone" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Darkstone\\Darkstone.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>David Barbour</contributor>\n </version>\n </game>\n <game name="DarkVoid">\n <title>Dark Void</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Airtight\\Dark Void"/>\n </locations>\n <files type="Saves">\n <save filename="profile.dvp"/>\n <save path="SavedGames"/>\n </files>\n <files type="Settings">\n <save path="SkyGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Darwinia">\n <title>Darwinia</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Darwinia" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="users"/>\n </files>\n <files type="Settings">\n <save filename="preferences.txt"/>\n <save filename="user_input_preferences.txt"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="Daxter">\n <title>Daxter</title>\n <version os="PSP" region="USA">\n <ps_code prefix="UCUS" suffix="98618"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DeadIsland">\n <title>Dead Island</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="91310"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DeadNation">\n <title>Dead Nation</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80358"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DeadRising2">\n <title>Dead Rising 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Dead Rising 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DeadSpace">\n <title>Dead Space</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30177"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Electronic Arts\\Dead Space"/>\n </locations>\n <files type="Saves">\n <save filename="*.deadspacesaved"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DeadSpace2" follows="DeadSpace">\n <title>Dead Space 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="EA Games\\Dead Space 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DearEsther">\n <title>Dear Esther</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="203810"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DeathToSpiesMomentOfTruth">\n <title>Death to Spies: Moment of Truth</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Smersh_MT"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DeathTrackResurrection">\n <title>Death Track: Resurrection</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Skyfallen Entertaiment\\DeathTrack"/>\n </locations>\n <files type="Saves">\n <save path="Profile*"/>\n </files>\n <files type="Settings">\n <save path="Config"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="DeepBlackReloaded">\n <title>Deep Black Reloaded</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="DeepBlackReloaded"/>\n </locations>\n <files type="Saves">\n <save filename="default"/>\n </files>\n <files type="Settings">\n <save filename="userrender.ini"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="DefenseGridTheAwakening">\n <title>Defense Grid: The Awakening</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="18500"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="DemonStone">\n <title>Demon Stone</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Demon Stone"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDEMONSTONE" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Demon Stone\\Demon Stone.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="*.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DepthHunter">\n <title>Depth Hunter</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="DepthHunter"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Descent">\n <title>Descent</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GAMES\\DESCENT"/>\n <path ev="installlocation" path="GOG.com\\Descent and Descent 2\\Descent"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDESCENT" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Descent and Descent 2\\Descent\\Documents\\Readme.lnk"/>\n </locations>\n <files type="Replays">\n <save filename="*.DEM"/>\n </files>\n <files type="Saves">\n <save filename="*.PLR"/>\n <save filename="*.SG*"/>\n </files>\n <files type="Settings">\n <save filename="DESCENT.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00037"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Descent2" follows="Descent">\n <title>Descent II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GAMES\\DESCENT2"/>\n <path ev="installlocation" path="GOG.com\\Descent and Descent 2\\Descent 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDESCENT2" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\PARALLAX\\DESCENT II\\1.1\\INSTALL" value="WINPATH"/>\n <shortcut ev="startmenu" path="Programs\\Games\\Descent II Win95.lnk"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Descent and Descent 2\\Descent 2\\Documents\\Readme.lnk"/>\n </locations>\n <files type="Replays">\n <save path="DEMOS"/>\n </files>\n <files type="Saves">\n <save filename="*.PLR"/>\n <save filename="*.SG*"/>\n </files>\n <files type="Settings">\n <save filename="DESCENT.CFG"/>\n </files>\n <comment>Includes Descent II: The Vertigo Series</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Descent3" follows="Descent2">\n <title>Descent³</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Games\\Descent3"/>\n <path ev="installlocation" path="GOG.com\\Descent 3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDESCENT3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Descent 3\\Descent 3.lnk"/>\n </locations>\n <files type="Pilots">\n <save filename="*.plt"/>\n </files>\n <files type="Replays">\n <save path="demo" filename="*.dem"/>\n </files>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DescentFreeSpaceTheGreatWar">\n <title>Descent: FreeSpace - The Great War</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Games\\FreeSpace"/>\n <path ev="installlocation" path="GOG.com\\Freespace"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGFREESPACE" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Freespace\\Freespace.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Players"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DescentMaximum" follows="Descent">\n <title>Descent: Maximum</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00460"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Desperados">\n <title>Desperados</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Infogrames\\Desperados"/>\n <registry root="local_machine" key="SOFTWARE\\Spellbound Software\\Desperados 1.0" value="InstallPath"/>\n </locations>\n <files type="Saves">\n <save path="Game\\Data\\Savegame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Desperados2" follows="Desperados">\n <title>Desperados 2: Cooper''s Revenge</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Cooper''s Revenge"/>\n </locations>\n <files type="Saves">\n <save path="Savegame"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Deus">\n <title>Deus</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Robinson''s Requiem Collection\\Deus"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDEUS" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Robinson''s Requiem Collection\\Deus\\Deus.lnk" append="Deus" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.dat"/>\n <save filename="SAVE*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DeusEx">\n <title>Deus Ex</title>\n <version os="PS2" region="USA">\n <title>Deus Ex: The Conspiracy</title>\n <ps_code prefix="SLUS" suffix="20111"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="DeusEx"/>\n <path ev="installlocation" path="GOG.com\\Deus Ex"/>\n <path ev="steamcommon" path="deus ex"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDEUSX" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Unreal Technology\\Installed Apps\\Deus Ex" value="Folder"/>\n <shortcut ev="startmenu" path="Programs\\Deus Ex\\Play Deus Ex.lnk" detract="System"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Deus Ex GOTY\\Deus Ex GOTY.lnk" detract="System"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="System" filename="*.ini"/>\n </files>\n <identifier path="Save"/>\n <contributor>SanMadJack</contributor>\n </version>\n <comment>The best game EVER!</comment>\n </game>\n <game name="DeusExHumanRevolution" follows="DeusExInvisibleWar">\n <title>Deus Ex: Human Revolution</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="28050"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="DeusExHumanRevolutionTheMissingLink" for="DeusExHumanRevolution">\n <title>Deus Ex: Human Revolution - The Missing Link</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="201280"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="DeusExInvisibleWar" follows="DeusEx">\n <title>Deus Ex: Invisible War</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Deus Ex - Invisible War"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DevilMayCry">\n <title>Devil May Cry</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20216"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DevilMayCry2" follows="DevilMayCry">\n <title>Devil May Cry 2</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20484"/>\n <ps_code prefix="SLUS" suffix="20627"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DevilMayCry3DantesAwakening" follows="DevilMayCry2">\n <title>Devil May Cry 3: Dante''s Awakening</title>\n <version os="PS2" region="USA" release="SpecialEdition">\n <title>Devil May Cry 3: Dante''s Awakening: Special Edition</title>\n <ps_code prefix="SLUS" suffix="21361"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DevilMayCry4" follows="DevilMayCry3DantesAwakening">\n <title>Devil May Cry 4</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30092"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Diablo">\n <title>Diablo</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Diablo"/>\n <registry root="local_machine" key="SOFTWARE\\Blizzard Entertainment\\Archives" value="DiabloInstall"/>\n <registry root="local_machine" key="SOFTWARE\\Blizzard Entertainment\\Diablo\\DelOpt0" value="Path0"/>\n <shortcut ev="startmenu" path="Programs\\Diablo\\Diablo.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sv"/>\n </files>\n <contributor>Mark Barbour</contributor>\n </version>\n </game>\n <game name="Diablo2" follows="Diablo">\n <title>Diablo II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Diablo II"/>\n <registry root="local_machine" key="SOFTWARE\\Blizzard Entertainment\\Diablo II" value="InstallPath"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="DiabloHellfire" for="Diablo">\n <title>Diablo: Hellfire</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="SIERRA\\HELLFIRE"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\HELLFIRE" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\Sierra\\Hellfire.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.hsv"/>\n </files>\n <contributor>Mark Barbour</contributor>\n </version>\n </expansion>\n <game name="DinnerDate">\n <title>Dinner Date</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="dinner date"/>\n </locations>\n <files type="Saves">\n <save path="user"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DinsCurse">\n <title>Din''s Curse</title>\n <version>\n <locations>\n <path ev="localappdata" path="DinsCurse"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DirgeOfCerberusFinalFantasy7">\n <title>Dirge of Cerberus: Final Fantasy VII</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21419"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DiRT">\n <title>DiRT</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="dirt"/>\n </locations>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DiRT2" follows="DiRT">\n <title>DiRT 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\DiRT2"/>\n </locations>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>Snap_shot</contributor>\n </version>\n </game>\n <game name="DiRT3" follows="DiRT2">\n <title>DiRT 3</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\DiRT3"/>\n </locations>\n <files type="Benchmarks">\n <save path="benchmarks"/>\n </files>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Disciples3">\n <title>Disciples III: Renaissance</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\DisciplesIII"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="user.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Disgaea2CursedMemories" follows="DisgaeaHourOfDarkness">\n <title>Disgaea 2: Cursed Memories</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21397"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DisgaeaHourOfDarkness">\n <title>Disgaea: Hour of Darkness</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20666"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DissidiaFinalFantasy">\n <title>Dissidia: Final Fantasy</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10437"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Divinity2DragonKnightSaga">\n <title>Divinity II: Dragon Knight Saga</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Divinity 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DocClockTheToastedSandwichOfTime">\n <title>Doc Clock: The Toasted Sandwich of Time</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="57800"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="DocClockGame"/>\n </locations>\n <files type="Settings">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="DontTakeItPersonallyBabeItJustAintYourStory">\n <title>don''t take it personally, babe, it just ain''t your story</title>\n <version>\n <locations>\n <path ev="appdata" path="RenPy\\digital2-1298756237"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Doom">\n <title>Doom</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="DOOM Collector''s Edition\\Ultimate Doom"/>\n </locations>\n <files type="Saves">\n <save filename="*.zds"/>\n </files>\n <contributor>Kee715</contributor>\n </version>\n </game>\n <game name="Doom2" follows="Doom">\n <title>Doom II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="DOOM Collector''s Edition\\Doom2"/>\n </locations>\n <files type="Saves">\n <save filename="*.zds"/>\n </files>\n <contributor>Kee715</contributor>\n </version>\n </game>\n <game name="Doom3" follows="Doom2">\n <title>Doom 3</title>\n <version os="Windows" virtualstore="ignore" detect="required">\n <locations>\n <path ev="installlocation" path="DOOM 3"/>\n <path ev="steamcommon" path="doom 3"/>\n <registry root="local_machine" key="SOFTWARE\\id\\Doom 3" value="InstallPath"/>\n </locations>\n <files type="Saves">\n <save path="base\\savegames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Downfall">\n <title>Downfall</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Downfall" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DragonAge2" follows="DragonAgeOrigins">\n <title>Dragon Age II</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BioWare\\Dragon Age 2"/>\n </locations>\n <files type="Saves">\n <save path="Characters"/>\n </files>\n <files type="Settings">\n <save path="Settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DragonAgeOrigins">\n <title>Dragon Age: Origins</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BioWare\\Dragon Age"/>\n </locations>\n <files type="Saves">\n <save path="Characters"/>\n </files>\n <files type="Settings">\n <save path="Settings" filename="DragonAge.ini"/>\n <save path="Settings" filename="KeyBindings.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DragonQuest8JourneyOfTheCursedKing">\n <title>Dragon Quest VIII: Journey of the Cursed King</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21207"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Dragonshard">\n <title>Dragonshard</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Dragonshard"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDNDDRAGONSHARD" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Dungeons and Dragons - Dragonshard\\Dungeons and Dragons - Dragonshard.lnk"/>\n </locations>\n <files type="Saves">\n <save path="TriangleMeshes"/>\n </files>\n <files type="Settings">\n <save filename="DND.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Dragonsphere">\n <title>Dragonsphere</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Dragonsphere\\DRAGON"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDRAGONSPHERE" value="PATH" append="DRAGON"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Dragonsphere\\Dragonsphere.lnk" append="DRAGON" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="DRAG*.SAV"/>\n <save filename="SAVES.DIR"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DreamfallTheLongestJourney" follows="LongestJourney">\n <title>Dreamfall: The Longest Journey</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Dreamfall the Longest Journey"/>\n <path ev="installlocation" path="Micro Application\\Dreamfall"/>\n <path ev="steamcommon" path="dreamfall the longest journey"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Dreamfall the Longest Journey_is1" value="InstallLocation"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{D751B34C-058F-42EF-BE95-14EBB0D2C585}" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Dreamfall the Longest Journey\\Dreamfall the Longest Journey.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Micro Application\\Dreamfall\\Dreamfall - The Longest Journey.lnk"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save filename="prefs.dat"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Dreamkiller">\n <title>Dreamkiller</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Aspyr\\Dreamkiller"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="Config.txt"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Driver3">\n <title>Driv3r</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Atari\\DRIV3R"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save path="Configs"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="DriverParallelLines" follows="Driver3">\n <title>Driver: Parallel Lines</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Driver Parallel Lines"/>\n </locations>\n <files type="Saves">\n <save filename="*.DPLSave"/>\n </files>\n <files type="Settings">\n <save filename="*.DPLUser"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="DriverSanFrancisco" follows="DriverParallelLines">\n <title>Driver San Francisco</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Ubisoft\\Driver San Francisco"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DrugWarsMerchantsOfBrooklyn">\n <title>Drug Wars: Merchants of Brooklyn</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\MOB"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DukeNukemForever">\n <title>Duke Nukem Forever</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="57900"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DungeonDefenders">\n <title>Dungeon Defenders</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="Dungeon Defenders"/>\n </locations>\n <files type="Saves">\n <save path="Binaries\\Win32" filename="DunDefHeroes.dun "/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DungeonKeeper">\n <title>Dungeon Keeper</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Bullfrog\\Keeper"/>\n <path ev="installlocation" path="GOG.com\\Dungeon Keeper"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGDUNGEONKEEPERDOS" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Keeper" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Bullfrog\\Dungeon Keeper Gold\\Play Dungeon Keeper.lnk"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Dungeon Keeper\\Dungeon Keeper.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="Save">\n <except path="Save" filename="*.DAT"/>\n </save>\n </files>\n <files type="Settings">\n <save path="Save" filename="*.DAT"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="DungeonKeeper2" follows="DungeonKeeper">\n <title>Dungeon Keeper II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Bullfrog\\Dungeon Keeper II"/>\n </locations>\n <files type="Saves">\n <save path="Data\\Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="DungeonsAndDragonsDaggerdale">\n <title>Dungeons & Dragons: Daggerdale</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Daggerdale\\DnDGame"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <files type="Settings">\n <save path="Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DungeonSiege3">\n <title>Dungeon Siege III</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Dungeon Siege III"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="DungeonsOfDredmor">\n <title>Dungeons of Dredmor</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Gaslamp Games\\Dungeons of Dredmor"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n <save filename="last.txt"/>\n <save filename="loadsave.dat"/>\n </files>\n <files type="Scores">\n <save filename="hiscores.txt"/>\n </files>\n <files type="Settings">\n <save filename="config.txt"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Earth2140">\n <title>Earth 2140</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Earth 2140"/>\n <registry root="current_user" key="Software\\Reality Pump\\Earth 2140" value="Path"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEARTH2140" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Earth 2140\\Earth 2140.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Earth2150" follows="Earth2140">\n <title>Earth 2150</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Earth 2150 Trilogy\\Escape from the Blue Planet"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEARTH2150ESCAPE" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Topware\\Earth 2150\\BaseGame\\FileSystem" value="OutputDir"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Earth 2150 Trilogy\\Escape from the Blue Planet\\Escape from the Blue Planet.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Players"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Earth2150LostSouls" follows="Earth2150">\n <title>Earth 2150: Lost Souls</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Earth 2150 Trilogy\\Lost Souls"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEARTH2150LOSTSOULS" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Reality Pump\\LostSouls\\BaseGame\\FileSystem" value="OutputDir"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Earth 2150 Trilogy\\Lost Souls\\Lost Souls.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Players"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Earth2150TheMoonProject" follows="Earth2150LostSouls">\n <title>Earth 2150: The Moon Project</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Earth 2150 Trilogy\\The Moon Project"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEARTH2150MOONPROJECT" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Topware\\TheMoonProject\\BaseGame\\FileSystem" value="OutputDir"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Earth 2150 Trilogy\\The Moon Project\\The Moon Project.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Players"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Earth2160" follows="Earth2150TheMoonProject">\n <title>Earth 2160</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Earth 2160"/>\n </locations>\n <files type="Saves">\n <save path="Players"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="EarthwormJim3D">\n <title>Earthworm Jim 3D</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Earthworm Jim 3D"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEARTHWORMJIM3D" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Vis Interactive\\Earthworm Jim 3D" value="ExecutableLocation"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Earthworm Jim 3D\\Earthworm Jim 3D.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Echochrome">\n <title>Echochrome</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80134"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PSP" region="USA">\n <ps_code prefix="NPUG" suffix="80135"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Eets">\n <title>Eets</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="eets"/>\n </locations>\n <files type="Saves">\n <save path="User\\Profiles"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="ElderScrolls2Daggerfall">\n <title>The Elder Scrolls II: Daggerfall</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="DAGGER"/>\n </locations>\n <files type="Saves">\n <save path="SAVE*"/>\n </files>\n <contributor>Jetsetlemming</contributor>\n </version>\n </game>\n <game name="ElderScrolls3Morrowind" follows="ElderScrolls2Daggerfall">\n <title>The Elder Scrolls III: Morrowind</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Bethesda Softworks\\Morrowind"/>\n <path ev="steamcommon" path="morrowind"/>\n <registry root="local_machine" key="SOFTWARE\\Bethesda Softworks\\Morrowind" value="Installed Path"/>\n <shortcut ev="startmenu" path="Programs\\Bethesda Softworks\\Morrowind\\Morrowind.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="ElderScrolls4Oblivion" follows="ElderScrolls3Morrowind">\n <title>The Elder Scrolls IV: Oblivion</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30007"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Oblivion"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ElderScrolls5Skyrim" follows="ElderScrolls4Oblivion">\n <title>The Elder Scrolls V: Skyrim</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Skyrim"/>\n </locations>\n <files type="Saves">\n <save path="Saves">\n <except path="Saves" filename="*.tmp"/>\n </save>\n </files>\n <files type="Settings">\n <save filename="*.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Elefunk">\n <title>Elefunk</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80157"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="EliteForcesWWIIIwoJima">\n <title>Elite Forces: WWII Iwo Jima</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Games\\IwoJima"/>\n <registry root="current_user" key="Software\\3LV Games\\IwoJima Launcher\\1.0" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\Games\\WWII IwoJima\\WWII IwoJima.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="EmpireEarth">\n <title>Empire Earth</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Empire Earth Gold Edition\\Empire Earth"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEMPIREEARTH" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\EEARTH" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Empire Earth\\Empire Earth.lnk"/>\n </locations>\n <files type="Campaigns">\n <save path="Data\\Campaigns" modified_after="2001-10-09T00:00:00"/>\n </files>\n <files type="Civilizations">\n <save path="Users\\*\\Civilizations"/>\n </files>\n <files type="Saves">\n <save path="Data\\Saved Games"/>\n </files>\n <files type="Scenarios">\n <save path="Data\\Scenarios"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="EmpireEarth2" follows="EmpireEarth">\n <title>Empire Earth II</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Empire Earth II"/>\n </locations>\n <files type="Civs">\n <save path="CustomCivs"/>\n </files>\n <files type="Forces">\n <save path="CustomForces"/>\n </files>\n <files type="Maps">\n <save path="maps"/>\n </files>\n <files type="Saves">\n <save path="savegame*"/>\n </files>\n <files type="Scenarios">\n <save path="scenario"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="EmpireEarth2TheArtOfSupremacy" for="EmpireEarth2">\n <title>Empire Earth II: The Art of Supremacy</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Empire Earth II The Art of Supremacy"/>\n </locations>\n <files type="Civs">\n <save path="CustomCivs"/>\n </files>\n <files type="Forces">\n <save path="CustomForces"/>\n </files>\n <files type="Maps">\n <save path="maps"/>\n </files>\n <files type="Saves">\n <save path="savegame*"/>\n </files>\n <files type="Scenarios">\n <save path="scenario*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="EmpireEarth3" follows="EmpireEarth2">\n <title>Empire Earth III</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Empire Earth III"/>\n </locations>\n <files type="Civs">\n <save path="profiles\\*\\CustomCivs"/>\n </files>\n <files type="Maps">\n <save path="profiles\\*\\maps"/>\n </files>\n <files type="Saves">\n <save path="profiles\\*\\savegame*"/>\n </files>\n <files type="Scenarios">\n <save path="scenario"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="EmpireEarthTheArtOfConquest" for="EmpireEarth">\n <title>Empire Earth: The Art of Conquest</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Empire Earth Gold Edition\\Empire Earth - The Art of Conquest"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEMPIREEARTHADDON" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\EEAOC" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Empire Earth\\Empire Earth - The Art of Conquest.lnk"/>\n </locations>\n <files type="Campaigns">\n <save path="Data\\Campaigns" modified_after="2002-08-21T00:00:00"/>\n </files>\n <files type="Civilizations">\n <save path="Users\\*\\Civilizations"/>\n </files>\n <files type="Saves">\n <save path="Data\\Saved Games"/>\n </files>\n <files type="Scenarios">\n <save path="Data\\Scenarios"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="EmpireTotalWar">\n <title>Empire: Total War</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="The Creative Assembly\\Empire"/>\n </locations>\n <files type="Saves">\n <save path="save_games"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="EscapeFromMonkeyIsland">\n <title>Escape From Monkey Island</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20181"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="EschalonBook1">\n <title>Eschalon: Book I</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Eschalon Book 1 Saved Games"/>\n </locations>\n <files type="Saves">\n <save>\n <except path="tmp"/>\n </save>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="EschalonBook2" follows="EschalonBook1">\n <title>Eschalon: Book II</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Basilisk Games\\Book 2 Saved Games"/>\n </locations>\n <files type="Saves">\n <save>\n <except path="tmp"/>\n </save>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="EternalSonata">\n <title>Eternal Sonata</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30161"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Eufloria">\n <title>Eufloria</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="eufloria"/>\n </locations>\n <files type="Achievements">\n <save path="Resources" filename="achievements.bin"/>\n </files>\n <files type="Settings">\n <save path="Resources" filename="user.settings"/>\n </files>\n <files type="Stats">\n <save path="Resources" filename="stats.bin"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="EverlightOfMagicAndPower">\n <title>Everlight: Of Magic and Power</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="everlight"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="EvilGenius">\n <title>Evil Genius</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Evil Genius"/>\n <path ev="installlocation" path="GOG.com\\Evil Genius"/>\n <path ev="steamcommon" path="evil genius"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEVILGENIUS" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\VUGames\\Evil Genius\\1.0.0.0" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\Evil Genius\\Evil Genius.lnk" detract="ReleaseExe"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Evil Genius\\Evil Genius.lnk" detract="ReleaseExe"/>\n </locations>\n <files type="Saves">\n <save path="DynamicResources\\CodeGeneratedData"/>\n <save path="DynamicResources\\Layouts"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Evolva">\n <title>Evolva</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Evolva"/>\n <registry root="local_machine" key="SOFTWARE\\Computer Artworks\\Evolva\\1.0" value="InstallDir"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEVOLVA" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Evolva\\Evolva.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Genohunters"/>\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ExodusFromTheEarth">\n <title>Exodus from the Earth</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Exodus"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Explodemon">\n <title>Explodemon!</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="EXPLODEMON!"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="EYEDivineCybermancy">\n <title>E.Y.E: Divine Cybermancy</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="eye"/>\n </locations>\n <files type="Saves">\n <save path="EYE\\resource\\vgui\\save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="F22Lightning3">\n <title>F-22 Lightning 3</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="NovaLogic\\F-22 Lightning 3"/>\n <shortcut ev="startmenu" path="Programs\\NovaLogic\\F-22 Lightning 3\\F-22 Lightning 3.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="LSLOT*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Fable">\n <title>Fable: The Lost Chapters</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Fable"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Tattos">\n <save path="Tattoos"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Fable3" follows="Fable">\n <title>Fable III</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Lionhead Studios\\Fable 3" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Christian Hamann</contributor>\n </version>\n </game>\n <game name="FaeryLegendsOfAvalon">\n <title>Faery: Legends of Avalon</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Faery - Legends of Avalon"/>\n </locations>\n <files type="Saves">\n <save filename="*.fsav"/>\n </files>\n <files type="Settings">\n <save filename="*.txt"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Fahrenheit">\n <title>Fahrenheit</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="atari\\Fahrenheit Profile"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Fallout">\n <title>Fallout</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Fallout"/>\n <path ev="installlocation" path="Interplay\\Fallout"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\falloutw.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Fallout\\Fallout.lnk"/>\n </locations>\n <files type="Saves">\n <save path="DATA\\SAVEGAME"/>\n </files>\n <contributor>SanMadJack</contributor>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Fallout2" follows="Fallout">\n <title>Fallout 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="BlackIsle\\Fallout2"/>\n <path ev="installlocation" path="GOG.com\\Fallout 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGFALLOUT2" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\fallout2.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Fallout 2\\Fallout 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="data\\SAVEGAME"/>\n </files>\n <contributor>SanMadJack</contributor>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Fallout3" follows="FalloutTactics">\n <title>Fallout 3</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Fallout3"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FalloutNewVegas" follows="Fallout3">\n <title>Fallout: New Vegas</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\FalloutNV"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="*.ini"/>\n </files>\n <contributor>David Barbour</contributor>\n </version>\n </game>\n <game name="FalloutTactics" follows="Fallout2">\n <title>Fallout Tactics</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Fallout Tactics"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGFALLOUTTACTICS" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Fallout Tactics\\Fallout Tactics.lnk"/>\n </locations>\n <files type="Saves">\n <save path="core\\user"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="FarCry">\n <title>Far Cry</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Ubisoft\\Crytek\\Far Cry"/>\n <path ev="steamcommon" path="farcry"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{D6DBDC2A-E72C-4284-B6AD-6B3B61B4DABC}" value="InstallLocation"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FarCry2" follows="FarCry">\n <title>Far Cry 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Far Cry 2"/>\n </locations>\n <files type="BenchmarkResults">\n <save path="Benchmarks\\Results"/>\n </files>\n <files type="DownloadedMaps">\n <save path="user maps\\downloads"/>\n </files>\n <files type="Playbacks">\n <save path="Benchmarks\\Playbacks"/>\n </files>\n <files type="Saves">\n <save path="Saved Games"/>\n </files>\n <files type="ServerConfig">\n <save path="Server"/>\n </files>\n <files type="SettingsAndOnlineKey">\n <save filename="GamerProfile.xml"/>\n </files>\n <files type="UserMaps">\n <save path="user maps" filename="*.fc2map"/>\n </files>\n <comment>This also works with Far Cry 2 Fortune''s Edition.</comment>\n <contributor>Arc Angel</contributor>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="FarmFrenzy">\n <title>Farm Frenzy</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="farm frenzy"/>\n </locations>\n <files type="Saves">\n <save path="Data\\profiles"/>\n </files>\n <contributor>murasaki8</contributor>\n </version>\n </game>\n <game name="FarscapeTheGame">\n <title>Farscape The Game</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Farscape The Game"/>\n </locations>\n <files type="Saves">\n <save path="Save Games"/>\n </files>\n <files type="Settings">\n <save filename="options.lua"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FEAR2ProjectOrigin" follows="FEARFirstEncounterAssaultRecon">\n <title>F.E.A.R. 2: Project Origin</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="WBGames\\FEAR2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FEAR3" follows="FEAR2ProjectOrigin">\n <title>F.3.A.R.</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="21100"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="FearCombat">\n <title>F.E.A.R. Combat</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\Monolith Productions\\FEARCombat" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\Monolith Productions\\FEARCombat" only_for="WindowsVista"/>\n </locations>\n <files type="MODs">\n <save path="Custom"/>\n </files>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="*"/>\n <save path="Profiles"/>\n <save path="ServerOptions"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="FearEffect">\n <title>Fear Effect</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00920"/>\n <ps_code prefix="SLUS" suffix="01056"/>\n <ps_code prefix="SLUS" suffix="01057"/>\n <ps_code prefix="SLUS" suffix="01058"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FearEffect2" follows="FearEffect">\n <title>Fear Effect 2: Retro Helix</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="01266"/>\n <ps_code prefix="SLUS" suffix="01275"/>\n <ps_code prefix="SLUS" suffix="01276"/>\n <ps_code prefix="SLUS" suffix="01277"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="FEARExtractionPoint" for="FEARFirstEncounterAssaultRecon">\n <title>F.E.A.R.: Extraction Point</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\TimeGate Studios\\FEARXP" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\TimeGate Studios\\FEARXP" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="settings.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="FEARFirstEncounterAssaultRecon">\n <title>F.E.A.R.: First Encounter Assault Recon</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\Monolith Productions\\FEAR" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\Monolith Productions\\FEAR" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="settings.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FEARPerseusMandate" follows="FEARFirstEncounterAssaultRecon">\n <title>F.E.A.R.: Perseus Mandate</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\TimeGate Studios\\FEARXP2" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\TimeGate Studios\\FEARXP2" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="settings.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FeebleFiles">\n <title>The Feeble Files</title>\n <version platform="ScummVM">\n <scummvm name="feeble"/>\n <locations>\n <path ev="installlocation" path="GOG.com\\The Feeble Files"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGFEBBLEFILES" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\The Feeble Files\\The Feeble Files.lnk" detract="ScummVM"/>\n </locations>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FIFA11">\n <title>FIFA 11</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="FIFA 11"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Caleb Love</contributor>\n </version>\n </game>\n <game name="FinalDoom" follows="Doom2">\n <title>Final Doom</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="DOOM Collector''s Edition\\Final Doom"/>\n </locations>\n <files type="Saves">\n <save filename="*.zds"/>\n </files>\n <contributor>Kee715</contributor>\n </version>\n </game>\n <game name="FinalFantasy">\n <title>Final Fantasy</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10251"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasy10" follows="FinalFantasy9">\n <title>Final Fantasy X</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20312"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasy10-2" follows="FinalFantasy10">\n <title>Final Fantasy X-2</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20672"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasy12" follows="FinalFantasy10">\n <title>Final Fantasy XII</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20963"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasy13" follows="FinalFantasy12">\n <title>Final Fantasy XIII</title>\n <version os="PS3" region="USA">\n <ps_code prefix="MRTC" suffix="00003"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasy13-2" follows="FinalFantasy13">\n <title>Final Fantasy XIII-2</title>\n <version os="PS3" region="EUR">\n <ps_code prefix="BLES" suffix="01269"/>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="FinalFantasy2" follows="FinalFantasy">\n <title>Final Fantasy II</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10263"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasy4" follows="FinalFantasy2">\n <title>Final Fantasy IV</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="01360"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasy7" follows="FinalFantasy4">\n <title>Final Fantasy VII</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SCUS" suffix="94163"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Final Fantasy VII"/>\n <registry root="local_machine" key="SOFTWARE\\Square Soft, Inc.\\Final Fantasy VII" value="AppPath"/>\n <shortcut ev="startmenu" path="Programs\\Final Fantasy VII\\Play Final Fantasy VII.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Caleb Love</contributor>\n </version>\n </game>\n <game name="FinalFantasy8" follows="FinalFantasy7">\n <title>Final Fantasy VIII</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00892"/>\n <ps_code prefix="SLUS" suffix="00908"/>\n <ps_code prefix="SLUS" suffix="00909"/>\n <ps_code prefix="SLUS" suffix="00910"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasy9" follows="FinalFantasy8">\n <title>Final Fantasy IX</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="01251"/>\n <ps_code prefix="SLUS" suffix="01295"/>\n <ps_code prefix="SLUS" suffix="01296"/>\n <ps_code prefix="SLUS" suffix="01297"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FinalFantasyTactics">\n <title>Final Fantasy Tactics</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="94221"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PSP" region="USA" release="WarOfTheLions">\n <title>Final Fantasy Tactics: War of the Lions</title>\n <ps_code prefix="ULUS" suffix="10297"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FishTycoon">\n <title>Fish Tycoon</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="Fish Tycoon"/>\n </locations>\n <files type="Saves">\n <save filename="*.pts"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="FlatOut">\n <title>FlatOut</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="flatout"/>\n </locations>\n <files type="Saves">\n <save path="Savegame"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="FlatOut2">\n <title>FlatOut 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="flatout2"/>\n </locations>\n <files type="Saves">\n <save path="Savegame"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="FlatOutUltimateCarnage" follows="FlatOut2">\n <title>FlatOut: Ultimate Carnage</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="FlatOut Ultimate Carnage"/>\n </locations>\n <files type="Saves">\n <save path="Savegame"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <mod name="Flesh" for="HalfLife2">\n <title>Flesh</title>\n <version os="Windows">\n <locations>\n <path ev="steamsourcemods" path="Flesh"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </mod>\n <game name="FlightControlHD">\n <title>Flight Control HD</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="62000"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="flight_control_hd"/>\n </locations>\n <files type="Saves">\n <save filename="DATA*"/>\n <save filename="GAME0"/>\n </files>\n <files type="Scores">\n <save filename="highscores.bin"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="Flow">\n <title>Flow</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80001"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Flower">\n <title>Flower</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80083"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="EUR">\n <ps_code prefix="NPEA" suffix="00094"/>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Folklore">\n <title>Folklore</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98147"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FreedomForce">\n <title>Freedom Force</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="freedom force"/>\n </locations>\n <files type="Saves">\n <save path="Data\\SaveGames"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="FreedomForceVsThe3rdReich" follows="FreedomForce">\n <title>Freedom Force vs. The 3rd Reich</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Irrational Games\\Freedom Force vs the 3rd Reich"/>\n </locations>\n <files type="Saves">\n <save>\n <except path="temp"/>\n </save>\n </files>\n <contributor>Mark Barbour</contributor>\n </version>\n </game>\n <game name="Freelancer">\n <title>Freelancer</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Freelancer"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FreeSpace2" follows="DescentFreeSpaceTheGreatWar">\n <title>FreeSpace 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Games\\FreeSpace2"/>\n <path ev="installlocation" path="GOG.com\\Freespace 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGFREESPACE2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Freespace 2\\Freespace 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="data\\players\\Multi" filename="*.plr"/>\n <save path="data\\players\\Single" filename="*.plr"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Frequency">\n <title>Frequency</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97125"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Frogger2">\n <title>Frogger 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Hasbro Interactive\\Frogger2"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\Frogger2 - Swampy''s Revenge" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Hasbro Interactive\\Frogger2\\Frogger2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="savedata"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="FrontlinesFuelOfWar">\n <title>Frontlines: Fuel of War</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Frontlines - Fuel of War"/>\n </locations>\n <files type="Saves">\n <save path="GCGame\\Save"/>\n </files>\n <files type="Settings">\n <save path="GCGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="FrontMissionEvolved">\n <title>Front Mission Evolved</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="43000"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="FrozenSynapse">\n <title>Frozen Synapse</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="frozen synapse"/>\n </locations>\n <files type="Saves">\n <save path="psychoff" filename="spSave*.*"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="fs2_open">\n <title>fs2_open</title>\n <version>\n <locations>\n <path ev="installlocation" path="fs2_open"/>\n <parent name="FreeSpace2" os="Windows"/>\n </locations>\n <files type="Saves">\n <save path="data\\players"/>\n </files>\n <identifier filename="fs2_open*"/>\n <comment>Doesn''t have a default install folder, so might require an Alt. Install Path.</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Fuel">\n <title>Fuel</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\FUEL"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="FullThrottle">\n <title>Full Throttle</title>\n <version platform="ScummVM">\n <scummvm name="ft"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="THROTTLE"/>\n </locations>\n <files type="Saves">\n <save filename="SAVEGAME.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GabrielKnight">\n <title>Gabriel Knight: Sins of the Fathers</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Gabriel Knight"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGGABRIELKNIGHT1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Gabriel Knight - Sins of the Fathers\\Gabriel Knight - Sins of the Fathers.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="GKSG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GabrielKnight3" follows="GabrielKnight">\n <title>Gabriel Knight 3: Blood of the Sacred, Blood of the Damned</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Gabriel Knight 3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGGABRIELKNIGHT3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Gabriel Knight 3 - Blood of the Sacred, Blood of the Damned\\Gabriel Knight 3 - Blood of the Sacred, Blood of the Damned.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save Games"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="GalacticCivilizations2DarkAvatar" for="GalacticCivilizations2DreadLords">\n <title>Galactic Civilizations II: Dark Avatar</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\GC2DarkAvatar"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Mark Barbour</contributor>\n </version>\n </expansion>\n <game name="GalacticCivilizations2DreadLords">\n <title>Galactic Civilizations II: Dread Lords</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\GalCiv2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Mark Barbour</contributor>\n </version>\n </game>\n <game name="GalaxyOnFire2">\n <title>Galaxy on Fire 2</title>\n <version os="Android">\n <locations>\n <path ev="drive" path="Android\\data\\net.fishlabs.GalaxyonFire2THD"/>\n </locations>\n <files type="Saves">\n <save path="files\\GOF2\\gof2nvidia_v01" filename="*.sav"/>\n <save path="files\\GOF2\\gof2nvidia_v01" filename="gof2_save_game*"/>\n </files>\n <files type="Settings">\n <save path="files\\GOF2\\gof2nvidia_v01" filename="gof2_save_options"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GarrysMod">\n <title>Garry''s Mod</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="garrysmod\\garrysmod"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GarshaspTheMonsterSlayer">\n <title>Garshasp: The Monster Slayer</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="DeadMage\\Garshasp"/>\n </locations>\n <files type="Saves">\n <save path="profiles"/>\n </files>\n <files type="Settings">\n <save filename="*.xml"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GearsOfWar">\n <title>Gears of War</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Gears of War for Windows"/>\n </locations>\n <files type="Saves">\n <save path="WarGame\\SaveData"/>\n </files>\n <files type="Settings">\n <save path="WarGame\\Config"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GeminiRue">\n <title>Gemini Rue</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="gemini rue"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Ghostbusters">\n <title>Ghostbusters</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="GHOSTBUSTERS (tm)"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GhostMaster">\n <title>Ghost Master</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\Ghost Master"/>\n <path ev="public" path="Documents\\Ghost Master"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GhostRecon">\n <title>Tom Clancy''s Ghost Recon</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="ghost recon"/>\n </locations>\n <files type="Replays">\n <save path="Mods\\Origmiss\\Save\\Replay"/>\n </files>\n <files type="Saves">\n <save filename="*unlocked*.xml"/>\n <save path="Mods\\Origmiss\\Save\\Game"/>\n </files>\n <files type="Settings">\n <save filename="options.xml"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GhostReconAdvancedWarfighter">\n <title>Tom Clancy''s Ghost Recon: Advanced Warfighter</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="ghost recon advanced warfighter"/>\n <registry root="local_machine" key="SOFTWARE\\SEGA\\Ubisoft\\Ghost Recon Advanced Warfighter" value="InstalledPath"/>\n </locations>\n <files type="Saves">\n <save path="Settings\\profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GhostReconAdvancedWarfighter2">\n <title>Tom Clancy''s Ghost Recon: Advanced Warfighter 2</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="GRAW2"/>\n </locations>\n <files type="Saves">\n <save filename="level_snapshot.dsl"/>\n <save path="settings\\profiles"/>\n </files>\n <files type="Settings">\n <save path="data\\settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <expansion name="GhostReconDesertSiege" for="GhostRecon">\n <title>Tom Clancy''s Ghost Recon: Desert Siege</title>\n <version os="Windows">\n <locations>\n <parent name="GhostRecon" os="Windows"/>\n </locations>\n <files type="Replays">\n <save path="Mods\\Mp1\\save\\replay"/>\n </files>\n <files type="Saves">\n <save path="Mods\\Mp1\\save\\game"/>\n </files>\n <identifier path="Mods\\Mp1"/>\n <contributor>Arc Angel</contributor>\n </version>\n </expansion>\n <expansion name="GhostReconIslandThunder" for="GhostRecon">\n <title>Tom Clancy''s Ghost Recon: Island Thunder</title>\n <version os="Windows">\n <locations>\n <parent name="GhostRecon" os="Windows"/>\n </locations>\n <files type="Replays">\n <save path="Mods\\Mp2\\save\\replay"/>\n </files>\n <files type="Saves">\n <save path="Mods\\Mp2\\save\\game"/>\n </files>\n <identifier path="Mods\\Mp2"/>\n <contributor>Arc Angel</contributor>\n </version>\n </expansion>\n <game name="GiantsCitizenKabuto">\n <title>Giants: Citizen Kabuto</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Giants"/>\n <path ev="installlocation" path="GOG.com\\Giants – Citizen Kabuto"/>\n <registry root="current_user" key="Software\\PlanetMoon\\Giants" value="DestDir"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGGIANTS" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\giants.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Giants – Citizen Kabuto\\Giants – Citizen Kabuto.lnk"/>\n </locations>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Gish">\n <title>Gish</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="gish"/>\n </locations>\n <files type="Saves">\n <save filename="gish.his"/>\n <save filename="gish.pla"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="GMRally">\n <title>GM Rally</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="gm rally"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Data\\profiles"/>\n </files>\n <files type="Settings">\n <save path="Data" filename="AudioSettings.scr"/>\n <save path="Data" filename="CoDrvReader.scr"/>\n <save path="Data" filename="Controller.scr"/>\n <save path="Data" filename="DefaultControllers.scr"/>\n <save path="Data" filename="VideoSettings.scr"/>\n <save path="Data" filename="VideoSettingsGTI.scr"/>\n <save path="Data" filename="VideoSettingsGTI_MP.scr"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Gobliins2">\n <title>Gobliins 2</title>\n <version platform="ScummVM">\n <locations>\n <path ev="installlocation" path="GOG.com\\Gobliiins Pack\\Gobliins2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGGOBLINS2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Gobliiins Pack\\Gobliiins\\Gobliiins.lnk" append="Gobliins2" detract="ScummVM"/>\n </locations>\n <files type="Saves">\n <save filename="gobliins2.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version platform="ScummVM" media="Floppy">\n <locations>\n <path ev="installlocation" path="GOG.com\\Gobliiins Pack\\Gobliins2 Floppy"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGGOBLINS2FDD" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Gobliiins Pack\\Gobliiins\\Gobliiins (Floppy Verion).lnk" append="Gobliins2 Floppy" detract="ScummVM"/>\n </locations>\n <files type="Saves">\n <save filename="gobliins2FDD.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GoblinsQuest3" follows="Gobliins2">\n <title>Goblins Quest 3</title>\n <version platform="ScummVM">\n <locations>\n <path ev="installlocation" path="GOG.com\\Gobliiins Pack\\Goblins3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGGOBLINS3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Gobliiins Pack\\Goblins Quest 3\\Goblins Quest 3.lnk" append="Goblins3" detract="ScummVM"/>\n </locations>\n <files type="Saves">\n <save filename="goblins3.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version platform="ScummVM" media="Floppy">\n <locations>\n <path ev="installlocation" path="GOG.com\\Gobliiins Pack\\Goblins3 Floppy"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGGOBLINS3FDD" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Gobliiins Pack\\Goblins Quest 3\\Goblins Quest 3 (Floppy Verion).lnk" append="Goblins3 Floppy" detract="ScummVM"/>\n </locations>\n <files type="Saves">\n <save filename="goblins3FDD.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Godfather">\n <title>The Godfather</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="corleone"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GodOfWar">\n <title>God of War</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97399"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GodOfWar2" follows="GodOfWarChainsOfOlympus">\n <title>God of War II</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97481"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GodOfWarChainsOfOlympus" follows="GodOfWar">\n <title>God of War: Chains of Olympus</title>\n <version os="PSP" region="USA">\n <ps_code prefix="UCUS" suffix="98653"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Gothic3">\n <title>Gothic 3</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="gothic3"/>\n </locations>\n <files type="Saves">\n <save filename="*.g3*"/>\n </files>\n <files type="Settings">\n <save filename="UserOptions.ini"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="GrandTheftAuto3">\n <title>Grand Theft Auto 3</title>\n <version os="Android">\n <locations>\n <path ev="drive" path="Android\\data\\com.rockstar.gta3"/>\n </locations>\n <files type="Saves">\n <save path="files\\GTA3" filename="GTA3sf*.b"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="GTA3 User Files"/>\n </locations>\n <files type="Saves">\n <save filename="*.b"/>\n <save filename="*.set"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="GrandTheftAuto4" follows="GrandTheftAutoSanAndreas">\n <title>Grand Theft Auto IV</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Rockstar Games\\GTA IV"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save path="Settings"/>\n </files>\n <comment>Includes Episodes from Liberty City</comment>\n <contributor>AvvA</contributor>\n <contributor>Virgile</contributor>\n </version>\n </game>\n <game name="GrandTheftAutoChinatownWars">\n <title>Grand Theft Auto: Chinatown Wars</title>\n <version os="PSP" region="EUR">\n <ps_code prefix="ULES" suffix="01347"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="GrandTheftAutoLibertyCityStories">\n <title>Grand Theft Auto: Liberty City Stories</title>\n <version os="PSP" region="EUR">\n <ps_code prefix="ULES" suffix="00151"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="GrandTheftAutoSanAndreas" follows="GrandTheftAutoViceCity">\n <title>Grand Theft Auto: San Andreas</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="GTA San Andreas User Files"/>\n </locations>\n <files type="Saves">\n <save filename="*.b"/>\n <save filename="*.set"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="GrandTheftAutoViceCity" follows="GrandTheftAuto3">\n <title>Grand Theft Auto: Vice City</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="GTA Vice City User Files"/>\n </locations>\n <files type="Saves">\n <save filename="*.b"/>\n <save filename="*.set"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="GrandTheftAutoViceCityStories" follows="GrandTheftAutoViceCity">\n <title>Grand Theft Auto: Vice City Stories</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10160"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="GratuitousSpaceBattles">\n <title>Gratuitous Space Battles</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="GratuitousSpaceBattles"/>\n </locations>\n <files type="Saves">\n <save filename="*"/>\n <save path="deployments"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Gravitron2">\n <title>Gravitron 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="gravitron2"/>\n </locations>\n <files type="Saves">\n <save filename="SaveGame.sav"/>\n </files>\n <files type="Statistics">\n <save filename="Scores.dat"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="GrayMatter">\n <title>Gray Matter</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="GrayMatter"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Caleb Love</contributor>\n </version>\n </game>\n <game name="GreedBlackBorder">\n <title>Greed: Black Border</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="greed black border"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GrimFandango">\n <title>Grim Fandango</title>\n <version os="Windows" virtualstore="ignore" detect="required">\n <locations>\n <path ev="installlocation" path="Lucasarts\\Grim"/>\n <registry root="local_machine" key="SOFTWARE\\LucasArts Entertainment Company LLC\\Grim Fandango\\v1.0" value="Install Path"/>\n </locations>\n <files type="Saves">\n <save filename="*.gsv"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GrotesqueTactics2" follows="GrotesqueTacticsEvilHeroes">\n <title>Grotesque Tactics 2: Dungeons and Donuts</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Grotesque-Tactics2"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <files type="Settings">\n <save path="Settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GrotesqueTacticsEvilHeroes">\n <title>Grotesque Tactics: Evil Heroes</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Grotesque-Tactics"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <files type="Settings">\n <save path="Settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GTIRacing">\n <title>GTI Racing</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="gti racing"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Data\\profiles"/>\n </files>\n <files type="Settings">\n <save path="Data" filename="AudioSettings.scr"/>\n <save path="Data" filename="CoDrvReader.scr"/>\n <save path="Data" filename="Controller.scr"/>\n <save path="Data" filename="DefaultControllers.scr"/>\n <save path="Data" filename="VideoSettings.scr"/>\n <save path="Data" filename="VideoSettingsGTI.scr"/>\n <save path="Data" filename="VideoSettingsGTI_MP.scr"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="GuildWars">\n <title>Guild Wars</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Guild Wars" only_for="WindowsXP"/>\n <path ev="userdocuments" path="Guild Wars" only_for="WindowsVista"/>\n <registry root="local_machine" key="SOFTWARE\\ArenaNet\\Guild Wars" value="Path" only_for="WindowsXP"/>\n <shortcut ev="startmenu" path="Programs\\Guild Wars\\Guild Wars.lnk" only_for="WindowsXP"/>\n </locations>\n <files type="SkillSets">\n <save path="Templates"/>\n </files>\n <comment>Backs up skill and weapon templates only</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GuiltyGearX2">\n <title>Guilty Gear X2</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="ZOO Digital Publishing\\GuiltyGearX2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="GumboyCrazyAdventures">\n <title>Gumboy: Crazy Adventures</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="gumboy crazy adventures"/>\n </locations>\n <files type="Saves">\n <save filename="*.ini"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="GumboyCrazyFeatures" follows="GumboyCrazyAdventures">\n <title>Gumboy: Crazy Features</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="gumboy crazy features"/>\n </locations>\n <files type="Saves">\n <save filename="*.ini"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="GUN">\n <title>GUN</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Activision\\Gun"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="GunMetal">\n <title>Gun Metal</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Yeti Studios\\Gun Metal"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Gunmetal.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Yeti Studios\\Gun Metal\\Gun Metal.lnk"/>\n </locations>\n <files type="Saves">\n <save path="data\\SavedGames"/>\n <save path="data\\SavedStates"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Gyromancer">\n <title>Gyromancer</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="gyromancer"/>\n </locations>\n <files type="Saves">\n <save filename="Gyromancer_*.dat"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="HackerEvolution">\n <title>Hacker Evolution</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Hacker Evolution"/>\n <registry root="local_machine" key="SOFTWARE\\Stardock\\Drengin.net\\hev" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Games\\Hacker Evolution.lnk"/>\n </locations>\n <files type="Saves">\n <save path="he-savegames" filename="*.profile"/>\n </files>\n <files type="Settings">\n <save path="he-data"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="HackerEvolutionDuality" follows="HackerEvolution">\n <title>Hacker Evolution Duality</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="hacker evolution duality"/>\n </locations>\n <files type="Saves">\n <save path="hed-player">\n <except path="hed-player" filename="achievements.dat"/>\n </save>\n </files>\n <files type="Settings">\n <save path="hed-text" filename="settings.ini"/>\n </files>\n <files type="Statistics">\n <save path="hed-player" filename="achievements.dat"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="HaegemoniaLegionsOfIron">\n <title>Haegemonia: Legions of Iron</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Haegemonia Gold Edition\\Haegemonia - Legions of Iron"/>\n <registry root="local_machine" key="Software\\Digital Reality\\Haegemonia" value="InstallPath"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGHAEGEMONIALOI" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Haegemonia - Legions of Iron\\Haegemonia - Legions of Iron.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="HaegemoniaTheSolonHeritage" for="HaegemoniaLegionsOfIron">\n <title>Haegemonia: The Solon Heritage</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Haegemonia Gold Edition\\Haegemonia - The Solon Heritage"/>\n <registry root="current_user" key="Software\\Digital Reality\\HaegemoniaAddOn" value="InstallPath"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGHAEGEMONIATSH" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Haegemonia - Legions of Iron\\Haegemonia - The Solon Heritage.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="HalfLife">\n <title>Half-Life</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20066"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="Source">\n <title>Half-Life: Source</title>\n <locations>\n <path ev="steamuser" path="half-life source\\hl1"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" media="Steam">\n <locations>\n <path ev="installlocation" path="Sierra\\Half-Life\\valve"/>\n <path ev="steamuser" path="half-life\\valve"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\HALFLIFE" value="Directory" append="valve"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n <contributor>Scandalon</contributor>\n </version>\n </game>\n <game name="HalfLife2" follows="HalfLife">\n <title>Half-Life 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="half-life 2\\hl2"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HalfLife2EpisodeOne" follows="HalfLife2">\n <title>Half-Life 2: Episode One</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="half-life 2 episode one\\episodic"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HalfLife2EpisodeTwo" follows="HalfLife2EpisodeOne">\n <title>Half-Life 2: Episode Two</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="half-life 2 episode two\\ep2"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HalfLife2LostCoast" follows="HalfLife2">\n <title>Half-Life 2: Lost Coast</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="half-life 2 lostcoast\\lostcoast"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="HalfLifeBlueShift" for="HalfLife">\n <title>Half-Life: Blue Shift</title>\n <version os="Windows" media="Steam">\n <locations>\n <path ev="installlocation" path="Sierra\\Half-Life\\bshift"/>\n <path ev="steamuser" path="half-life blue shift\\bshift"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\HALFLIFE" value="Directory" append="bshift"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n <contributor>Scandalon</contributor>\n </version>\n </expansion>\n <expansion name="HalfLifeOpposingForce" for="HalfLife">\n <title>Half-Life: Opposing Force</title>\n <version os="Windows" media="Steam">\n <locations>\n <path ev="installlocation" path="Sierra\\Half-Life\\gearbox"/>\n <path ev="steamuser" path="opposing force\\gearbox"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\HALFLIFE" value="Directory" append="gearbox"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n <contributor>Scandalon</contributor>\n </version>\n </expansion>\n <game name="Halo">\n <title>Halo: Combat Evolved</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Halo"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HardReset">\n <title>Hard Reset</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Hard Reset"/>\n </locations>\n <files type="Saves">\n <save filename="profiles.cfg"/>\n <save path="profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Hardwar">\n <title>Hardwar</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Interplay\\Hardwar"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\Hardwar" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Hardwar.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HarryPotterAndTheHalfBloodPrince">\n <title>Harry Potter and the Half-Blood Prince</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Electronic Arts\\Harry Potter and the Half Blood Prince"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HeartsOfIron2">\n <title>Hearts of Iron II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Paradox Interactive\\Hearts of Iron 2"/>\n <registry root="local_machine" key="SOFTWARE\\Paradox Interactive\\Hearts of Iron 2" value="path"/>\n <shortcut ev="startmenu" path="Programs\\Paradox Interactive\\Hearts of Iron 2\\Hearts of Iron 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="scenarios\\save games"/>\n </files>\n <files type="Settings">\n <save filename="config.eu"/>\n <save filename="settings.cfg"/>\n </files>\n <contributor>Craig Schlieve</contributor>\n </version>\n </game>\n <expansion name="HeartsOfIron2Doomsday" for="HeartsOfIron2">\n <title>Hearts of Iron II: Doomsday</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Paradox Interactive\\Doomsday"/>\n <registry root="local_machine" key="SOFTWARE\\Paradox Interactive\\Doomsday" value="path"/>\n <shortcut ev="startmenu" path="Programs\\Paradox Interactive\\Hearts of Iron 2 Doomsday\\Hearts of Iron 2 Doomsday.lnk"/>\n </locations>\n <files type="Saves">\n <save path="scenarios\\save games"/>\n </files>\n <files type="Settings">\n <save filename="config.eu"/>\n <save filename="settings.cfg"/>\n </files>\n <contributor>Craig Schlieve</contributor>\n </version>\n </expansion>\n <game name="HeavenlySword">\n <title>Heavenly Sword</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98132"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HeavyMetalFAKK2">\n <title>Heavy Metal: FAKK 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Ritual Entertainment\\Heavy Metal - FAKK2"/>\n </locations>\n <files type="Saves">\n <save path="fakk\\save"/>\n </files>\n <files type="Settings">\n <save path="fakk" filename="config.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Hellforces">\n <title>Hellforces</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Buka\\Hellforces"/>\n <registry root="local_machine" key="SOFTWARE\\Buka\\Hellforces" detract="hell.exe"/>\n <shortcut ev="startmenu" path="Programs\\Buka\\Hellforces\\Hellforces.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVES\\save*"/>\n </files>\n <files type="Settings">\n <save path="SAVES" filename="*.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="HeroesOfMightAndMagic3">\n <title>Heroes of Might and Magic 3: The Restoration of Erathia</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Heroes of Might and Magic 3 Complete"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGHOMM3COMPLETE" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\New World Computing\\Heroes of Might and Magic® III\\1.0" value="AppPath"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Heroes of Might and Magic 3 Complete\\Heroes of Might and Magic 3 Complete.lnk"/>\n </locations>\n <files type="Saves">\n <save path="games"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HeroesOfMightAndMagic5">\n <title>Heroes of Might and Magic V</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Heroes of Might and Magic V"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Hinterland">\n <title>Hinterland</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Tilted Mill\\Hinterland"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Hitman2SilentAssassin" follows="HitmanCodename47">\n <title>Hitman 2: Silent Assassin</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Eidos Interactive\\Hitman 2 Silent Assassin"/>\n <registry root="local_machine" key="SOFTWARE\\Eidos Interactive\\Hitman 2" value="InstallDir"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="Hitman2.ini"/>\n <save filename="Keyboard.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HitmanBloodMoney" follows="HitmanContracts">\n <title>Hitman: Blood Money</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Hitman Blood Money"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HitmanCodename47">\n <title>Hitman: Codename 47</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Eidos Interactive\\IO Interactive\\Hitman - Codename 47"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\hitman.exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save filename="Hitman.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HitmanContracts" follows="Hitman2SilentAssassin">\n <title>Hitman: Contracts</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Eidos\\Hitman Contracts"/>\n <registry root="local_machine" key="SOFTWARE\\Eidos\\Hitman Contracts" value="InstallDir"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="HitmanContracts.cfg"/>\n <save filename="HitmanContracts.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Homeworld">\n <title>Homeworld</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="SIERRA\\Homeworld"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra On-Line\\Homeworld" value="HW_Data"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\HW_USENG" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\Sierra\\Homeworld\\Homeworld.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SavedGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Homeworld2" follows="Homeworld">\n <title>Homeworld 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Sierra\\Homeworld2"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\GameUX\\S-1-5-21-3098754084-4185171617-473594350-1001\\{0BAF4666-90BC-40F3-B9E1-0784F10089F4}" value="ConfigApplicationPath" detract="\\Bin\\Release"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Homeworld2" value="UninstallString" detract="uninstall.exe"/>\n <shortcut ev="startmenu" path="Programs\\Sierra\\Homeworld2\\Homeworld2.lnk" detract="\\Bin\\Release"/>\n </locations>\n <files type="Saves">\n <save path="Bin\\Profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="HomeworldCataclysm" for="Homeworld">\n <title>Homeworld: Cataclysm</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="SIERRA\\Cataclysm"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra On-Line\\Cataclysm" value="HW_Data"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\HC_USENG" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\Sierra\\Cataclysm\\Cataclysm.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SavedGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="HospitalTycoon">\n <title>Hospital Tycoon</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="HospitalTycoon"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="HuntedTheDemonsForge">\n <title>Hunted: The Demon''s Forge</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Hunted"/>\n </locations>\n <files type="Saves">\n <save path="DFGame\\SaveData"/>\n </files>\n <files type="Settings">\n <save path="DFGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="HydrophobiaProphecy">\n <title>Hydrophobia: Prophecy</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="92000"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="IcewindDale">\n <title>Icewind Dale</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Icewind Dale Complete"/>\n <registry root="local_machine" key="SOFTWARE\\Black Isle\\Icewind Dale - Heart of Winter" value="Path"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGICEWINDDALE1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Icewind Dale Complete\\Icewind Dale Complete.lnk"/>\n </locations>\n <files type="Characters">\n <save path="Characters"/>\n </files>\n <files type="Saves">\n <save path="mpsave"/>\n </files>\n <files type="Settings">\n <save filename="icewind.ini"/>\n </files>\n <comment>Also archives expansion saves</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="IcewindDale2" follows="IcewindDale">\n <title>Icewind Dale II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Icewind Dale II"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGICEWINDDALE2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Icewind Dale II\\Icewind Dale II.lnk"/>\n </locations>\n <files type="Characters">\n <save path="Characters"/>\n </files>\n <files type="Saves">\n <save path="mpsave"/>\n </files>\n <files type="Settings">\n <save filename="icewind2.ini"/>\n </files>\n <comment>Also archives expansion saves</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Ico">\n <title>Ico</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97113"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98259" append="_ICO"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="IcyTower">\n <title>Icy Tower</title>\n <version os="Windows" release="1.5">\n <locations>\n <path ev="installlocation" path="games\\icytower1.5"/>\n <registry root="local_machine" key="SOFTWARE\\Conduit\\AppPaths\\icytower15.exe" value="AppPath" detract="\\icytower15.exe"/>\n </locations>\n <files type="Characters">\n <save path="characters"/>\n </files>\n <files type="Replays">\n <save path="profiles\\*\\replays">\n <except path="profiles\\*\\replays" filename="dummy.txt"/>\n </save>\n </files>\n <files type="Saves">\n <save path="profiles">\n <except path="profiles" filename="dummy.txt"/>\n <except path="profiles\\*" filename="dummy.txt"/>\n <except path="profiles\\*\\replays"/>\n </save>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="IFluid">\n <title>I-Fluid</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="i-fluid"/>\n </locations>\n <files type="Saves">\n <save path="Res" filename="driverEvas*.*"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Incoming">\n <title>Incoming</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Incoming and Incoming Forces\\Incoming"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGINCOMING" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Incoming and Incoming Forces\\Incoming\\Incoming.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="IncredibleMachine3">\n <title>The Incredible Machine 3</title>\n <version os="Windows">\n <locations>\n <path ev="drive"/>\n </locations>\n <files type="Saves">\n <save filename="TIM*.SAV"/>\n </files>\n <identifier filename="TIM*.SAV"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="IncredibleMachineEvenMoreContraptions">\n <title>The Incredible Machine: Even More Contraptions</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\The Incredible Machine Series\\The Incredible Machine - Even More Contraptions"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGEVENMORE2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\The Incredible Machine Series\\The Incredible Machine - Even More Contraptions\\The Incredible Machine - Even More Contraptions.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saved Games"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="IndependenceWar">\n <title>Independence War</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Independence War Deluxe"/>\n <path ev="installlocation" path="Particle Systems\\Independence War"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGIWAR" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\IWar.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Independence War Deluxe\\Independence War.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Independence War\\Independence War.lnk"/>\n </locations>\n <files type="Saves">\n <save path="psg" filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="IndependenceWar2" follows="IndependenceWar">\n <title>Independence War 2: Edge of Chaos</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Independence War 2 - Edge of Chaos"/>\n <path ev="installlocation" path="Infogrames\\Independence War 2 - Edge of Chaos"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGIWAR2" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\GameUX\\S-1-5-21-3098754084-4185171617-473594350-1001\\{78195E7A-960D-4D09-95F6-E4DF5FF739CB}" value="ConfigApplicationPath"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Independence War 2 - Edge of Chaos\\Independence War 2 - Edge of Chaos.lnk" detract="bin\\release"/>\n <shortcut ev="startmenu" path="Programs\\Infogrames\\Independence War 2 - Edge of Chaos\\Independence War 2 - Edge of Chaos.lnk" detract="bin\\release"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="IndependenceWarDefiance" for="IndependenceWar">\n <title>Independence War: Defiance</title>\n <version os="Windows">\n <locations>\n <parent name="IndependenceWar" os="Windows" append="Defiance"/>\n </locations>\n <files type="Saves">\n <save path="psg" filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="IndigoProphecy">\n <title>Indigo Prophecy</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21196"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Atari\\Indigo Prophecy Profile"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="inFamous">\n <title>inFamous</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98119"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="EUR">\n <ps_code prefix="BCES" suffix="00609"/>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Infernal">\n <title>Infernal</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="infernal"/>\n </locations>\n <files type="Saves">\n <save path="game\\AutoSave!"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="InsaniquariumDeluxe">\n <title>Insaniquarium Deluxe</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Steam\\Insaniquarium" only_for="WindowsVista"/>\n <path ev="steamcommon" path="insaniquarium deluxe" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="userdata"/>\n </files>\n <identifier path="userdata"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="InsecticidePart1">\n <title>Insecticide Part 1</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Crackpot Entertainment\\Insecticide Part 1"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{B01722D3-75CC-461E-B41F-BB4BE30CE9E4}" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Crackpot Entertainment\\Insecticide Part 1\\Play Insecticide Episode 1.lnk"/>\n </locations>\n <files type="Saves">\n <save path="profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Ishar">\n <title>Ishar: Legend of the Fortress</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Ishar Compilation\\Ishar - Legend of the Fortress"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGISHAR1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Ishar Compilation\\Ishar - Legend of the Fortress\\Ishar - Legend of the Fortress.lnk" append="Ishar - Legend of the Fortress" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Ishar2" follows="Ishar">\n <title>Ishar 2: Messengers of Doom</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Ishar Compilation\\Ishar 2 - Messengers of Doom"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGISHAR2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Ishar Compilation\\Ishar 2 - Messengers of Doom\\Ishar 2 - Messengers of Doom.lnk" append="Ishar 2 - Messengers of Doom" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Ishar3" follows="Ishar2">\n <title>Ishar 3: The Seven Gates of Infinity</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Ishar Compilation\\Ishar 3 - The Seven Gates of Infinity"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGISHAR3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Ishar Compilation\\Ishar 3 - The Seven Gates of Infinity\\Ishar 3 - The Seven Gates of Infinity.lnk" append="Ishar 3 - The Seven Gates of Infinity" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="JackInTheDark">\n <title>Jack in the Dark</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Alone in the Dark\\JACK"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGALONE1" value="PATH" append="JACK"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Alone in the Dark\\Jack in the Dark.lnk" append="JACK" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SAVE?.ITD"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="JackKeane">\n <title>Jack Keane</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Jack Keane"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="JadeEmpire">\n <title>Jade Empire</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="jade empire"/>\n <registry root="local_machine" key="SOFTWARE\\BioWare\\Jade Empire" value="Path"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="JaggedAlliance2">\n <title>Jaged Alliance 2</title>\n <version os="Windows" release="Gold">\n <title>Jaged Alliance 2 Gold</title>\n <locations>\n <path ev="steamcommon" path="jagged alliance 2 gold"/>\n </locations>\n <files type="Saves">\n <save path="SavedGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Jak2" follows="JakAndDaxterPrecursorLegacy">\n <title>Jak II</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97265"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98281" append="_NPWR01819"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Jak3" follows="Jak2">\n <title>Jak 3</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97330"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98281" append="_NPWR01820"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="JakAndDaxterPrecursorLegacy">\n <title>Jak and Daxter: The Precursor Legacy</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97124"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98281" append="_NPWR01818"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="JakXCombatRacing" follows="Jak3">\n <title>Jak X: Combat Racing</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97429"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Jamestown">\n <title>Jamestown</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Saved Games\\Jamestown"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="JeanneDArc">\n <title>Jeanne D''Arc</title>\n <version os="PSP" region="USA">\n <ps_code prefix="UCUS" suffix="98700"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Jeopardy">\n <title>Jeopardy!</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80227"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Jericho">\n <title>Clive Barker''s Jericho</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Codemasters\\Clive Barker''s Jericho"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="JointTaskForce">\n <title>Joint Task Force</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="HD Publishing\\Joint Task Force"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{BCB9DF93-537D-433D-AF3B-36025DEF5798}" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\HD Publishing\\Joint Task Force\\Launch Joint Task Force.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Journey">\n <title>Journey</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80275"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="JudgeDreddDreddVsDeath">\n <title>Judge Dredd: Dredd vs. Death</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Judge Dredd - Dredd vs Death"/>\n <path ev="steamcommon" path="dreddvsdeath"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGJUDGEDREDD" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Rebellion\\Dredd" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Judge Dredd - Dredd vs Death\\Judge Dredd - Dredd vs Death.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="save*"/>\n <save path="save*"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="JurassicParkTheGame">\n <title>Jurassic Park: The Game</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\jurassicpark"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="JustCause">\n <title>Just Cause</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="JustCause"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="JustCause2" follows="JustCause">\n <title>Just Cause 2</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="8190"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="KaneAndLynch2DogDays" follows="KaneAndLynchDeadMen">\n <title>Kane & Lynch 2: Dog Days</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Square Enix\\Kane & Lynch 2 - Dog Days"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="KaneAndLynchDeadMen">\n <title>Kane & Lynch: Dead Men</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="kaneandlynch"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KaptainBraweEP1">\n <title>Kaptain Brawe: A Brawe New World</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Cateia Games\\Kaptain Brawe"/>\n </locations>\n <files type="Saves">\n <save path="*"/>\n </files>\n <files type="Settings">\n <save filename="*.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Killer7">\n <title>Killer 7</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21154"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingArthur">\n <title>King Arthur: The Role-Playing Wargame</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="NeocoreGames\\King Arthur"/>\n </locations>\n <files type="Saves">\n <save path="SaveGame"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="KingArthur2" follows="KingArthur">\n <title>King Arthur II: The Role-Playing Wargame</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="NeocoreGames\\King Arthur II"/>\n </locations>\n <files type="Saves">\n <save path="SaveGame"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="KingdomHearts">\n <title>Kingdom Hearts</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20370"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingdomHearts2" follows="KingdomHeartsReChainOfMemories">\n <title>Kingdom Hearts II</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21005"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingdomHeartsReChainOfMemories" follows="KingdomHearts">\n <title>Kingdom Hearts: Re: Chain of Memories</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21799"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingdomsOfAmalurReckoning">\n <title>Kingdoms of Amalur: Reckoning</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="102500"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="KingsBountyTheLegend">\n <title>King''s Bounty: The Legend</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Kings Bounty"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="KingsQuest">\n <title>King''s Quest</title>\n <version platform="ScummVM">\n <scummvm name="kq1"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Kings Quest 1-2-3\\Kings Quest 1"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGKQ1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\King''s Quest 1 2 3\\King''s Quest\\King''s Quest.lnk" append="Kings Quest 1" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="KQ1SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingsQuest2" follows="KingsQuest">\n <title>King''s Quest II: Romancing the Throne</title>\n <version platform="ScummVM">\n <scummvm name="kq2"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Kings Quest 1-2-3\\Kings Quest 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGKQ2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\King''s Quest 1 2 3\\King''s Quest 2\\King''s Quest II - Romancing the Throne.lnk" append="Kings Quest 2" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="KQ2SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingsQuest3" follows="KingsQuest2">\n <title>King''s Quest III: To Heir is Human</title>\n <version platform="ScummVM">\n <scummvm name="kq3"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Kings Quest 1-2-3\\Kings Quest 3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGKQ3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\King''s Quest 1 2 3\\King''s Quest 3\\King''s Quest III - To Heir is Human.lnk" append="Kings Quest 3" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="KQ3SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingsQuest4" follows="KingsQuest3">\n <title>King''s Quest 4: The Perils of Rosella</title>\n <version platform="ScummVM">\n <scummvm name="kq4sci"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Kings Quest 4-5-6\\Kings Quest 4"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGKQ4" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\King''s Quest 4-5-6\\King''s Quest 4 - The Perils of Rosella\\King''s Quest 4 - The Perils of Rosella.lnk" append="Kings Quest 4" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="KQ4SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingsQuest5" follows="KingsQuest4">\n <title>King''s Quest 5: Absence Makes the Heart Go Yonder</title>\n <version platform="ScummVM" media="CD">\n <scummvm name="kq5-cd"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Kings Quest 4-5-6\\Kings Quest 5"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGKQ5" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\King''s Quest 4-5-6\\King''s Quest 5 - Absence Makes the Heart Go Yonder\\King''s Quest 5 - Absence Makes the Heart Go Yonder.lnk" append="Kings Quest 5" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="KQ5SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingsQuest6" follows="KingsQuest5">\n <title>King''s Quest 6: Heir Today, Gone Tomorrow</title>\n <version platform="ScummVM" media="CD">\n <scummvm name="kq6-cd"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Kings Quest 4-5-6\\Kings Quest 6"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGKQ6" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\King''s Quest 4-5-6\\King''s Quest 6 - Heir Today, Gone Tomorrow\\King''s Quest 6 - Heir Today, Gone Tomorrow.lnk" append="Kings Quest 6" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="KQ6SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingsQuest7" follows="KingsQuest6">\n <title>King''s Quest 7: The Princeless Bride</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\KQ78\\KQ7"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGKQ7" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\King''s Quest 7-8\\King''s Quest 7 - The Princeless Bride\\King''s Quest 7 - The Princeless Bride.lnk" append="KQ7" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="KQ7CDSG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="KingsQuest8" follows="KingsQuest7">\n <title>King''s Quest: Mask of Eternity</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\KQ78\\KQ8"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGKQ8" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\King''s Quest 7-8\\King''s Quest - Mask of Eternity\\King''s Quest - Mask of Eternity.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="LANoire">\n <title>L.A. Noire</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Rockstar Games\\L.A. Noire"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <files type="Settings">\n <save filename="settings.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="LaraCroftAndTheGuardianOfLight">\n <title>Lara Croft and the Guardian of Light</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="35130" deprecated="true"/>\n <path ev="steamuserdata" path="35150"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="LastExpress">\n <title>The Last Express</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\The Last Express"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTHELASTEXPRESS" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\The Last Express\\The Last Express.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="BLUE.EGG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="LastRemnant">\n <title>The Last Remnant</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\The last remnant"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Legendary">\n <title>Legendary</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Legendary"/>\n </locations>\n <files type="Saves">\n <save path="PandoraGame\\Checkpoints"/>\n <save path="PandoraGame\\SaveData"/>\n </files>\n <files type="Settings">\n <save path="PandoraGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="LegendOfGrimrock">\n <title>Legend of Grimrock</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Almost Human\\Legend of Grimrock"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Lemmings">\n <title>Lemmings</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80012"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Limbo">\n <title>Limbo</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="48000"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="LIMBO"/>\n <registry root="current_user" key="Software\\LIMBO"/>\n <shortcut ev="startmenu" path="Programs\\LIMBO\\LIMBO.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save_game"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="LittleBigAdventure">\n <title>Little Big Adventure</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Little Big Adventure"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGLBA" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Little Big Adventure\\Little Big Adventure.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.LBA"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="LittleBigAdventure2" follows="LittleBigAdventure">\n <title>Little Big Adventure 2</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Little Big Adventure 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGLBA2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Little Big Adventure 2\\Little Big Adventure.lnk 2" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Loki">\n <title>Loki</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="loki"/>\n </locations>\n <files type="Saves">\n <save path="Characters"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="LoneSurvivor">\n <title>Lone Survivor</title>\n <version platform="Flash">\n <locations>\n <path ev="appdata" path="\\LoneSurvivor"/>\n </locations>\n <files type="Saves">\n <save path="Local Store\\Lone Survivor Saved Game"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="LoneSurvivor"/>\n </locations>\n <files type="Saves">\n <save path="Local Store\\Lone Survivor Saved Game"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="LongestJourney">\n <title>The Longest Journey</title>\n <version os="Windows" detect="required">\n <locations>\n <path ev="appdata" path="The Longest Journey"/>\n <path ev="installlocation" path="Funcom\\The Longest Journey"/>\n <registry root="current_user" key="Software\\Paper Sun\\Roots" value="Root"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="Preferences.ini"/>\n </files>\n <identifier path="Save"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="LordOfTheRingsTheReturnOfTheKing">\n <title>The Lord of the Rings: The Return of the King</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="LOTR The Return of the King (tm) Data"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="LostHorizon">\n <title>Lost Horizon</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Lost Horizon"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="LostPlanet">\n <title>Lost Planet: Extreme Condition</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="CAPCOM\\LOSTPLANET"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Caleb Love</contributor>\n </version>\n <version os="Windows" release="Colonies">\n <title>Lost Planet: Colonies</title>\n <locations>\n <path ev="localappdata" path="CAPCOM\\LOSTPLANETCOLONIES"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Caleb Love</contributor>\n </version>\n </game>\n <game name="LostPlanet2" follows="LostPlanet">\n <title>Lost Planet 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="CAPCOM\\LOST PLANET 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="LugaruHD">\n <title>Lugaru HD</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="lugaru hd"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Data\\profiles"/>\n </files>\n <files type="Settings">\n <save path="Data" filename="AudioSettings.scr"/>\n <save path="Data" filename="CoDrvReader.scr"/>\n <save path="Data" filename="Controller.scr"/>\n <save path="Data" filename="DefaultControllers.scr"/>\n <save path="Data" filename="VideoSettings.scr"/>\n <save path="Data" filename="VideoSettingsGTI.scr"/>\n <save path="Data" filename="VideoSettingsGTI_MP.scr"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Lumines">\n <title>Lumines</title>\n <version os="PSP" region="EUR">\n <ps_code prefix="ULES" suffix="00043"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Valve\\Lumines"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="LuminesSupernova">\n <title>Lumines Supernova</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUB" suffix="30048"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="LureOfTheTemptress">\n <title>Lure of the Temptress</title>\n <version platform="ScummVM">\n <scummvm name="lure"/>\n <locations>\n <path ev="installlocation" path="GOG.com\\Lure of the Temptress"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGLURE" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Lure of the Temptress\\Lure of the Temptress.lnk"/>\n </locations>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Machinarium">\n <title>Machinarium</title>\n <version platform="Flash">\n <locations>\n <path ev="flashshared" path="localhost\\program files\\steam\\steamapps\\common\\machinarium"/>\n <path ev="flashshared" path="localhost\\steam\\steamapps\\common\\machinarium"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="MadballsBaboInvasion">\n <title>Madballs in.. BaboInvasion</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="25700"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Mafia">\n <title>Mafia</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Mafia"/>\n <path ev="steamcommon" path="mafia"/>\n </locations>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Mafia2" follows="Mafia">\n <title>Mafia II</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="2K Games\\Mafia II"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Magicka">\n <title>Magicka</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="Magicka"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Majesty">\n <title>Majesty</title>\n <version os="Windows" release="GoldHD">\n <locations>\n <path ev="userdocuments" path="My Games\\MajestyHD"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Majesty2">\n <title>Majesty 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="majesty2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Manhunt">\n <title>Manhunt</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Manhunt User Files"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Manhunt2" follows="Manhunt">\n <title>Manhunt 2</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Rockstar Games\\Manhunt 2"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save path="settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="MarkLeungRevengeOfTheBitch">\n <title>Mark Leung: Revenge of the Bitch</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Uglysoft\\MarkLeung"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Mark Leung - Revenge of the Bitchv1.3" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Mark Leung - Revenge of the Bitch\\MarkLeung.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="MartianMemorandum" follows="MeanStreets">\n <title>Martian Memorandum</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Tex Murphy 1 and 2\\Martian Memorandum"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTEX2" value="SAVEGAMEFOLDER"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Tex Murphy 1 and 2\\Martian Memorandum\\Martian Memorandum.lnk" append="Martian Memorandum" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.GAM"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MassEffect">\n <title>Mass Effect</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BioWare\\Mass Effect"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="Config" filename="BIOGame.ini"/>\n <save path="Config" filename="BIOInput.ini"/>\n </files>\n <contributor>Christian Hamann</contributor>\n </version>\n </game>\n <game name="MassEffect2" follows="MassEffect">\n <title>Mass Effect 2</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30650"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BioWare\\Mass Effect 2"/>\n </locations>\n <files type="Saves">\n <save path="BIOGame\\Profile"/>\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="BIOGame\\Config"/>\n </files>\n <contributor>Christian Hamann</contributor>\n </version>\n </game>\n <game name="MassEffect3" follows="MassEffect2">\n <title>Mass Effect 3</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="BioWare\\Mass Effect 3"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="BIOGame\\Config"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="MasterOfMagic">\n <title>Master of Magic</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Master Of Magic"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMASTEROFMAGIC" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Master of Magic\\Master of Magic.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SAVE*.GAM"/>\n </files>\n <contributor>Mark Barbour</contributor>\n </version>\n </game>\n <game name="MasterOfOrion">\n <title>Master of Orion</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Master of Orion 1 and 2\\Master of Orion 1"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMASTEROFORION1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Master of Orion 1 and 2\\Master of Orion\\Documents\\Readme.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="SAVE*.GAM"/>\n </files>\n <files type="Settings">\n <save filename="CONFIG.MOO"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MasterOfOrion2" follows="MasterOfOrion">\n <title>Master of Orion 2: Battle at Antares</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Master of Orion 1 and 2\\Master of Orion 2"/>\n <path ev="installlocation" path="Microprose\\Orion2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMASTEROFORION2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Master of Orion 1 and 2\\Master of Orion 2\\Documents\\Readme.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Microprose\\Master of Orion II\\Master of Orion II.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="SAVE*.GAM"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MatrixPathOfNeo">\n <title>The Matrix: Path of Neo</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Atari\\The Matrix - Path of Neo"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{E571E8B1-9771-465D-9DE0-3BA2D1BDAE99}" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Atari\\The Matrix - Path of Neo\\The Matrix - Path of Neo.lnk"/>\n </locations>\n <files type="Saves">\n <save path="saved"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MaxPayne">\n <title>Max Payne</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Max Payne Savegames"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="MaxPayne2" follows="MaxPayne">\n <title>Max Payne 2: The Fall of Max Payne</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Max Payne 2 Savegames"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="MDK">\n <title>MDK</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\MDK"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMDK" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\MDK\\MDK.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVES"/>\n </files>\n <files type="Settings">\n <save filename="MDK.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MDK2" follows="MDK">\n <title>MDK 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\MDK2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMDK2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\MDK2\\MDK 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save" filename="*.sav"/>\n </files>\n <files type="Settings">\n <save path="save" filename="*.lua"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MeanStreets">\n <title>Mean Streets</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Tex Murphy 1 and 2\\Mean Streets"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTEX1" value="SAVEGAMEFOLDER"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Tex Murphy 1 and 2\\Mean Streets\\Mean Streets.lnk" append="Mean Streets" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.GAM"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MechCommander">\n <title>MechCommander</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="FasaInteractive\\MechCmdr"/>\n <registry root="local_machine" key="SOFTWARE\\FASA Interactive\\MechCommander" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Microprose\\MechCommander\\Mech Commander.lnk"/>\n </locations>\n <files type="Saves">\n <save path="data\\savegame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MechCommander2" follows="MechCommander">\n <title>MechCommander 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Microsoft Games\\MechCommander2"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Microsoft Games\\MechCommander2\\1.0" value="EXE Path"/>\n <shortcut ev="startmenu" path="Programs\\Microsoft Games\\MechCommander 2\\MechCommander 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="data\\savegame"/>\n </files>\n <files type="Settings">\n <save filename="*.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MechWarrior2">\n <title>MechWarrior 2: 31st Century Combat</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Activision\\BattlePack\\MW2"/>\n <shortcut ev="startmenu" path="Programs\\BattlePack\\MechWarrior 2\\MechWarrior 2 Uninstall.lnk"/>\n </locations>\n <files type="Mechs">\n <save path="mek"/>\n </files>\n <files type="Saves">\n <save filename="userstar.bwd"/>\n </files>\n <files type="Settings">\n <save filename="MW2PRM.CFG"/>\n <save filename="MW2REG.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="TitaniumEdition">\n <title>MechWarrior 2: 31st Century Combat: Titanium Edition</title>\n <locations>\n <path ev="altsavepaths" path="MechVM\\games\\mw2-31stcc-tt"/>\n <path ev="installlocation" path="Activision\\Titanium\\Mechwarrior2"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\Activenet\\Applications\\1020.2.1" value="Cwd"/>\n <shortcut ev="startmenu" path="Programs\\Titanium\\Mechwarrior2\\Play MechWarrior2.lnk" detract="splash"/>\n </locations>\n <files type="Mechs">\n <save path="mek"/>\n </files>\n <files type="Saves">\n <save filename="userstar.bwd"/>\n </files>\n <files type="Settings">\n <save filename="MW2PRM.CFG"/>\n <save filename="MW2REG.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="MechWarrior2GhostBearsLegacy" for="MechWarrior2">\n <title>MechWarrior 2: Ghost Bear''s Legacy</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Activision\\Ghost Bear"/>\n <shortcut ev="startmenu" path="Programs\\Ghost Bear''s Legacy\\Ghost Bear''s Legacy.lnk"/>\n </locations>\n <files type="Mechs">\n <save path="mek"/>\n </files>\n <files type="Saves">\n <save filename="userstar.bwd"/>\n </files>\n <files type="Settings">\n <save filename="MW2PRM.CFG"/>\n <save filename="MW2REG.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="TitaniumEdition">\n <title>MechWarrior 2: Ghost Bear''s Legacy: Titanium Edition</title>\n <locations>\n <path ev="altsavepaths" path="MechVM\\games\\mw2-gbl-tt"/>\n <path ev="installlocation" path="Activision\\Titanium\\GhostBearsLegacy"/>\n <shortcut ev="startmenu" path="Programs\\Titanium\\GhostBearsLegacy\\Play Ghost Bear''s Legacy.lnk" detract="splash"/>\n </locations>\n <files type="Mechs">\n <save path="mek"/>\n </files>\n <files type="Saves">\n <save filename="userstar.bwd"/>\n </files>\n <files type="Settings">\n <save filename="MW2PRM.CFG"/>\n <save filename="MW2REG.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="MechWarrior2Mercenaries" follows="MechWarrior2">\n <title>MechWarrior 2: Mercenaries</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Activision\\Mercenaries"/>\n <shortcut ev="startmenu" path="Programs\\Mercenaries\\Mercenaries.lnk"/>\n </locations>\n <files type="Mechs">\n <save path="mek"/>\n </files>\n <files type="Saves">\n <save filename="userstar.bwd"/>\n </files>\n <files type="Settings">\n <save filename="MW2PRM.CFG"/>\n <save filename="MW2REG.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="TitaniumEdition">\n <title>MechWarrior 2: Mercenaries: Titanium Edition</title>\n <locations>\n <path ev="altsavepaths" path="MechVM\\games\\mw2-mercs-tt"/>\n <path ev="installlocation" path="Activision\\Titanium\\Mercenaries"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\Activenet\\Applications\\1060.2.1" value="Cwd"/>\n <shortcut ev="startmenu" path="Programs\\Titanium\\Mercenaries\\Play Mercenaries.lnk" detract="splash"/>\n </locations>\n <files type="Mechs">\n <save path="mek"/>\n </files>\n <files type="Saves">\n <save filename="userstar.bwd"/>\n </files>\n <files type="Settings">\n <save filename="MW2PRM.CFG"/>\n <save filename="MW2REG.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MechWarrior3" follows="MechWarrior2Mercenaries">\n <title>MechWarrior 3</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="MicroProse\\MechWarrior3"/>\n <registry root="local_machine" key="SOFTWARE\\MicroProse\\MechWarrior 3\\1.0" value="Program"/>\n </locations>\n <files type="Mechs">\n <save filename="*.mw3"/>\n <save path="configs"/>\n </files>\n <files type="Saves">\n <save path="pilots"/>\n </files>\n <files type="Settings">\n <save path="Keys"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="MechWarrior3PiratesMoon" for="MechWarrior3">\n <title>MechWarrior 3: Pirate''s Moon</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="MicroProse\\MechWarrior 3 Pirate''s Moon"/>\n </locations>\n <files type="Mechs">\n <save path="configs"/>\n </files>\n <files type="Saves">\n <save path="pilots"/>\n </files>\n <files type="Settings">\n <save path="Keys"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <expansion name="MechWarrior4BlackKnight" for="MechWarrior4Vengeance">\n <title>MechWarrior 4: Black Knight</title>\n <version os="Windows">\n <locations>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Microsoft Games\\MechWarrior Black Knight" value="EXE Path"/>\n <parent name="MechWarrior4Vengeance" os="Windows"/>\n </locations>\n <files type="Mechs">\n <save path="resource\\Variantsx"/>\n </files>\n <files type="Saves">\n <save path="resource\\Pilotsx"/>\n </files>\n <files type="Settings">\n <save filename="optionsx.ini"/>\n </files>\n <identifier filename="optionsx.ini"/>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="MechWarrior4Mercenaries" follows="MechWarrior4Vengeance">\n <title>MechWarrior 4: Mercenaries</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Microsoft Games\\Mechwarrior Mercenaries"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Microsoft Games\\MechWarrior Mercenaries" value="EXE Path"/>\n </locations>\n <files type="Mechs">\n <save path="RESOURCE\\VariantsMercs"/>\n </files>\n <files type="Saves">\n <save path="RESOURCE\\Pilots"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MechWarrior4Vengeance" follows="MechWarrior3">\n <title>MechWarrior 4: Vengeance</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Microsoft Games\\MechWarrior Vengeance"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Microsoft Games\\MechWarrior Vengeance" value="EXE Path"/>\n </locations>\n <files type="Mechs">\n <save path="resource\\variants"/>\n </files>\n <files type="Saves">\n <save path="resource\\pilots"/>\n </files>\n <files type="Settings">\n <save filename="options.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MedalOfHonor2010">\n <title>Medal of Honor (2010)</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="EA Games\\Medal of Honor"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Medieval2TotalWar">\n <title>Medieval II: Total War</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="SEGA\\Medieval II Total War"/>\n <path ev="steamcommon" path="medieval ii total war"/>\n <registry root="local_machine" key="SOFTWARE\\SEGA\\Medieval II Total War" value="AppPath"/>\n <shortcut ev="startmenu" path="Programs\\SEGA\\Medieval II Total War\\Launch Medieval II Total War.lnk"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="Medieval2TotalWarKingdomsAmericas" for="Medieval2TotalWar">\n <title>Medieval II: Total War: Kingdoms</title>\n <version os="Windows" release="Americas">\n <title>Medieval II: Total War: Kingdoms (Americas)</title>\n <locations>\n <parent name="Medieval2TotalWar" os="Windows" append="mods\\americas"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="Britannia">\n <title>Medieval II: Total War: Kingdoms (Britannia)</title>\n <locations>\n <parent name="Medieval2TotalWar" os="Windows" append="mods\\british_isles"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="Crusades">\n <title>Medieval II: Total War: Kingdoms (Crusades)</title>\n <locations>\n <parent name="Medieval2TotalWar" os="Windows" append="mods\\crusades"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="Teutonic">\n <title>Medieval II: Total War: Kingdoms (Teutonic)</title>\n <locations>\n <parent name="Medieval2TotalWar" os="Windows" append="mods\\teutonic"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="Megarace">\n <title>Megarace</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Megarace\\Megarace"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMEGARACE" value="SAVEGAMEFOLDER"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Megarace\\Megarace\\Megarace.lnk" append="Megarace" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Megarace2" follows="Megarace">\n <title>Megarace 2</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Megarace\\Megarace 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMEGARACE2" value="SAVEGAMEFOLDER"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Megarace\\Megarace 2\\Megarace 2.lnk" append="Megarace 2" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="TEXTE" filename="*.SAV"/>\n </files>\n <files type="Statistics">\n <save filename="HALL.DAT"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Megarace3" follows="Megarace2">\n <title>Megarace 3</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Megarace 3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMEGARACE3" value="SAVEGAMEFOLDER"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Megarace 3\\Megarace 3.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Messiah">\n <title>Messiah</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Messiah"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGMESSIAH" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Messiah\\Messiah.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <files type="Settings">\n <save filename="Messiah.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MetalGearAcid">\n <title>Metal Gear Ac!d</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10006"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PSP" region="EUR">\n <ps_code prefix="ULES" suffix="00008"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="MetalGearAcid2" follows="MetalGearAcid">\n <title>Metal Gear Ac!d 2</title>\n <version os="PSP" region="EUR">\n <ps_code prefix="ULES" suffix="00284"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="MetalGearSolid">\n <title>Metal Gear Solid</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00594"/>\n <ps_code prefix="SLUS" suffix="00776"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MetalGearSolid2" follows="MetalGearSolid">\n <title>Metal Gear Solid 2: Sons of Liberty</title>\n <version os="PS2" region="USA" release="Substance">\n <title>Metal Gear Solid 2: Substance</title>\n <ps_code prefix="SLUS" suffix="20554"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MetalGearSolid3" follows="MetalGearSolid2">\n <title>Metal Gear Solid 3: Snake Eater</title>\n <version os="PS2" region="USA" release="Subsistence">\n <title>Metal Gear Solid 3: Subsistence</title>\n <ps_code prefix="SLUS" suffix="21243"/>\n <ps_code prefix="SLUS" suffix="21359"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MetalGearSolidPortableOps">\n <title>Metal Gear Solid: Portable Ops</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10202"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MetalGearSolidVRMissions">\n <title>Metal Gear Solid: VR Missions</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00957"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Metro2033">\n <title>Metro 2033</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="4A Games\\Metro 2033"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Håvard Krüger</contributor>\n </version>\n </game>\n <game name="MidnightClub2">\n <title>Midnight Club 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="Midnight Club 2"/>\n </locations>\n <files type="Saves">\n <save path="userdata">\n <except path="userdata\\mp3"/>\n </save>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="MiG29Fulcrum">\n <title>MiG-29 Fulcrum</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="NovaLogic\\MiG-29 Fulcrum"/>\n <registry root="local_machine" key="SOFTWARE\\NovaLogic\\MiG-29 Fulcrum\\1.00.000" value="ExecPath"/>\n <shortcut ev="startmenu" path="Programs\\NovaLogic\\MiG-29 Fulcrum\\MiG-29 Fulcrum.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="mslot*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Minecraft">\n <title>Minecraft</title>\n <version os="Android">\n <locations>\n <path ev="drive" path="games\\com.mojang\\minecraftWorlds"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MiniNinjas">\n <title>Mini Ninjas</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Eidos\\Mini Ninjas" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="MirrorsEdge">\n <title>Mirror''s Edge</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30179"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="EA Games\\Mirror''s Edge"/>\n </locations>\n <files type="Saves">\n <save path="TdGame\\Savefiles"/>\n </files>\n <files type="Settings">\n <save path="TdGame\\Config"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MisadventuresOfPBWinterbottom">\n <title>The Misadventures of P.B. Winterbottom</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="2K Play\\The Misadventures of P.B. Winterbottom"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="MishapAnAccidentalHaunting">\n <title>Mishap: An Accidental Haunting</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Virtual Prophecy\\Mishap"/>\n </locations>\n <files type="Saves">\n <save path="Mishap.cs.dso"/>\n <save path="profiles"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="MonkeyIsland2LeChucksRevenge" follows="SecretOfMonkeyIsland">\n <title>Monkey Island™ 2 LeChuck’s Revenge</title>\n <version platform="SteamCloud" release="SpecialEdition">\n <title>Monkey Island™ 2 Special Edition: LeChuck’s Revenge</title>\n <locations>\n <path ev="steamuserdata" path="32460"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n <version os="Windows" release="SpecialEdition">\n <title>Monkey Island™ 2 Special Edition: LeChuck’s Revenge</title>\n <locations>\n <path ev="appdata" path=" LucasArts\\Monkey Island 2 Special Edition "/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="MoonbaseAlpha">\n <title>Moonbase Alpha</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Moonbase Alpha"/>\n </locations>\n <files type="Saves">\n <save path="Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="MortalKombatArcadeKollection">\n <title>Mortal Combat: Arcade Kollection</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUB" suffix="30468"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Mortyr">\n <title>Mortyr 2093-1944</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Mortyr"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Mortyr_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Mortyr\\Mortyr.lnk"/>\n </locations>\n <files type="Saves">\n <save path="data" filename="*.sav"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="MosbysConfederacy">\n <title>Mosby''s Confederacy</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Tilted Mill\\Mosby''s Confederacy"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MotocrossMadness">\n <title>Motocross Madness</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Microsoft Games\\Motocross Madness"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\Motocross Madness" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Microsoft Games\\Motocross Madness\\Play Motocross Madness.lnk"/>\n </locations>\n <files type="Saves">\n <save path="ui\\profile"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="MountAndBlade">\n <title>Mount & Blade</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Mount&Blade Savegames"/>\n </locations>\n <files type="Saves">\n <save path="Native" filename="*.sav"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="MountAndBladeWarband" follows="MountAndBlade">\n <title>Mount & Blade: Warband</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Mount&Blade Warband Savegames"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="MUDTV">\n <title>M.U.D. TV</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="MudTV"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save filename="config.cfg"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Myst">\n <title>Myst</title>\n <version os="Windows">\n <locations>\n <path ev="altsavepaths"/>\n <path ev="userdocuments" path="Myst"/>\n </locations>\n <files type="Saves">\n <save filename="*.mys"/>\n </files>\n <identifier filename="*.mys"/>\n <comment>Checks for saves in Documents\\Myst and Alt. Save Paths</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Myst3" follows="Riven">\n <title>Myst III: Exile</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Ubi Soft\\Myst III Exile"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\M3.exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save path="Saved Games"/>\n </files>\n <files type="Settings">\n <save path="bin" filename="M3prefs.m3p"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Myst4" follows="Myst3">\n <title>Myst IV: Revelation</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Ubisoft\\Myst IV - Revelation"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{96F702F3-7CA4-41B5-A70A-4F348DF99A9A}" value="InstallLocation"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Myst5" follows="Myst4">\n <title>Myst V: End of Ages</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Myst V End of Ages"/>\n </locations>\n <files type="Saves">\n <save filename="progress.db"/>\n <save path="sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <mod name="NamelessMod" for="DeusEx">\n <title>The Nameless Mod</title>\n <version os="Windows">\n <locations>\n <shortcut ev="startmenu" path="Programs\\The Nameless Mod\\The Nameless Mod.lnk" append="TNM" detract="System"/>\n <parent name="DeusEx" os="Windows" append="TNM"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="System" filename="*.ini"/>\n </files>\n <contributor>Trestkon</contributor>\n </version>\n </mod>\n <game name="NapoleonTotalWar">\n <title>Napoleon: Total War</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="The Creative Assembly\\Napoleon"/>\n </locations>\n <files type="Saves">\n <save path="save_games "/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="NationRed">\n <title>Nation Red</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="NationRed"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="NavalWarfare">\n <title>Naval Warfare</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Naval Warfare"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="NecrovisioNLostCompany">\n <title>NecrovisioN: Lost Company</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="necrovision lost company"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="NeedForSpeedHotPursuit">\n <title>Need For Speed: Hot Pursuit</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Criterion Games\\Need for Speed(TM) Hot Pursuit"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="NeedForSpeedShift" follows="NeedForSpeedUndercover">\n <title>Need For Speed: Shift</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="NFS SHIFT"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="NeedForSpeedUndercover">\n <title>Need For Speed: Undercover</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="NFS Undercover"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="NeuroHunter">\n <title>Neuro Hunter</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Deep Silver\\Neuro Hunter"/>\n <registry root="local_machine" key="SOFTWARE\\Deep Silver\\Neuro Hunter" value="INSTALL_DIR"/>\n <shortcut ev="startmenu" path="Programs\\Deep Silver\\Neuro Hunter\\Play Neuro Hunter.lnk"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="NeverwinterNights">\n <title>Neverwinter Nights</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Neverwinter Nights Diamond Edition"/>\n <path ev="installlocation" path="NeverwinterNights\\NWN"/>\n <registry root="local_machine" key="SOFTWARE\\BioWare\\NWN\\Neverwinter" value="Location"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGNWNDIAMOND" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Neverwinter Nights Diamond Edition\\Neverwinter Nights Diamond Edition.lnk"/>\n </locations>\n <files type="Characters">\n <save path="dmvault"/>\n <save path="localvault"/>\n <save path="servervault"/>\n </files>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save filename="nwn.ini"/>\n <save filename="nwnplayer.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="NeverwinterNights2" follows="NeverwinterNights">\n <title>Neverwinter Nights 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Neverwinter Nights 2"/>\n </locations>\n <files type="Characters">\n <save path="dmvault"/>\n <save path="localvault"/>\n <save path="servervault"/>\n </files>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="NightSky">\n <title>Night Sky</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Nicalis\\NightSky"/>\n </locations>\n <files type="Saves">\n <save filename="Default.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Nikopol">\n <title>Nikopol: Secrets of the Immortals</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Nikopol"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Nimbus">\n <title>Nimbus</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="50000"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="NinjaBlade">\n <title>Ninja Blade</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="NinjaBlade"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="NoGravity">\n <title>No Gravity</title>\n <version os="PSP" region="USA">\n <ps_code prefix="NPUH" suffix="10007"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="No Gravity Savegames"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="NoOneLivesForever">\n <title>No One Lives Forever</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Fox\\No One Lives Forever"/>\n <registry root="local_machine" key="SOFTWARE\\Monolith Productions\\No One Lives Forever\\1.0" value="WorkingDirectory"/>\n <shortcut ev="startmenu" path="Programs\\Fox Interactive\\No One Lives Forever\\No One Lives Forever - Game of the Year Edition.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Fox Interactive\\No One Lives Forever\\No One Lives Forever.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="autoexec.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="NoOneLivesForever2" follows="NoOneLivesForever">\n <title>No One Lives Forever 2: A Spy In H.A.R.M.''s Way</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Fox\\No One Lives Forever 2"/>\n <registry root="local_machine" key="SOFTWARE\\Monolith Productions\\No One Lives Forever 2\\1.0" value="InstallDir"/>\n <shortcut ev="startmenu" path="Programs\\Fox Interactive\\No One Lives Forever 2\\No One Lives Forever 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="autoexec.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Normality">\n <title>Normality</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Normality"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGNORMALITY" value="SAVEGAMEFOLDER"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Normality\\Normality.lnk" append="Normality" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="SAVEGAME"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="OddworldAbesExoddus" follows="OddworldAbesOddysee">\n <title>Oddworld: Abe''s Exoddus</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Abe''s Exoddus"/>\n <path ev="steamcommon" path="oddworld abes exoddus"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGABESEXODDUS" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Abe''s Exoddus\\Abe''s Exoddus.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="OddworldAbesOddysee">\n <title>Oddworld: Abe''s Oddysee</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Abe''s Oddysee"/>\n <path ev="steamcommon" path="oddworld abes oddysee"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGABESODDYSEE" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Abe''s Oddysee\\Abe''s Oddysee.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="OddworldMunchsOddysee" follows="OddworldAbesExoddus">\n <title>Oddworld: Munch''s Oddysee</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="oddworld munchs oddysee"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="OddworldStrangersWrath" follows="OddworldMunchsOddysee">\n <title>Oddworld: Stranger''s Wrath</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="stranger''s wrath" deprecated="true"/>\n <path ev="userdocuments" path="Oddworld\\Stranger''s Wrath"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="config.txt"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="OkageShadowKing">\n <title>Okage: Shadow King</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97129"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Okami">\n <title>Okami</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21115"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="OmikronTheNomadSoul">\n <title>Omikron: The Nomad Soul</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Eidos Interactive\\Quantic Dream\\Omikron The Nomad Soul"/>\n <shortcut ev="startmenu" path="Programs\\Eidos Interactive\\Quantic Dream\\Omikron The Nomad Soul\\Omikron The Nomad Soul.lnk"/>\n </locations>\n <files type="Saves">\n <save path="IAM" filename="GAMES"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="OneUnitWholeBlood">\n <title>One Unit: Whole Blood</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\One Unit Whole Blood"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGONEUNITONEBLOOD" value="SAVEGAMEFOLDER"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\One Unit Whole Blood\\One Unit Whole Blood.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <files type="Settings">\n <save filename="BLOOD.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Oni">\n <title>Oni</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Oni"/>\n </locations>\n <files type="Saves">\n <save filename="persist.dat"/>\n </files>\n <files type="Settings">\n <save filename="key_config.txt"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="OperationFlashpointDragonRising">\n <title>Operation Flashpoint: Dragon Rising</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\OFDR"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="OperationFlashpointRedRiver" follows="OperationFlashpointDragonRising">\n <title>Operation Flashpoint: Red River</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\OFRR"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="OrcsMustDie">\n <title>Orcs Must Die!</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Orcs Must Die"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Osmos">\n <title>Osmos</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Osmos"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="Outcast">\n <title>Outcast</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Outcast"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGOUTCAST" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Outcast\\Outcast.lnk"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Outpost2DividedDestiny">\n <title>Outpost 2: Divided Destiny</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="SIERRA\\Outpost2"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\Outpost2" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\Sierra\\Outpost 2.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.OP2"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Overlord">\n <title>Overlord</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Overlord"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="Overlord2" follows="Overlord">\n <title>Overlord II</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Overlord II"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Painkiller">\n <title>Painkiller</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="DreamCatcher\\Painkiller Gold Edition"/>\n <path ev="installlocation" path="GOG.com\\Painkiller Black"/>\n <path ev="steamcommon" path="painkiller gold edition"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPAINKILLERBLACK" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\PeopleCanFly\\Painkiller" value="AddonPath"/>\n <registry root="local_machine" key="SOFTWARE\\PeopleCanFly\\Painkiller" value="EXEpath" detract="Bin\\Painkiller.exe"/>\n <shortcut ev="startmenu" path="Programs\\DreamCatcher\\Painkiller Gold Edition\\Painkiller.lnk" detract="Bin"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Painkiller Black\\Painkiller Black.lnk" detract="Bin"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PainkillerRedemption" follows="Painkiller">\n <title>Painkiller: Redemption</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Painkiller Redemption"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="PandoraDirective" follows="UnderAKillingMoon">\n <title>The Pandora Directive</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\The Pandora Directive"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTEX4" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\The Pandora Directive\\The Pandora Directive.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="GAMES"/>\n <save path="PLAYERS"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ParasiteEve">\n <title>Parasite Eve</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00662"/>\n <ps_code prefix="SLUS" suffix="00668"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ParasiteEve2" follows="ParasiteEve">\n <title>Parasite Eve II</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="01042"/>\n <ps_code prefix="SLUS" suffix="01055"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Patapon">\n <title>Patapon</title>\n <version os="PSP" region="USA">\n <ps_code prefix="UCUS" suffix="98711"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Path">\n <title>The Path</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="the path"/>\n </locations>\n <files type="Saves">\n <save path="userdata"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Pathologic">\n <title>Pathologic</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Pathologic"/>\n <registry root="local_machine" key="SOFTWARE\\Ice-pick Lodge\\Mor. Utopia" detract="bin\\Final\\Game.exe"/>\n <shortcut ev="startmenu" path="Programs\\Buka\\Pathologic\\Pathologic.lnk" detract="bin\\Final"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="PaydayTheHeist">\n <title>Payday: The Heist</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="24240\\remote"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Peggle">\n <title>Peggle</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="30005"/>\n <comment>Includes the Peggle Nights PS3 addon</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PeggleDeluxe">\n <title>Peggle Deluxe</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="PopCap Games\\Peggle" only_for="WindowsVista"/>\n <path ev="allusersprofile" path="Steam\\Peggle" only_for="WindowsVista"/>\n <path ev="steamcommon" path="peggle deluxe" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="userdata" filename="*.dat"/>\n <save path="userdata" filename="*.sav"/>\n </files>\n <identifier path="userdata"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PeggleExtreme">\n <title>Peggle Extreme</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Steam\\PeggleExtreme" only_for="WindowsVista"/>\n <path ev="steamcommon" path="peggle extreme" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="userdata"/>\n </files>\n <identifier path="userdata"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PeggleNights">\n <title>Peggle Nights</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="PopCap Games\\PeggleNights" only_for="WindowsVista"/>\n <path ev="allusersprofile" path="Steam\\PeggleNights" only_for="WindowsVista"/>\n <path ev="steamcommon" path="peggle nights" only_for="WindowsXP"/>\n <registry root="current_user" key="Software\\PopCap\\PeggleNights" value="RunPath" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="userdata"/>\n </files>\n <identifier path="userdata"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PeggleWOWEdition">\n <title>Peggle World of Warcraft Edition</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="PopCap Games\\PeggleWoW" only_for="WindowsVista"/>\n <path ev="installlocation" path="PopCap Games\\Peggle World of Warcraft Edition" only_for="WindowsXP"/>\n <registry root="local_machine" key="SOFTWARE\\PopCap\\PeggleWoW" value="InstallPath" only_for="WindowsXP"/>\n <shortcut ev="startmenu" path="Programs\\PopCap Games\\Peggle World of Warcraft Edition\\Play Peggle World of Warcraft Edition.lnk" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="userdata"/>\n </files>\n <identifier path="userdata"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PennyArcadeAdventures1">\n <title>Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness, Episode One</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="HotheadGames\\RainSlickEp1"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="prefs.cs"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PennyArcadeAdventures2" follows="PennyArcadeAdventures1">\n <title>Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness, Episode Two</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="HotheadGames\\RainSlickEp2"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="prefs.cs"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PenumbraBlackPlague" follows="PenumbraOverture">\n <title>Penumbra: Black Plague</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Penumbra\\Black Plague"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <files type="Settings">\n <save filename="settings.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PenumbraOverture">\n <title>Penumbra Overture</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Penumbra Overture\\Episode1"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <files type="Settings">\n <save filename="settings.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="PenumbraRequiem" for="PenumbraBlackPlague">\n <title>Penumbra: Requiem</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Penumbra\\Requiem"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <files type="Settings">\n <save filename="settings.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="Phantasmagoria">\n <title>Phantasmagoria</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Phantasmagoria"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPHANTASMAGORIA" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Roberta Williams Phantasmagoria\\Roberta Williams Phantasmagoria.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="PHANTSG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Phantasmagoria2APuzzleOfFlesh" follows="Phantasmagoria">\n <title>Phantasmagoria 2: A Puzzle of Flesh</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Phantasmagoria 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPHANTASMAGORIA2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Phantasmagoria 2 A Puzzle of Flesh\\Phantasmagoria 2 A Puzzle of Flesh.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="P2SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Pirates">\n <title>Sid Meier''s Pirates!</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Sid Meier''s Pirates!"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PlanescapeTorment">\n <title>Planescape: Torment</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Black Isle\\Planescape - Torment"/>\n <path ev="installlocation" path="GOG.com\\Planescape Torment"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPLANESCAPETOURMENT" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\torment.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Planescape Torment\\Planescape Torment.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Planetfall">\n <title>Planetfall</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Zork Anthology\\Planetfall"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPLANETFALL" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Zork Anthology\\Planetfall\\Planetfall.lnk" append="Planetfall" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="SAVE" filename="*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PlantsVsZombies">\n <title>Plants Vs. Zombies</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Steam\\PlantsVsZombies" only_for="WindowsVista"/>\n <path ev="steamcommon" path="plants vs zombies" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="userdata"/>\n </files>\n <identifier path="userdata"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="PlantTycoon">\n <title>Plant Tycoon</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="LDW\\plant tycoon"/>\n </locations>\n <files type="Saves">\n <save filename="*.ldw"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="PocketTanks">\n <title>Pocket Tanks</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Pocket Tanks"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PokerNightAtTheInventory">\n <title>Poker Night at the Inventory</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Poker Night at the Inventory"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Portal">\n <title>Portal</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="portal"/>\n </locations>\n <files type="Saves">\n <save path="portal\\SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Portal2" follows="Portal">\n <title>Portal 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="portal 2"/>\n </locations>\n <files type="Saves">\n <save path="portal2\\SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PortRoyale">\n <title>Port Royale</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Port Royale"/>\n <registry root="local_machine" key="SOFTWARE\\Ascaron\\Port Royale" value="InstalledTo"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPORTROYALE" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Port Royale\\Port Royale.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>David Barbour</contributor>\n </version>\n </game>\n <game name="Postal">\n <title>Postal</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Postal Classic and Uncut"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPOSTAL1CU" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Running With Scissors\\Postal Classic & Uncut" value="InstallDir"/>\n <shortcut ev="startmenu" path="GOG.com\\Postal Classic and Uncut\\Postal Classic and Uncut.lnk"/>\n </locations>\n <files type="Saves">\n <save path="res\\SaveGame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Postal2" follows="Postal">\n <title>Postal 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Postal 2 Share The Pain"/>\n <path ev="installlocation" path="Postal2STP"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPOSTAL2STP" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Running With Scissors\\Postal2STP\\Full\\US" value="InstallDir"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Postal 2 Share The Pain\\Postal 2 Share The Pain.lnk" detract="System"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="Postal2ApocalypseWeekend" for="Postal2">\n <title>Postal 2: Apocalypse Weekend</title>\n <version os="Windows">\n <locations>\n <registry root="local_machine" key="SOFTWARE\\Running With Scissors\\Postal2AW" value="InstallDir"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Postal 2 Share The Pain\\Postal 2 Apocalypse Weekend Expansion Pack.lnk" detract="System"/>\n <parent name="Postal2" os="Windows" append="ApocalypseWeekend"/>\n </locations>\n <files type="Saves">\n <save path="AWSave"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="PostMortem">\n <title>Post Mortem</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Post_Mortem Saves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PoundOfGround">\n <title>Pound of Ground</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="33980"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Precursors">\n <title>Precursors</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\Precursors" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\Precursors" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <files type="Settings">\n <save path="INI"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Prey">\n <title>Prey</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\PREY"/>\n </locations>\n <files type="Saves">\n <save path="base\\savegames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PrimalPrey">\n <title>Primal Prey</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Primal Prey"/>\n <registry root="local_machine" key="SOFTWARE\\ARUSH\\Primal Prey\\1.0.0.1" value="EXE" detract="PrimalPrey.exe"/>\n <shortcut ev="startmenu" path="Programs\\Primal Prey\\Play Primal.lnk"/>\n </locations>\n <files type="Settings">\n <save filename="config.cfg"/>\n </files>\n <files type="Trophies">\n <save filename="trophies.txt"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PrinceOfPersia2008">\n <title>Prince of Persia (2008)</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30214"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Prince of Persia"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="PrinceOfPersiaForgottenSands" follows="PrinceOfPersiaWarriorWithin">\n <title>Prince of Persia: The Forgotten Sands</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30401"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PrinceOfPersiaSandsOfTime">\n <title>Prince of Persia: The Sands of Time</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20743"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30754" append="DIRSOT"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Prince of Persia The Sands of Time"/>\n <path ev="installlocation" path="Ubisoft\\Prince of Persia The Sands of Time"/>\n <path ev="steamcommon" path="prince of persia the sands of time"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPOP1" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\UBISOFT\\Prince of Persia The Sands of Time\\1.00.181" value="Product_Path"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Prince of Persia The Sands of Time\\Prince of Persia The Sands of Time.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Ubisoft\\Prince of Persia The Sands of Time\\Play Prince of Persia The Sands of Time.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>Caleb Love</contributor>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PrinceOfPersiaTwoThrones" follows="PrinceOfPersiaWarriorWithin">\n <title>Prince of Persia: The Two Thrones</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21287"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30754" append="DIRTT"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PrinceOfPersiaWarriorWithin" follows="PrinceOfPersiaSandsOfTime">\n <title>Prince of Persia: Warrior Within</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21022"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30754" append="DIRWOW"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ProjectBlackSun">\n <title>Project Black Sun</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="ProjectBlackSun"/>\n </locations>\n <files type="Saves">\n <save filename="savedata.xml"/>\n </files>\n <files type="Settings">\n <save filename="config.xml"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ProjectSnowblind">\n <title>Project Snowblind</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Project Snowblind"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Prototype">\n <title>Prototype</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Prototype"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Psychonauts">\n <title>Psychonauts</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="3830"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21120"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Psychonauts"/>\n <path ev="installlocation" path="psychonauts"/>\n <path ev="steamcommon" path="psychonauts"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPSYCHONAUTS" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{A129D1F2-CAC4-4AD7-B26D-3C6411B87DCC}" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Psychonauts\\Psychonauts.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="PuzzleAgent">\n <title>Puzzle Agent</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Puzzle Agent"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="PuzzleQuest2" follows="PuzzleQuestChallengeOfTheWarlords">\n <title>Puzzle Quest 2</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Namco\\Puzzle Quest 2"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Statistics">\n <save path="High Scores"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="PuzzleQuestChallengeOfTheWarlords">\n <title>Puzzle Quest: Challenge of the Warlords</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Puzzle Quest"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Statistics">\n <save path="High Scores"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Quake2">\n <title>Quake II</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="quake 2"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Quake2_exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save path="baseq2\\save"/>\n </files>\n <contributor>Jetsetlemming</contributor>\n </version>\n </game>\n <game name="Quake4" follows="Quake2">\n <title>Quake 4</title>\n <version os="Windows" virtualstore="ignore" detect="required">\n <locations>\n <path ev="installlocation" path="id Software\\Quake 4"/>\n <path ev="steamcommon" path="Quake 4"/>\n <registry root="local_machine" key="SOFTWARE\\id\\Quake 4" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\Quake 4\\Quake 4 single player.lnk"/>\n </locations>\n <files type="Saves">\n <save path="q4base\\savegames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Quantz">\n <title>Quantz</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="37800"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RACE07">\n <title>RACE 07</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="SimBin\\RACE 07"/>\n </locations>\n <files type="Replays">\n <save path="REPLAYDATA"/>\n </files>\n <files type="Saves">\n <save path="UserData">\n <except path="ReplayTempFiles"/>\n <except path="UserData\\LOG"/>\n <except path="UserData\\Music"/>\n </save>\n </files>\n <files type="Settings">\n <save filename="Config.ini"/>\n </files>\n <comment>This save is also for the STCC: The Game</comment>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="RaceDriverGrid">\n <title>Race Driver: Grid</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Codemasters\\GRID"/>\n </locations>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>Paul Taylor</contributor>\n </version>\n </game>\n <game name="RagDollKungFu">\n <title>Rag Doll Kung Fu</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="rag doll kung fu"/>\n </locations>\n <files type="Saves">\n <save path="data"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RagDollKungFuFistsOfPlastic" follows="RagDollKungFu">\n <title>Rag Doll Kung Fu: Fists of Plastic</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80217"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Rage">\n <title>Rage</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="id Software\\Rage" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="base\\savegame"/>\n </files>\n <files type="Settings">\n <save path="base" filename="*.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <expansion name="RainbowSix3AthenaSword" for="RainbowSix3RavenShield">\n <title>Tom Clancy''s Rainbow Six 3: Athena Sword</title>\n <version os="Windows">\n <locations>\n <parent name="RainbowSix3RavenShield" os="Windows"/>\n </locations>\n <files type="Saves">\n <save path="Save\\campaigns\\AthenaSword" filename="*"/>\n </files>\n <identifier path="Mods" filename="AthenaSword.mod"/>\n <contributor>Arc Angel</contributor>\n </version>\n </expansion>\n <game name="RainbowSix3RavenShield">\n <title>Tom Clancy''s Rainbow Six 3: Raven Shield</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="rainbow six 3 gold"/>\n </locations>\n <files type="Saves">\n <save path="Save\\campaigns" filename="*"/>\n <save path="Save\\Profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RainbowSixLockdown" follows="RainbowSix3RavenShield">\n <title>Tom Clancy''s Rainbow Six: Lockdown</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="rainbow six lockdown"/>\n </locations>\n <files type="Saves">\n <save path="data\\save">\n <except path="data\\save" filename="lockdown.key"/>\n </save>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RainbowSixVegas" follows="RainbowSixLockdown">\n <title>Tom Clancy''s Rainbow Six: Vegas</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Ubisoft\\R6Vegas"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RainbowSixVegas2" follows="RainbowSixVegas">\n <title>Tom Clancy''s Rainbow Six: Vegas 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Ubisoft\\R6Vegas2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RaptorCallOfTheShadows">\n <title>Raptor: Call of the Shadows</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Raptor - Call of the Shadows"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGRAPTOR" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Raptor - Call of the Shadows\\Raptor - Call of the Shadows.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.FIL"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RatchetClank">\n <title>Ratchet & Clank</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97199"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RatchetClankFutureQuestForBooty" follows="RatchetClankFutureToolsOfDestruction">\n <title>Ratchet & Clank Future: Quest For Booty</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80145"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RatchetClankFutureToolsOfDestruction">\n <title>Ratchet & Clank Future: Tools of Destruction</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98127"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RatchetClankGoingCommando" follows="RatchetClank">\n <title>Ratchet & Clank: Going Commando</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97268"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RatchetClankSizeMatters">\n <title>Ratchet & Clank: Size Matters</title>\n <version os="PSP" region="USA">\n <ps_code prefix="UCUS" suffix="98633"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RatchetClankUpYourArsenal" follows="RatchetClankGoingCommando">\n <title>Ratchet & Clank: Up Your Arsenal</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97353"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RatchetDeadlocked" follows="RatchetClankUpYourArsenal">\n <title>Ratchet: Deadlocked</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97465"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RatHunter">\n <title>Rat Hunter</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GFI\\Rat Hunter"/>\n <registry root="local_machine" key="Software\\GFI\\RatHunter_Release\\InstallPath" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\GFI\\Rat Hunter\\Rat Hunter.lnk" detract="bin"/>\n </locations>\n <files type="Saves">\n <save path="Data\\SavedGames" filename="*.sav"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Rayman2">\n <title>Rayman 2: The Great Escape</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Rayman 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGRAYMAN2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Rayman 2\\Rayman 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Data\\SaveGame"/>\n </files>\n <files type="Settings">\n <save path="Data\\Options"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Rayman3" follows="Rayman2">\n <title>Rayman 3: Hoodlum Havoc</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Rayman 3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGRAYMAN3" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Ubi Soft\\RAYMAN 3" value="InstallDir"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Rayman 3\\Rayman 3.lnk"/>\n </locations>\n <files type="Saves">\n <save path="GAMEDATA\\SaveGame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RaymanByHisFans">\n <title>Rayman By His Fans</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Rayman Forever\\RayFan"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGRAYMANFAN" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Rayman Forever\\Rayman by his Fans\\Rayman by his Fans.lnk" append="RayFan" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="RAYFAN*.SAV"/>\n </files>\n <files type="Settings">\n <save filename="RAYFAN.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RaymanForever">\n <title>Rayman Forever</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Rayman Forever\\Rayman"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGRAYMAN1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Rayman Forever\\Rayman\\Rayman.lnk" append="Rayman" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="RAYMAN*.SAV"/>\n </files>\n <files type="Settings">\n <save filename="RAYMAN.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RaymanOrigins">\n <title>Rayman Origins</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Rayman Origins"/>\n </locations>\n <files type="Saves">\n <save path="Savegame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RealmsOfTheHaunting">\n <title>Realms of the Haunting</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Realms of the Haunting\\ROTH"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGROTH" value="PATH" append="ROTH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Realms of the Haunting\\Realms of the Haunting.lnk" append="ROTH" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="SAVEGAME"/>\n </files>\n <files type="Settings">\n <save filename="ROTH.INI"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RealMyst">\n <title>realMyst</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\realMyst"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGREALMYST" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\realMyst\\realMyst.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RecettearAnItemShopsTale">\n <title>Recettear: An Item Shop''s Tale</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="recettear"/>\n </locations>\n <files type="Saves">\n <save filename="*.dat"/>\n </files>\n <files type="Settings">\n <save filename="recet.ini"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="RedFaction">\n <title>Red Faction</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Games\\RedFaction"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\RedFaction.exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save path="savegame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RedFaction2" follows="RedFaction">\n <title>Red Faction II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="THQ\\Red Faction II"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{E074FB23-D61B-4C6A-AD15-AB9695ED2EF7}" value="InstallLocation"/>\n </locations>\n <files type="Saves">\n <save path="profiles"/>\n </files>\n <files type="Settings">\n <save filename="rf2_config.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RedFactionArmageddon" follows="RedFactionGuerrilla">\n <title>Red Faction: Armageddon</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="55110"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RedFactionGuerrilla" follows="RedFaction2">\n <title>Red Faction: Guerrilla</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30258"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Red Faction Guerrilla"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RedneckRampage">\n <title>Redneck Rampage</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Redneck Rampage Collection\\Redneck Rampage"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGREDNECKRAMPAGE" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Redneck Rampage Collection\\Redneck Rampage\\Redneck Rampage.lnk" append="Redneck Rampage" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <files type="Settings">\n <save filename="*.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="RedneckRampageRidesAgain" for="RedneckRampage">\n <title>Redneck Rampage Rides Again</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Redneck Rampage Collection\\Redneck Rides Again"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGCREDNECKRIDESAGAIN" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Redneck Rampage Collection\\Redneck Rampage Rides Again - Arkansas\\Redneck Rides Again.lnk" append="Redneck Rides Again" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <files type="Settings">\n <save filename="*.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="RenegadeOps">\n <title>Renegade Ops</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="SEGA\\Renegade Ops"/>\n </locations>\n <files type="Saves">\n <save path="Saves" filename="*.sav"/>\n </files>\n <files type="Settings">\n <save path="Saves" filename="Settings"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <mod name="ResearchAndDevelopment" for="HalfLife2">\n <title>Research and Development</title>\n <version os="Windows">\n <locations>\n <path ev="steamsourcemods" path="Research and Development"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </mod>\n <game name="ResidentEvil4">\n <title>Resident Evil 4</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21134"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ResidentEvil5" follows="ResidentEvil4">\n <title>Resident Evil 5</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30270"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="CAPCOM\\RESIDENT EVIL 5"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ResidentEvilCodeVeronicaX">\n <title>Resident Evil: Code Veronica X</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20184"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Resistance2" follows="ResistanceFallOfMan">\n <title>Resistance 2</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98120"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ResistanceFallOfMan">\n <title>Resistance: Fall of Man</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98107"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ReturnOfTheIncredibleMachineContraptions">\n <title>Return of the Incredible Machine: Contraptions</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\The Incredible Machine Series\\Return of the Incredible Machine Contraptions"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGRETURN" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Sierra OnLine\\Setup\\CONTRAP" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\The Incredible Machine Series\\Return of the Incredible Machine Contraptions\\Return of the Incredible Machine Contraptions.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saved Games"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ReturnToCastleWolfenstein" follows="Wolfenstein3D">\n <title>Return to Castle Wolfenstein</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Return to Castle Wolfenstein"/>\n <path ev="steamcommon" path="return to castle wolfenstein"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\Return to Castle Wolfenstein" value="InstallPath"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\Return to Castle Wolfenstein - Game of The Year Edition" value="InstallPath"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\Return to Castle Wolfenstein - Platinum Edition" value="InstallPath"/>\n </locations>\n <files type="Saves">\n <save path="Main\\save"/>\n </files>\n <files type="Settings">\n <save path="Main" filename="wolfconfig.cfg"/>\n </files>\n <contributor>Jetsetlemming</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ReturnToZork" follows="Zork0">\n <title>Return To Zork</title>\n <version platform="ScummVM" media="CD">\n <scummvm name="rtz-cd"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Return To Zork"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGRETURNTOZORK" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Return To Zork\\Return To Zork.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="GAME.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RevengeOfTheTitans">\n <title>Revenge of the Titans</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="93200\\remote\\.revenge_of_the_titans_1.80"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userprofile" path=".revenge_of_the_titans_1.80"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Risen">\n <title>Risen</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Risen"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Risen2">\n <title>Risen 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Saved Games\\Risen2"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RiseOfLegends">\n <title>Rise Of Legends</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Rise Of Legends"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="RiseOfNations">\n <title>Rise Of Nations</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Rise Of Nations"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="RiseOfTheArgonauts">\n <title>Rise of the Argonauts</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Rise of the Argonauts"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n <save path="LiquidGame\\SaveData"/>\n </files>\n <files type="Settings">\n <save path="LiquidGame\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Riven" follows="Myst">\n <title>Riven</title>\n <version os="Windows">\n <locations>\n <path ev="altsavepaths"/>\n <path ev="userdocuments" path="Riven"/>\n </locations>\n <files type="Saves">\n <save filename="*.rvn"/>\n </files>\n <identifier filename="*.rvn"/>\n <comment>Checks for saves in My Documents\\Riven and Alt. Save Paths</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RobinsonsRequiem">\n <title>Robinson''s Requiem</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Robinson''s Requiem Collection\\Robinsons Requiem"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGROSINSONSREQUIEM" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Robinson''s Requiem Collection\\Robinson''s Requiem\\Robinson''s Requiem.lnk" append="Robinsons Requiem" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RoboBlitz">\n <title>RoboBlitz</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="roboblitz"/>\n </locations>\n <files type="Saves">\n <save path="SavedGames"/>\n </files>\n <files type="Settings">\n <save path="RoboGame\\Config" filename="Robo*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RockOfAges">\n <title>Rock of Ages</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="22230"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RogueGalaxy">\n <title>Rogue Galaxy</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97490"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="RogueWarrior">\n <title>Rogue Warrior</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Bethesda\\Rogue Warrior"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RollerCoasterTycoon2">\n <title>RollerCoaster Tycoon 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="RollerCoaster Tycoon 2"/>\n <registry root="local_machine" key="SOFTWARE\\Infogrames\\RollerCoaster Tycoon 2 Setup" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Infogrames\\RollerCoaster Tycoon 2\\RollerCoaster Tycoon 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saved Games"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="RollerCoasterTycoon3" follows="RollerCoasterTycoon2">\n <title>RollerCoaster Tycoon 3</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="RCT3"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="RomeTotalWar">\n <title>Rome: Total War</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Activision\\Rome - Total War"/>\n <path ev="steamcommon" path="rome total war"/>\n <path ev="steamcommon" path="rome total war gold"/>\n <registry root="local_machine" key="SOFTWARE\\The Creative Assembly\\Rome - Total War" value="InstallPath"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="RomeTotalWarAlexander" for="RomeTotalWar">\n <title>Rome: Total War: Alexander</title>\n <version os="Windows">\n <locations>\n <registry root="local_machine" key="SOFTWARE\\The Creative Assembly\\Rome - Total War - Alexander add-on" value="InstallPath" append="alexander"/>\n <parent name="RomeTotalWar" os="Windows" append="alexander"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <expansion name="RomeTotalWarBarbarianInvasion" for="RomeTotalWar">\n <title>Rome: Total War: Barbarian Invasion</title>\n <version os="Windows">\n <locations>\n <parent name="RomeTotalWar" os="Windows" append="bi"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <files type="Settings">\n <save path="preferences"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="RuleOfRose">\n <title>Rule Of Rose</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21448"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Runaway2TheDreamOfTheTurtle" follows="RunawayARoadAdventure">\n <title>Runaway 2: The Dream Of The Turtle</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="runaway the dream of the turtle"/>\n </locations>\n <files type="Saves">\n <save path="SAVEGAME"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RunawayARoadAdventure">\n <title>Runaway: A Road Adventure</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Runaway - A Road Adventure"/>\n <path ev="installlocation" path="PENDULO Studios\\RUNAWAY - A road adventure"/>\n <path ev="steamcommon" path="runaway a road adventure"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGRUNAWAY" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Runaway_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Pendulo Studios\\Runaway - A road adventure\\Runaway.lnk"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Runaway - A Road Adventure\\Runaway - A Road Adventure.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVEGAME"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RunespellOverture">\n <title>Runespell: Overture</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="102200"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="RUSE">\n <title>R.U.S.E.</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="21970"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Saboteur">\n <title>The Saboteur</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\The Saboteur™"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Sacraboar">\n <title>Sacraboar</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Sacraboar"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Sacred2FallenAngel">\n <title>Sacred 2: Fallen Angel</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Ascaron Entertainment\\Sacred 2" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="SaintsRow2">\n <title>Saint''s Row 2</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="THQ\\Saints Row 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SaintsRow3">\n <title>Saint''s Row: The Third</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="55230"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Christian Hamann</contributor>\n </version>\n </game>\n <game name="SamAndMaxHitTheRoad">\n <title>Sam & Max Hit The Road</title>\n <version platform="ScummVM">\n <scummvm name="samnmax"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="SAMNMAX.CD"/>\n </locations>\n <files type="Saves">\n <save filename="SAVEGAME.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason1Episode1" follows="SamAndMaxHitTheRoad">\n <title>Sam & Max Save The World Episode 1 - Culture Shock</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 1 - Culture Shock Data"/>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 101 - Culture Shock"/>\n <path ev="steamcommon" path="sam and max episode 1"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax101.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season One\\Episode 1 - Culture Shock.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason1Episode2" follows="SamAndMaxSeason1Episode1">\n <title>Sam & Max Save The World Episode 2 - Situation Comedy</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 102 - Situation Comedy"/>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 2 - Situation Comedy Data"/>\n <path ev="steamcommon" path="sam and max episode 2"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax102.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season One\\Episode 2 - Situation Comedy.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason1Episode3" follows="SamAndMaxSeason1Episode2">\n <title>Sam & Max Save The World Episode 3 - The Mole, the Mob, and the Meatball</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 103 - The Mole, the Mob, and the Meatball"/>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 3 - The Mole, the Mob, and the Meatball Data"/>\n <path ev="steamcommon" path="sam and max episode 3"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax103.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season One\\Episode 3 - The Mole, the Mob, and the Meatball.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason1Episode4" follows="SamAndMaxSeason1Episode3">\n <title>Sam & Max Save The World Episode 4 - Abe Lincoln Must Die!</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 104 - Abe Lincoln Must Die"/>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 4 - Abe Lincoln Must Die! Data"/>\n <path ev="steamcommon" path="sam and max episode 4"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax104.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season One\\Episode 4 - Abe Lincoln Must Die!.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason1Episode5" follows="SamAndMaxSeason1Episode4">\n <title>Sam & Max Save The World Episode 5 - Reality 2.0</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 105 - Reality 2.0"/>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 5 - Reality 2.0 Data"/>\n <path ev="steamcommon" path="sam and max episode 5"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax105.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season One\\Episode 5 - Reality 2.0.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason1Episode6" follows="SamAndMaxSeason1Episode5">\n <title>Sam & Max Save The World Episode 6 - Bright Side of the Moon</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 106 - Bright Side of the Moon"/>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season One\\Episode 6 - Bright Side of the Moon Data"/>\n <path ev="steamcommon" path="sam and max episode 6"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax106.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season One\\Episode 6 - Bright Side of the Moon"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason2Episode1" follows="SamAndMaxSeason1Episode6">\n <title>Sam & Max Beyond Time and Space Episode 1 - Ice Station Santa</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season Two\\Episode 201 - Ice Station Santa"/>\n <path ev="steamcommon" path="sam and max season 2 episode 1"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax201.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Episode 201 - Ice Station Santa.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Sam and Max - Season Two.lnk" append="Episode 201 - Ice Station Santa" detract="autorun"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason2Episode2" follows="SamAndMaxSeason2Episode1">\n <title>Sam & Max Beyond Time and Space Episode 2 - Moai Better Blues</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season Two\\Episode 202 - Moai Better Blues"/>\n <path ev="steamcommon" path="sam and max season 2 episode 2"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax202.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Episode 202 - Moai Better Blues.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Sam and Max - Season Two.lnk" append="Episode 202 - Moai Better Blues" detract="autorun"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason2Episode3" follows="SamAndMaxSeason2Episode2">\n <title>Sam & Max Beyond Time and Space Episode 3 - Night of the Raving Dead</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season Two\\Episode 203 - Night of the Raving Dead"/>\n <path ev="steamcommon" path="sam and max season 2 episode 3"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax203.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Episode 203 - Night of the Raving Dead.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Sam and Max - Season Two.lnk" append="Episode 203 - Night of the Raving Dead" detract="autorun"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason2Episode4" follows="SamAndMaxSeason2Episode3">\n <title>Sam & Max Beyond Time and Space Episode 4 - Chariots of the Dogs</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season Two\\Episode 204 - Chariots of the Dogs"/>\n <path ev="steamcommon" path="sam and max season 2 episode 4"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax204.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Episode 204 - Chariots of the Dogs.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Sam and Max - Season Two.lnk" append="Episode 204 - Chariots of the Dogs" detract="autorun"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxSeason2Episode5" follows="SamAndMaxSeason2Episode4">\n <title>Sam & Max Beyond Time and Space Episode 5 - What''s New, Beelzebub</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Telltale Games\\Sam and Max - Season Two\\Episode 205 - What''s New, Beelzebub"/>\n <path ev="steamcommon" path="sam and max season 2 episode 5"/>\n <registry root="local_machine" key="SOFTWARE\\Telltale Games\\SamMax205.exe" value="Install Location"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Episode 205 - What''s New, Beelzebub.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Telltale Games\\Sam and Max - Season Two\\Sam and Max - Season Two.lnk" append="Episode 205 - What''s New, Beelzebub" detract="autorun"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxTheDevilsPlayhouseEpisode1" follows="SamAndMaxSeason2Episode5">\n <title>Sam & Max - The Devil''s Playhouse Episode 1 - The Penal Zone</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\The Penal Zone"/>\n </locations>\n <files type="Saves">\n <save>\n <except filename="prefs.prop"/>\n </save>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxTheDevilsPlayhouseEpisode2" follows="SamAndMaxTheDevilsPlayhouseEpisode1">\n <title>Sam & Max - The Devil''s Playhouse Episode 2 - The Tomb of Sammun-Mak</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\The Tomb of Sammun-Mak"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxTheDevilsPlayhouseEpisode3" follows="SamAndMaxTheDevilsPlayhouseEpisode2">\n <title>Sam & Max - The Devil''s Playhouse Episode 3 - They Stole Max''s Brain</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\They Stole Maxs Brain"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxTheDevilsPlayhouseEpisode4" follows="SamAndMaxTheDevilsPlayhouseEpisode3">\n <title>Sam & Max - The Devil''s Playhouse Episode 4 - Beyond the Alley of the Dolls</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Beyond the Alley of the Dolls"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SamAndMaxTheDevilsPlayhouseEpisode5" follows="SamAndMaxTheDevilsPlayhouseEpisode4">\n <title>Sam & Max - The Devil''s Playhouse Episode 5 - The City That Dares Not Sleep</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\The City That Dares Not Sleep"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Sanctum">\n <title>Sanctum</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Sanctum"/>\n </locations>\n <files type="Saves">\n <save path="SanctumGame\\Config" filename="SanctumSave.ini"/>\n </files>\n <files type="Settings">\n <save path="SanctumGame\\Config" filename="*.ini">\n <except path="SanctumGame\\Config" filename="SanctumSave.ini"/>\n </save>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Sanitarium">\n <title>Sanitarium</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="ASC Games\\Sanitarium"/>\n <path ev="installlocation" path="GOG.com\\Sanitarium"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSANITARIUM" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\Sntrm.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\ASC Games\\Sanitarium\\Sanitarium.lnk"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Sanitarium\\Sanitarium.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVES"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SASSecureTomorrow">\n <title>SAS: Secure Tomorrow</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="City Interactive\\SAS Secure Tomorrow"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SavageMoon">\n <title>Savage Moon</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80228"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Saw">\n <title>SAW</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Saw"/>\n </locations>\n <files type="Saves">\n <save path="SawGame\\Checkpoints"/>\n </files>\n <contributor>Michael Lamere</contributor>\n </version>\n </game>\n <game name="ScorpionDisfigured">\n <title>Scorpion: Disfigured</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Atari\\Scorpion-Disfigured"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ScourgeProject">\n <title>The Scourge Project: Episodes 1 and 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\The Scourge Project Ep1-2\\ScourgeGame"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ScratchesDirectorsCut">\n <title>Scratches: Director''s Cut</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Nucleosys\\Scratches Director''s Cut"/>\n </locations>\n <files type="Saves">\n <save>\n <except filename="*.cfg"/>\n </save>\n </files>\n <files type="Settings">\n <save filename="*.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SecondSight">\n <title>Second Sight</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Second Sight"/>\n <registry root="local_machine" key="SOFTWARE\\Codemasters\\Second Sight\\Install Location" value="Location"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSECONDSIGHT" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Second Sight\\Second Sight.lnk"/>\n </locations>\n <files type="Saves">\n <save path="profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SecretOfMonkeyIsland">\n <title>The Secret of Monkey Island™</title>\n <version os="Windows" release="SpecialEdition">\n <title>The Secret of Monkey Island™ Special Edition</title>\n <locations>\n <path ev="appdata" path="LucasArts\\The Secret of Monkey Island Special Edition"/>\n </locations>\n <files type="Saves">\n <save filename="savegame.*"/>\n </files>\n <files type="Settings">\n <save filename="Settings.ini"/>\n </files>\n <identifier filename="monkey1.bin"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Section8">\n <title>Section 8</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Section8"/>\n </locations>\n <files type="Saves">\n <save path="Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Section8Prejudice" follows="Section8">\n <title>Section 8: Prejudice</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Section 8 Prejudice - PC"/>\n </locations>\n <files type="Saves">\n <save path="S9Game\\Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SepterraCoreLegacyOfTheCreator">\n <title>Septerra Core: Legacy of the Creator</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Septerra Core"/>\n <path ev="installlocation" path="Valkyrie Studios\\Septerra Core"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSEPTERRACORE" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Valkyrie Studios\\Septerra Core" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Septerra Core\\Septerra Core.lnk"/>\n <shortcut ev="startmenu" path="Programs\\Valkyrie Studios\\Septerra Core\\Septerra Core.lnk"/>\n </locations>\n <files type="Saves">\n <save path="savedata"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Sequence">\n <title>Sequence</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="200910"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SeriousSam2" follows="SeriousSamTheSecondEncounter">\n <title>Serious Sam 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="serious sam 2"/>\n </locations>\n <files type="Saves">\n <save path="Content\\SeriousSam2" filename="Sam2.ini"/>\n <save path="Content\\SeriousSam2\\PlayerProfiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SeriousSam3BFE" follows="SeriousSam2">\n <title>Serious Sam 3: BFE</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="41070\\local"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SeriousSamTheFirstEncounter">\n <title>Serious Sam: The First Encounter</title>\n <version platform="SteamCloud" release="HD">\n <title>Serious Sam HD: The First Encounter</title>\n <locations>\n <path ev="steamuserdata" path="41000\\local\\SeriousSamHD"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SeriousSamTheSecondEncounter" follows="SeriousSamTheFirstEncounter">\n <title>Serious Sam: The Second Encounter</title>\n <version platform="SteamCloud" release="HD">\n <title>Serious Sam HD: The Second Encounter</title>\n <locations>\n <path ev="steamuserdata" path="41010\\local\\SeriousSamHD_TSE"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Shadowgrounds">\n <title>Shadowgrounds</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="ShadowGrounds"/>\n <path ev="steamcommon" path="shadowgrounds"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Shadowgrounds_is1" value="InstallLocation"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <files type="Settings">\n <save path="Config" filename="options.txt"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ShadowgroundsSurvivor" follows="Shadowgrounds">\n <title>Shadowgrounds: Survivor</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="shadowgrounds survivor"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <files type="Settings">\n <save path="Config" filename="options.txt"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Shadowgun">\n <title>Shadowgun</title>\n <version os="Android">\n <locations>\n <path ev="drive" path="Android\\data\\com.madfingergames.shadowgun"/>\n </locations>\n <files type="Saves">\n <save path="files" filename="SaveGameSinglePlayer0"/>\n </files>\n <identifier path="files" filename="SaveGameSinglePlayer0"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="ShadowgunTheLeftover" for="Shadowgun">\n <title>Shadowgun: The Leftover</title>\n <version os="Android">\n <locations>\n <path ev="drive" path="Android\\data\\com.madfingergames.shadowgun"/>\n </locations>\n <files type="Saves">\n <save path="files" filename="SaveGameSinglePlayer1"/>\n </files>\n <identifier path="files" filename="SaveGameSinglePlayer1"/>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="ShadowHarvestPhantomOps">\n <title>Shadow Harvest: Phantom Ops</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Shadow Harvest"/>\n </locations>\n <files type="Saves">\n <save path="SavedGames"/>\n </files>\n <files type="Settings">\n <save filename="*.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ShadowOfTheColossus" follows="Ico">\n <title>Shadow of the Colossus</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97472"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98259" append="_SOTC"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Shaiya">\n <title>Shaiya</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="AeriaGames\\Shaiya"/>\n <registry root="local_machine" key="SOFTWARE\\SONOV\\Shaiya" value="Path"/>\n </locations>\n <files type="Settings">\n <save filename="*CONFIG.INI"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Shank">\n <title>Shank</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="6120"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Shatter">\n <title>Shatter</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUB" suffix="30091"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ShatteredSteel">\n <title>Shattered Steel</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Shattered Steel"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSHATTEREDSTEEL" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Shattered Steel\\Shattered Steel.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <files type="Settings">\n <save filename="*.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Shellshock2">\n <title>Shellshock 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Eidos\\Shellshock2"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="*.txt"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Ship">\n <title>The Ship</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="the ship single player"/>\n </locations>\n <files type="Saves">\n <save path="ship\\SAVE"/>\n </files>\n <files type="Settings">\n <save path="ship\\cfg"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="ShogoMobileArmorDivision">\n <title>Shogo: Mobile Armor Division</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GAMES\\Shogo"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\Shogo" value="Path"/>\n <registry root="local_machine" key="SOFTWARE\\Monolith Productions\\Shogo\\1.0" value="WorkingDirectory"/>\n <shortcut ev="startmenu" path="Programs\\Monolith Games\\Shogo\\Shogo.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ShogunTotalWar">\n <title>Shogun: Total War</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Total War\\Shogun - Total War - Warlord Edition"/>\n <shortcut ev="startmenu" path="Programs\\Total War\\Shogun - Total War - Warlord Edition\\Shogun - Total War - Warlord Edition.lnk"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <contributor>Mark Barbour</contributor>\n </version>\n </game>\n <game name="SilentHill">\n <title>Silent Hill</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00707"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SilentHill0rigins">\n <title>Silent Hill: 0rigins</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10285"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SilentHill2" follows="SilentHill">\n <title>Silent Hill 2</title>\n <version os="PS2" region="USA" release="GreatestHits">\n <title>Silent Hill 2: Greatest Hits Edition</title>\n <ps_code prefix="SLUS" suffix="20228"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30810" append="_SH2"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SilentHill3" follows="SilentHill2">\n <title>Silent Hill 3</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20622"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30810" append="_SH3C"/>\n <ps_code prefix="BLUS" suffix="30810" append="_SH3OPTN" type="Settings"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SilentHill4Room" follows="SilentHill3">\n <title>Silent Hill 4: The Room</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20873"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SilentHillHomecoming" follows="SilentHill4Room">\n <title>Silent Hill: Homecoming</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30169"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="public" path="Documents\\Silent Hill Homecoming" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SilentHillShatteredMemories">\n <title>Silent Hill: Shattered Memories</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21899"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SimCity2000">\n <title>Sim City 2000</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Maxis\\SimCity 2000"/>\n <registry root="current_user" key="Software\\Maxis\\SimCity 2000\\Paths" value="Home"/>\n <shortcut ev="startmenu" path="Programs\\Maxis\\SimCity 2000.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Cities" modified_after="1998-04-23T00:00:00"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SimonTheSorcerer">\n <title>Simon the Sorcerer</title>\n <version platform="ScummVM">\n <scummvm name="simon1"/>\n <locations>\n <path ev="installlocation" path="GOG.com\\Simon the Sorcerer"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSIMON" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Simon the Sorcerer\\Simon the Sorcerer.lnk" detract="ScummVM"/>\n </locations>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SimonTheSorcerer2" follows="SimonTheSorcerer">\n <title>Simon the Sorcerer 2</title>\n <version platform="ScummVM">\n <scummvm name="simon2"/>\n <locations>\n <path ev="installlocation" path="GOG.com\\Simon the Sorcerer 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSIMON2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Simon the Sorcerer 2\\Simon the Sorcerer 2.lnk" detract="ScummVM"/>\n </locations>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SimonTheSorceror3D" follows="SimonTheSorcerer2">\n <title>Simon the Sorceror 3D</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Simon the Sorcerer 3D"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSIMON3D" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Simon the Sorcerer 3D\\Simon the Sorcerer 3D.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Data" filename="SaveGamesNew.txt"/>\n <save path="Data" filename="SimonSaveGame*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Sims2">\n <title>The Sims 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="EA Games\\The Sims 2"/>\n </locations>\n <files type="Saves">\n <save path="LotCatalog"/>\n <save path="Neighborhoods"/>\n </files>\n <files type="Settings">\n <save path="Config"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n <contributor>Samuel Barbour</contributor>\n </version>\n </game>\n <game name="Sims3" follows="Sims2">\n <title>The Sims 3</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Electronic Arts\\The Sims 3"/>\n </locations>\n <files type="Characters">\n <save path="SavedSims"/>\n </files>\n <files type="Outfits">\n <save path="SavedOutfits"/>\n </files>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="Options.ini"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n <contributor>Caleb Love</contributor>\n </version>\n </game>\n <game name="Sin">\n <title>Sin</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="sin 1"/>\n </locations>\n <files type="Saves">\n <save path="base\\players"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SinEpisodesEmergence" follows="Sin">\n <title>Sin Episodes: Emergence</title>\n <version os="Windows">\n <locations>\n <path ev="steamuser" path="sin episodes emergence"/>\n </locations>\n <files type="Saves">\n <save path="SE1\\SAVE"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Singularity">\n <title>Singularity</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Singularity"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SinsOfASolarEmpire">\n <title>Sins of a Solar Empire</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Ironclad Games\\Sins of a Solar Empire"/>\n </locations>\n <files type="Saves">\n <save path="*Player"/>\n </files>\n <files type="Settings">\n <save path="Setting"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SlyCooperAndtheThievusRaccoonus">\n <title>Sky Cooper and the Thievus Raccoonus</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SCUS" suffix="97198"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Snajper">\n <title>Snajper (Sniper: Path of Vengeance)</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Cenega\\Sniper"/>\n <shortcut ev="startmenu" path="Programs\\Cenega\\Sniper\\Sniper.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <files type="Settings">\n <save filename="autoexec.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SniperElite">\n <title>Sniper Elite</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="sniper elite"/>\n </locations>\n <files type="Saves">\n <save path="Prof"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SniperGhostWarrior">\n <title>Sniper: Ghost Warrior</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Sniper - Ghost Warrior"/>\n </locations>\n <files type="Saves">\n <save path="out\\profiles"/>\n <save path="out\\save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Solar2">\n <title>Solar 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="SavedGames\\Solar2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="SoulBlade">\n <title>Soul Blade</title>\n <version os="PS1" region="USA">\n <ps_code prefix="SLUS" suffix="00240"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SoulCalibur3">\n <title>Soul Calibur III</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21216"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SoulCalibur4" follows="SoulCalibur3">\n <title>Soul Calibur IV</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30160"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpaceChem">\n <title>SpaceChem</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Zachtronics Industries\\SpaceChem"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpaceQuest">\n <title>Space Quest: The Sarien Encounter</title>\n <version platform="ScummVM">\n <scummvm name="sq1"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Quest 1-2-3\\Space Quest 1"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSQ1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Quest 1 2 3\\Space Quest 1\\Documents\\Manual.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="SQSG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpaceQuest2" follows="SpaceQuest">\n <title>Space Quest II: Vohaul''s Revenge and Space Quest</title>\n <version platform="ScummVM">\n <scummvm name="sq2"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Quest 1-2-3\\Space Quest 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSQ2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Quest 1 2 3\\Space Quest 2\\Documents\\Manual.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="SQ2SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpaceQuest3" follows="SpaceQuest2">\n <title>Space Quest III: The Pirates of Pestulon</title>\n <version platform="ScummVM">\n <scummvm name="sq3"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Quest 1-2-3\\Space Quest 3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSQ3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Quest 1 2 3\\Space Quest 3\\Documents\\Manual.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="SQ3SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpaceQuest4" follows="SpaceQuest3">\n <title>Space Quest IV: Roger Wilco and the Time Rippers</title>\n <version platform="ScummVM" media="CD">\n <scummvm name="sq4-cd"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Quest Collection\\Space Quest 4"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSQ4" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Quest Collection\\Space Quest 4\\Space Quest 4.lnk" append="Space Quest 4" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SQ4SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpaceQuest5" follows="SpaceQuest4">\n <title>Space Quest V: The Next Mutation</title>\n <version platform="ScummVM">\n <scummvm name="sq5"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Quest Collection\\Space Quest 5"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSQ5" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Quest Collection\\Space Quest 5\\Space Quest 5.lnk" append="Space Quest 5" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SQ5SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpaceQuest6" follows="SpaceQuest5">\n <title>Space Quest 6: The Spinal Frontier</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Quest Collection\\Space Quest 6"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSQ6" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Quest Collection\\Space Quest 6\\Space Quest 6.lnk" append="Space Quest 6" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SQ6SG.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpaceRangers">\n <title>Space Rangers</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Rangers"/>\n <path ev="steamcommon" path="space rangers"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSPACERANGERS" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Rangers\\Space Rangers.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="SpaceRangers2Dominators" follows="SpaceRangers">\n <title>Space Rangers 2: Dominators</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Rangers 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSPACERANGERS2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Rangers 2 - Dominators\\Space Rangers 2 - Dominators.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="Reboot">\n <title>Space Rangers 2: Reboot</title>\n <locations>\n <path ev="installlocation" path="GOG.com\\Space Rangers 2 - Reboot"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGPACKSPACERANGERS2REBOOT" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Space Rangers 2 - Reboot\\Space Rangers 2 - Reboot.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Spectromancer">\n <title>Spectromancer</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="Spectromancer"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SpellForce">\n <title>SpellForce: The Order of the Dawn</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="SpellForce"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SpellForce2" follows="SpellForce">\n <title>SpellForce 2: Shadow Wars</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="SpellForce2"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SpiderManWebOfShadows">\n <title>Spider-Man: Web of Shadows</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Activision\\Spider-Man Web of Shadows"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SplinterCell">\n <title>Tom Clancy''s Splinter Cell</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="splinter cell"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SplinterCellChaosTheory" follows="SplinterCell">\n <title>Tom Clancy''s Splinter Cell: Chaos Theory</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Ubisoft\\Tom Clancy''s Splinter Cell Chaos Theory"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SplinterCellConviction" follows="SplinterCellDoubleAgent">\n <title>Tom Clancy''s Splinter Cell: Conviction</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Ubisoft\\Conviction"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SplinterCellDoubleAgent" follows="SplinterCellChaosTheory">\n <title>Tom Clancy''s Splinter Cell: Double Agent</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Ubisoft\\SplinterCell4"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SplitSecond">\n <title>Split Second</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Disney Interactive Studios\\Split Second"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Spore">\n <title>Spore</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Spore"/>\n </locations>\n <files type="Saves">\n <save path="Games"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="SporeCreatureCreator">\n <title>Spore Creature Creator</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Spore Creations"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="Stacking">\n <title>Stacking</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="115110"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="StalkerCallofPripyat" follows="StalkerClearSky">\n <title>S.T.A.L.K.E.R.: Call of Pripyat</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\S.T.A.L.K.E.R. - Call of Pripyat" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\S.T.A.L.K.E.R. - Call of Pripyat" only_for="WindowsVista"/>\n <path ev="steamcommon" path="stalker call of pripyat\\_appdata_"/>\n </locations>\n <files type="Saves">\n <save filename="user.ltx"/>\n <save path="savedgames"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>Håvard Krüger</contributor>\n </version>\n </game>\n <game name="StalkerClearSky" follows="StalkerShadowOfChernobyl">\n <title>S.T.A.L.K.E.R.: Clear Sky</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="stalker clear sky\\_appdata_"/>\n </locations>\n <files type="Saves">\n <save filename="user.ltx"/>\n <save path="savedgames"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="StalkerShadowOfChernobyl">\n <title>S.T.A.L.K.E.R.: Shadow of Chernobyl</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\stalker-shoc" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\stalker-shoc" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save filename="user.ltx"/>\n <save path="savedgames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarControl">\n <title>Star Control</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Star Control 1 and 2\\Star Control 1"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSC1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Star Control 1 and 2\\Star Control\\Star Control.lnk" append="Star Control 1" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SAVEGAME.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarControl2" follows="StarControl">\n <title>Star Control II: The Ur-Quan Masters</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Star Control 1 and 2\\Star Control 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSC2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Star Control 1 and 2\\Star Control 2\\Star Control 2.lnk" append="Star Control 2" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="SAVEGAME.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarControl3" follows="StarControl2">\n <title>Star Control 3</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Star Control 3\\STARCON3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSC3" value="PATH" append="STARCON3"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Star Control 3\\Star Control 3.lnk" append="STARCON3" detract="DOSBOX"/>\n </locations>\n <files type="Fleets">\n <save filename="FLEET*.SAV"/>\n </files>\n <files type="Saves">\n <save filename="STAR*.SAV"/>\n </files>\n <files type="Settings">\n <save filename="LEGEND.INI"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Starcraft">\n <title>Starcraft</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Starcraft"/>\n <registry root="local_machine" key="SOFTWARE\\Blizzard Entertainment\\StarCraft" value="InstallPath"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Starcraft2" follows="Starcraft">\n <title>Starcraft II: Wings of Liberty</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="StarCraft II"/>\n </locations>\n <files type="Saves">\n <save path="Accounts">\n <except path="Accounts\\*\\*\\Replays"/>\n <except path="Accounts\\*\\*\\Screenshots"/>\n </save>\n </files>\n <contributor>Caleb Love</contributor>\n </version>\n </game>\n <game name="Starflight">\n <title>Starflight</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Starflight 1 and 2\\Starflight 1\\STARFLT"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSTARFLIGHT1" value="PATH" append="STARFLT"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Starflight 1 and 2\\Starflight 1\\Starflight 1.lnk" append="Starflight 1\\STARFLT" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="PLAY" filename="STAR?.COM"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Starflight2" follows="Starflight">\n <title>Starflight 2</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Starflight 1 and 2\\Starflight 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSTARFLIGHT2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Starflight 1 and 2\\Starflight 2\\Starflight 2.lnk" append="Starflight 2" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="GAME.*"/>\n <save filename="LASTSAVE.*"/>\n <save filename="ORIGINAL.*"/>\n <save filename="STAR*.COM"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Starlancer">\n <title>Starlancer</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Microsoft Games\\StarLancer"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\StarLancer" value="Path"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Microsoft Games\\StarLancer\\1.0" value="InstallationDirectory"/>\n <shortcut ev="startmenu" path="Programs\\Microsoft Games\\StarLancer\\StarLancer.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVES"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarOceanFirstDeparture">\n <title>Star Ocean: First Departure</title>\n <version os="PSP" region="USA">\n <ps_code prefix="ULUS" suffix="10374"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarOceanTillTheEndOfTime">\n <title>Star Ocean: Till the End of Time</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20488"/>\n <ps_code prefix="SLUS" suffix="20891"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Starscape">\n <title>Starscape</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Starscape"/>\n </locations>\n <files type="Saves">\n <save path="data\\saves "/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarTopia">\n <title>StarTopia</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="StarTopia"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\Startopia" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Eidos Interactive\\Mucky Foot\\StarTopia\\StarTopia.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="StarWarsDarkForces">\n <title>Star Wars: Dark Forces</title>\n <version os="DOS">\n <locations>\n <path ev="steamcommon" path="dark forces\\Game"/>\n </locations>\n <files type="Saves">\n <save filename="DARKPILO.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarWarsEmpireAtWar">\n <title>Star Wars: Empire at War</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Petroglyph\\Empire At War" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <expansion name="StarWarsEmpireAtWarForcesOfCorruption" for="StarWarsEmpireAtWar">\n <title>Star Wars: Empire at War - Forces of Corruption</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Petroglyph\\Empire At War - Forces of Corruption" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </expansion>\n <game name="StarWarsJediKnight2JediOutcast" follows="StarWarsJediKnightDarkForces2">\n <title>Star Wars: Jedi Knight II: Jedi Outcast</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="jedi outcast"/>\n </locations>\n <files type="Saves">\n <save path="GameData\\base\\saves"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="StarWarsJediKnightDarkForces2" follows="StarWarsDarkForces">\n <title>Star Wars: Jedi Knight: Dark Forces II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="LucasArts\\Jedi Knight"/>\n <path ev="steamcommon" path="star wars jedi knight"/>\n <registry root="local_machine" key="SOFTWARE\\LucasArts Entertainment Company\\JediKnight\\v1.0" value="Install Path"/>\n <shortcut ev="startmenu" path="Programs\\LucasArts\\Jedi Knight\\Jedi Knight.lnk"/>\n </locations>\n <files type="Saves">\n <save path="player"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarWarsJediKnightJediAcademy" follows="StarWarsJediKnight2JediOutcast">\n <title>Star Wars: Jedi Knight: Jedi Academy</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="jedi academy"/>\n </locations>\n <files type="Saves">\n <save path="GameData\\base\\saves"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <expansion name="StarWarsJediKnightMysteriesOfTheSith" for="StarWarsJediKnightDarkForces2">\n <title>Star Wars: Jedi Knight: Mysteries of the Sith</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="jedi knight mysteries of the sith"/>\n </locations>\n <files type="Saves">\n <save path="player"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="StarWarsKnightsOfTheOldRepublic">\n <title>Star Wars: Knights of the Old Republic</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="LucasArts\\SWKotOR"/>\n <path ev="steamcommon" path="swkotor"/>\n <registry root="local_machine" key="SOFTWARE\\BioWare\\SW\\KOTOR" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\LucasArts\\Star Wars Knights of the Old Republic\\ Star Wars Knights of the Old Republic.lnk"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>David Barbour</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarWarsKnightsOfTheOldRepublic2TheSithLords" follows="StarWarsKnightsOfTheOldRepublic">\n <title>Star Wars: Knights of the Old Republic II: The Sith Lords</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="LucasArts\\SWKotOR2"/>\n <registry root="local_machine" key="SOFTWARE\\LucasArts\\KotOR2" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\LucasArts\\Star Wars Knights of the Old Republic II - The Sith Lords\\ Star Wars Knights of the Old Republic II - The Sith Lords.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>David Barbour</contributor>\n </version>\n </game>\n <game name="StarWarsTheCloneWarsRepublicHeroes">\n <title>Star Wars: The Clone Wars - Republic Heroes</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="SWTCWRH"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StarWarsTheForceUnleashed">\n <title>Star Wars: The Force Unleashed</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Aspyr\\Star Wars The Force Unleashed"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="StarWarsTheForceUnleashed2" follows="StarWarsTheForceUnleashed">\n <title>Star Wars: The Force Unleashed II</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="LucasArts\\Star Wars The Force Unleashed 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="StarWolves">\n <title>Star Wolves</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Star Wolves"/>\n <registry root="local_machine" key="SOFTWARE\\Cenega\\Star Wolves\\1.0" value="directory"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSTARWOLVES" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Star Wolves\\Star Wolves.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SteelStormBurningRetribution">\n <title>Steel Storm: Burning Retribution</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="steelstorm" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="gamedata\\data\\profiles"/>\n </files>\n <files type="Scores">\n <save path="gamedata\\data\\campaign"/>\n </files>\n <files type="Settings">\n <save path="gamedata" filename="config.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="StillLife" follows="PostMortem">\n <title>Still Life</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Still Life"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGSTILLLIFE" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microids\\StillLife" value="CurrentPath"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Still Life\\Still Life.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="StreetFighter4">\n <title>Street Fighter IV</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="CAPCOM\\STREETFIGHTERIV"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="StreetsOfMoscow">\n <title>Streets of Moscow</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Streets of Moscow"/>\n </locations>\n <files type="Saves">\n <save path="profiles"/>\n </files>\n <files type="Settings">\n <save filename="settings.blk"/>\n <save path="config"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="StubbsTheZombieRebelWithoutAPulse">\n <title>Stubbs the Zombie: Rebel Without a Pulse</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Stubbs the Zombie"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Summoner">\n <title>Summoner</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20074"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Summoner2" follows="Summoner">\n <title>Summoner 2</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20448"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SuperbrothersSwordAndSorcery">\n <title>Superbrothers: Sword & Sorcery</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="204060"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="capy\\SwordAndSworcery"/>\n </locations>\n <files type="Saves">\n <save filename="savedata.bin"/>\n </files>\n <files type="Settings">\n <save filename="config.txt"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SuperLaserRacer">\n <title>Super Laser Racer</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Super Laser Racer"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="SuperMeatBoy">\n <title>Super Meat Boy</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Team Meat\\SuperMeatBoy"/>\n <path ev="steamcommon" path="super meat boy"/>\n <registry root="local_machine" key="SOFTWARE\\TeamMeat\\SuperMeatBoy" value="Install_Path"/>\n <shortcut ev="startmenu" path="Programs\\Team Meat\\SuperMeatBoy\\Super Meat Boy.lnk"/>\n </locations>\n <files type="Saves">\n <save path="UserData"/>\n </files>\n <contributor>Arc Angel</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SuperStardustHD">\n <title>Super Stardust HD</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80068"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SuperStardustPortable">\n <title>Super Stardust Portable</title>\n <version os="PSP" region="USA">\n <ps_code prefix="NPUG" suffix="80221"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SupremeCommander">\n <title>Supreme Commander</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Gas Powered Games\\SupremeCommander"/>\n </locations>\n <files type="Replays">\n <save path="replays"/>\n </files>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save filename="Game.prefs"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="SupremeCommander2" follows="SupremeCommander">\n <title>Supreme Commander 2</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Gas Powered Games\\Supreme Commander 2 "/>\n </locations>\n <files type="Replays">\n <save path="replays"/>\n </files>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save filename="Game.prefs"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="SupremeCommanderForgedAlliance" follows="SupremeCommander">\n <title>Supreme Commander: Forged Alliance</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Gas Powered Games\\Supreme Commander Forged Alliance"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="SwordsAndSoldiersHD">\n <title>Swords and Soldiers HD</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="swords and soldiers"/>\n </locations>\n <files type="Saves">\n <save path="Data" filename="Save.txt"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Syberia">\n <title>Syberia</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Syberia Saves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Syberia2" follows="Syberia">\n <title>Syberia II</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Syberia 2 Saves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Syndicate2012">\n <title>Syndicate (2012)</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Syndicate"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="SystemShock2">\n <title>System Shock 2</title>\n <version os="Windows">\n <locations>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\shock2.exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save path="save_*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TachyonTheFringe">\n <title>Tachyon: The Fringe</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="NovaLogic\\Tachyon"/>\n <path ev="steamcommon" path="tachyon the fringe"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\tachyon.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\NovaLogic\\Tachyon\\Tachyon.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.dat"/>\n <save filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="Tachyon.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TalesOfMonkeyIsland1">\n <title>Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Launch of the Screaming Narwhal"/>\n <path ev="userdocuments" path="Telltale Games\\tales of monkey island - chapter 1"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TalesOfMonkeyIsland2" follows="TalesOfMonkeyIsland1">\n <title>Tales of Monkey Island Chapter 2: The Siege of Spinner Cay</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\tales of monkey island - chapter 2"/>\n <path ev="userdocuments" path="Telltale Games\\The Siege of Spinner Cay"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TalesOfMonkeyIsland3" follows="TalesOfMonkeyIsland2">\n <title>Tales of Monkey Island Chapter 3: Lair of the Leviathan</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Lair of the Leviathan"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TalesOfMonkeyIsland4" follows="TalesOfMonkeyIsland3">\n <title>Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\The Trial and Execution of Guybrush Threepwood"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TalesOfMonkeyIsland5" follows="TalesOfMonkeyIsland4">\n <title>Tales of Monkey Island Chapter 5: Rise of the Pirate God</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Rise of the Pirate God"/>\n </locations>\n <files type="Saves">\n <save filename="*.save"/>\n </files>\n <files type="Settings">\n <save filename="prefs.prop"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TankUniversal">\n <title>Tank Universal</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="tank universal steamworks edition"/>\n </locations>\n <files type="Saves">\n <save path="SAVES"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TarrChronicles">\n <title>Tarr Chronicles</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Tarr Chronicles"/>\n <registry root="local_machine" key="SOFTWARE\\Akella\\Tarr Chronicles" value="Path"/>\n <registry root="local_machine" key="SOFTWARE\\Quazar\\Tarr" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Tarr Chronicles\\Tarr Chronicles.lnk"/>\n </locations>\n <files type="Saves">\n <save path="data\\profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TECNOTheBase">\n <title>TECNO: the Base</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="TECNO_theBase"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\[TECNO - the Base]_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Games\\TECNO\\Play TECNO.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saved"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Tekken5">\n <title>Tekken 5</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21059"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TempleOfElementalEvil">\n <title>Temple of Elemental Evil</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Temple of Elemental Evil"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTEMPLEOFELEMENTAEVIL" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Temple of Elemental Evil\\Temple of Elemental Evil.lnk"/>\n </locations>\n <files type="Characters">\n <save path="modules\\*\\players"/>\n </files>\n <files type="Saves">\n <save path="modules\\*\\Save"/>\n </files>\n <files type="Settings">\n <save filename="ToEE.cfg"/>\n </files>\n <comment>Also archives expansion saves</comment>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TerminatorSalvation">\n <title>Terminator: Salvation</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="salvation"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Terraria">\n <title>Terraria</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Terraria"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>murasaki8</contributor>\n </version>\n </game>\n <game name="TerroristTakedown2" follows="TerroristTakedownCovertOperations">\n <title>Terrorist Takedown 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="City Interactive\\Terrorist Takedown 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TerroristTakedown3" follows="TerroristTakedown2">\n <title>Terrorist Takedown 3</title>\n <version os="Windows">\n <locations>\n <path ev="public" path="Documents\\City Interactive\\Terrorist Takedown 3"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="BanIPList.txt"/>\n <save filename="Game.ini"/>\n <save filename="settings.cfg"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="TerroristTakedownCovertOperations">\n <title>Terrorist Takedown: Covert Operations</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="City Interactive\\Terrorist Takedown - Covert Operations"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\TTCO_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\City Interactive\\Terrorist Takedown - Covert Operations\\Terrorist Takedown - Covert Operations.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TestDriveUnlimited2">\n <title>Test Drive Unlimited 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Eden Games\\Test Drive Unlimited 2"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TexMurphyOverseer" follows="PandoraDirective">\n <title>Tex Murphy: Overseer</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Overseer"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTEX5" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Overseer\\Overseer.lnk"/>\n </locations>\n <files type="Saves">\n <save path="games"/>\n <save path="players"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TheyreAlive">\n <title>They''re Alive!</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GFI\\They_re_alive"/>\n <registry root="current_user" key="Software\\GFI\\They''re alive!" value="path"/>\n <shortcut ev="startmenu" path="Programs\\GFI\\They''re alive!\\They''re alive!.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVES"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Thief2" follows="ThiefTheDarkProject">\n <title>Thief II: The Metal Age</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Games\\Thief2"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\thief2.exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n <save path="SAVES" filename="*.sav"/>\n </files>\n <files type="Settings">\n <save filename="user.bnd"/>\n <save filename="USER.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ThiefDeadlyShadows" follows="Thief2">\n <title>Thief: Deadly Shadows</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\Thief - Deadly Shadows" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\Thief - Deadly Shadows" only_for="WindowsVista"/>\n <path ev="steamcommon" path="thief deadly shadows\\save"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ThiefTheDarkProject">\n <title>Thief: The Dark Project</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Thief"/>\n <shortcut ev="startmenu" path="Programs\\Thief\\Thief.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVES"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows" release="Gold">\n <title>Thief Gold</title>\n <locations>\n <path ev="installlocation" path="ThiefG"/>\n <shortcut ev="startmenu" path="Programs\\Thief Gold\\Thief.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SAVES"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ThrillvilleOffTheRails">\n <title>Thrillville: Off The Rails</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="LucasArts\\Thrillville 07"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="KeyMouse.cfg"/>\n <save filename="options.txt"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="TimeGentlemenPlease" follows="BenThereDanThat">\n <title>Time Gentlemen, Please!</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Time Gentlemen, Please" only_for="WindowsVista"/>\n <path ev="userdocuments" path="My Saved Games\\Time Gentlemen, Please" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TitanQuest">\n <title>Titan Quest</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Titan Quest"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <expansion name="TitanQuestImmortalThrone" for="TitanQuest">\n <title>Titan Quest: Immortal Throne</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Titan Quest - Immortal Throne"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </expansion>\n <game name="TombRaider">\n <title>Tomb Raider</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="TOMBRAID"/>\n </locations>\n <files type="Saves">\n <save filename="SAVEGAME.*"/>\n </files>\n <identifier filename="SAVEGAME.*"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TombRaider2" follows="TombRaider">\n <title>Tomb Raider II</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Core Design\\Tomb Raider II"/>\n <registry root="current_user" key="Software\\core design\\Tomb Raider II" value="AppPath"/>\n <shortcut ev="startmenu" path="Programs\\Core Design\\Tomb Raider 2\\ Tomb Raider II.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="savegame.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="TombRaider2TheGoldenMask" for="TombRaider2">\n <title>Tomb Raider II: The Golden Mask</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Core Design\\Tomb Raider II Gold"/>\n <registry root="current_user" key="Software\\core design\\Tomb Raider II Gold" value="GoldPath"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\t2gold.exe" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\Core Design\\Tomb Raider II Gold\\Tomb Raider II Gold.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="savegame.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="TombRaider3AdventuresOfLaraCroft" follows="TombRaider2">\n <title>Tomb Raider III: Adventures Of Lara Croft</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Core Design\\Tomb Raider III"/>\n </locations>\n <files type="Saves">\n <save filename="savegame.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="TombRaider3TheLostArtifact" for="TombRaider3AdventuresOfLaraCroft">\n <title>Tomb Raider III: The Lost Artifact</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Core Design\\Tomb Raider - The Lost Artifact"/>\n </locations>\n <files type="Saves">\n <save filename="savegame.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="TombRaiderAnniversary" follows="TombRaiderLegend">\n <title>Tomb Raider: Anniversary</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30718" append="-TALIST"/>\n <ps_code prefix="BLUS" suffix="30718" append="-TAPROFILE" type="Profile"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Eidos\\Tomb Raider - Anniversary"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TombRaiderChronicles" follows="TombRaiderTheLastRevelation">\n <title>Tomb Raider: Chronicles</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Core Design\\Tomb Raider Chronicles"/>\n </locations>\n <files type="Saves">\n <save filename="savegame.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TombRaiderLegend" follows="TombRaiderTheAngelOfDarkness">\n <title>Tomb Raider: Legend</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30718" append="-T7LIST"/>\n <ps_code prefix="BLUS" suffix="30718" append="-T7PROFILE" type="Profile"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PSP" region="EUR">\n <ps_code prefix="ULES" suffix="00283"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Tomb Raider - Legend"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TombRaiderTheAngelOfDarkness" follows="TombRaiderChronicles">\n <title>Tomb Raider: The Angel of Darkness</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Eidos Interactive\\TRAOD"/>\n </locations>\n <files type="Saves">\n <save path="SaveGame"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TombRaiderTheLastRevelation" follows="TombRaider3AdventuresOfLaraCroft">\n <title>Tomb Raider: The Last Revelation</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Core Design\\Tomb Raider - The Last Revelation"/>\n </locations>\n <files type="Saves">\n <save filename="savegame.*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TombRaiderUnderworld" follows="TombRaiderAnniversary">\n <title>Tomb Raider: Underworld</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30718" append="-SAVE"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Eidos\\Tomb Raider - Underworld"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <expansion name="TombRaiderUnfinishedBusiness" for="TombRaider">\n <title>Tomb Raider: Unfinished Business</title>\n <version os="DOS">\n <locations>\n <parent name="TombRaider" os="DOS"/>\n </locations>\n <files type="Saves">\n <save filename="SAVEUB.*"/>\n </files>\n <identifier filename="SAVEUB.*"/>\n <contributor>SanMadJack</contributor>\n </version>\n </expansion>\n <game name="TorchLight">\n <title>TorchLight</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="runic games\\torchlight"/>\n </locations>\n <files type="Saves">\n <save path="save*"/>\n </files>\n <files type="Settings">\n <save filename="local_settings.txt"/>\n <save filename="settings.txt"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TotalWarShogun2">\n <title>Total War: Shogun 2</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="The Creative Assembly\\Shogun2"/>\n </locations>\n <files type="Replys">\n <save path="replays"/>\n </files>\n <files type="Saves">\n <save path="advice_history"/>\n <save path="avatar"/>\n <save path="save_games"/>\n </files>\n <files type="Settings">\n <save path="scripts"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ToTheMoon">\n <title>To the Moon</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="To the Moon - Freebird Games"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Trackmania2">\n <title>Trackmania 2 Canyon</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="ManiPlanet"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Config" filename="*.Gbx">\n <except path="Config" filename="Default.SystemConfig.Gbx"/>\n </save>\n </files>\n <files type="Settings">\n <save path="Config" filename="blacklist.txt"/>\n <save path="Config" filename="Default.SystemConfig.Gbx"/>\n <save path="Config" filename="guestlist.txt"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="TrackManiaNationsForever">\n <title>TrackMania Nations Forever</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="TrackMania"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <files type="Statistics">\n <save path="Scores"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TransformersWarForCybertron">\n <title>Transformers: War for Cybertron</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Transformers"/>\n </locations>\n <files type="Saves">\n <save path="TransGame\\SaveData"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TrappedDead">\n <title>Trapped Dead</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Trapped Dead"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save filename="*.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Tremulous">\n <title>Tremulous</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Tremulous"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Trials2SecondEdition">\n <title>Trials 2: Second Edition</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Redlynx\\Trials 2 SE"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Trine">\n <title>Trine</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="35700"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Trine2" follows="Trine">\n <title>Trine 2</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="35720"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Tron2">\n <title>Tron 2.0</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Buena Vista Interactive\\Tron 2.0"/>\n <registry root="local_machine" key="SOFTWARE\\Monolith Productions\\Tron 2.0\\1.0" value="InstallDir"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save filename="display.cfg"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="TronEvolution">\n <title>Tron: Evolution</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Disney Interactive Studios\\Tron Evolution"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Tropico">\n <title>Tropico</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Tropico Reloaded\\Tropico 1"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTROPICO1" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Kalypso Media\\Tropico Reloaded\\Tropico" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Tropico Reloaded\\Tropico 1\\Tropico 1.lnk"/>\n </locations>\n <files type="Saves">\n <save path="games"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Tropico2PirateCove" follows="Tropico">\n <title>Tropico 2: Pirate Cove</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Tropico Reloaded\\Tropico 2"/>\n <path ev="steamcommon" path="tropico 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTROPICO2" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Kalypso Media\\Tropico Reloaded\\Tropico2" value="Directory"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Tropico Reloaded\\Tropico 2\\Tropico 2.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Campaign"/>\n <save path="Save"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Tropico3" follows="Tropico2PirateCove">\n <title>Tropico 3</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Tropico 3"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="TrueCrimeStreetsOfLA">\n <title>True Crime: Streets of LA</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Activision\\True Crime"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\True Crime" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\True Crime - Streets of LA\\True Crime - Streets of LA.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save filename="TrueCrime.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Turok2008">\n <title>Turok (2008)</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Touchstone\\Turok"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TwinSector">\n <title>Twin Sector</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="TwinSector"/>\n </locations>\n <files type="Saves">\n <save path="Savegames"/>\n </files>\n <files type="Settings">\n <save filename="claws.prefs"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="TwoWorlds2">\n <title>Two Worlds II</title>\n <version os="Windows">\n <locations>\n <path ev="savedgames" path="Two Worlds II" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Tyrian2000">\n <title>Tyrian 2000</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Tyrian 2000"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTYRIAN2000" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Tyrian 2000\\Tyrian 2000.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="TYRIAN.SAV"/>\n </files>\n <files type="Settings">\n <save filename="TYRIAN.CFG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="UFOAftermath">\n <title>UFO: Aftermath</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="CENEGA\\UFO Aftermath"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\UFO.exe" value="Path"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="UltimateAlliance">\n <title>Ultimate Alliance</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30010"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="UltimateDoom">\n <title>Ultimate Doom</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="DOOM Collector''s Edition\\Ultimate Doom"/>\n </locations>\n <files type="Saves">\n <save filename="*.zds"/>\n </files>\n <contributor>Kee715</contributor>\n </version>\n </game>\n <game name="UnchartedDrakesFortune">\n <title>Uncharted: Drake''s Fortune</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BCUS" suffix="98103"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="EUR">\n <ps_code prefix="BCES" suffix="00065"/>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="UnderAKillingMoon" follows="MartianMemorandum">\n <title>Under A Killing Moon</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Under a Killing Moon"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGTEX3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Under a Killing Moon\\Under a Killing Moon.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="GAMES"/>\n <save path="PLAYERS"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Undying">\n <title>Clive Barker''s Undying</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="EA Games\\Clive Barker''s Undying"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\undying.exe" value="Path" detract="System"/>\n <shortcut ev="startmenu" path="Programs\\EA Games\\Clive Barker''s Undying\\Clive Barker''s Undying(tm).lnk" detract="System"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="System" filename="*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="UniverseAtWarEarthAssault">\n <title>Universe At War: Earth Assault</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Sega\\UAWEA"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="Unreal">\n <title>Unreal</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Unreal Gold"/>\n <path ev="installlocation" path="Unreal"/>\n <path ev="installlocation" path="UnrealGold"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGUNREAL" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Unreal Technology\\Installed Apps\\Unreal Gold" value="Folder"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Unreal Gold\\Unreal Gold.lnk" detract="System"/>\n <shortcut ev="startmenu" path="Programs\\Unreal Gold\\Play Unreal Gold.lnk" detract="System"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="System" filename="*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Unreal2" follows="Unreal">\n <title>Unreal II: The Awakening</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Unreal 2 – The Awakening SE"/>\n <path ev="installlocation" path="Unreal2"/>\n <path ev="steamcommon" path="unreal ii the awakening"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGUNREAL2" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{626F32D6-007C-41D5-8157-9509AB1428BE}" value="InstallLocation"/>\n <registry root="local_machine" key="SOFTWARE\\Unreal Technology\\Installed Apps\\U2XMP" value="Folder"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Unreal 2 – The Awakening SE\\Unreal 2 – The Awakening.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="System" filename="*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="UnrealTournament">\n <title>Unreal Tournament</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20034"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Unreal Tournament GOTY"/>\n <path ev="steamcommon" path="unreal tournament"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGUT" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Unreal Technology\\Installed Apps\\UnrealTournament" value="Folder"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Unreal Tournament GOTY\\Unreal Tournament GOTY.lnk"/>\n </locations>\n <files type="Saves">\n <save path="System" filename="User.ini"/>\n </files>\n <files type="Settings">\n <save path="System" filename="*.ini">\n <except path="System" filename="User.ini"/>\n </save>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="UnrealTournament2004" follows="UnrealTournament">\n <title>Unreal Tournament 2004</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Unreal Tournament 2004"/>\n <path ev="installlocation" path="UT2004"/>\n <path ev="steamcommon" path="unreal tournament 2004"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGUT2004" value="PATH"/>\n <registry root="local_machine" key="SOFTWARE\\Unreal Technology\\Installed Apps\\UT2004" value="Folder"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Unreal Tournament 2004\\Unreal Tournament 2004.lnk" detract="System"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Settings">\n <save path="System" filename="*.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="UnrealTournament3" follows="UnrealTournament2004">\n <title>Unreal Tournament III</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30086"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Unreal Tournament 3"/>\n </locations>\n <files type="Saves">\n <save path="UTGame\\SaveData"/>\n </files>\n <files type="Settings">\n <save path="UTGame\\Config"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Uplink">\n <title>Uplink</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="uplink"/>\n </locations>\n <files type="Saves">\n <save path="users">\n <except path="users" filename="debug.log"/>\n <except path="users" filename="options"/>\n </save>\n <save path="usersold"/>\n <save path="userstmp"/>\n </files>\n <files type="Settings">\n <save path="users" filename="options"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="UrQuanMasters">\n <title>The Ur-Quan Masters</title>\n <version>\n <locations>\n <path ev="appdata" path="uqm"/>\n <path ev="userprofile" path=".uqm"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <files type="Settings">\n <save filename="*.cfg"/>\n </files>\n <contributor>Scandalon</contributor>\n </version>\n </game>\n <game name="Uru">\n <title>Uru: Ages Beyond Myst</title>\n <version os="Windows" release="CompleteChronicles">\n <title>Uru: The Complete Chronicles</title>\n <locations>\n <path ev="installlocation" path="GOG.com\\Myst Uru Complete Chronicles"/>\n <path ev="installlocation" path="Ubi Soft\\Cyan Worlds\\Myst Uru Complete Chronicles"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGURUCC" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Myst Uru Complete Chronicles\\Myst Uru Complete Chronicles.lnk"/>\n </locations>\n <files type="Saves">\n <save path="sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ValkyriaChronicles">\n <title>Valkyria Chronicles</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30196"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="PS3" region="EUR">\n <ps_code prefix="BLES" suffix="00372"/>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="VampireTheMasqueradeBloodlines">\n <title>Vampire: The Masquerade - Bloodlines</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Activision\\Vampire - Bloodlines"/>\n <path ev="steamcommon" path="vampire the masquerade - bloodlines"/>\n <registry root="local_machine" key="SOFTWARE\\Activision\\Vampire - Bloodlines" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\Vampire - The Masquerade Bloodlines\\Vampire - The Masquerade Bloodlines.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Vampire\\SAVE"/>\n </files>\n <contributor>Samuel Barbour</contributor>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="VampireTheMasqueradeRedemption">\n <title>Vampire: The Masquerade - Redemption</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Vampire The Masquerade - Redemption"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGVAMPIRE" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Vampire - The Masquerade - Redemption\\Vampire - The Masquerade - Redemption.lnk"/>\n </locations>\n <files type="Saves">\n <save path="SaveGames"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="VelvetAssassin">\n <title>Velvet Assassin</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Velvet Assassin"/>\n </locations>\n <files type="Saves">\n <save filename="*"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="VenusHostage">\n <title>Venus Hostage</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="VenusHostage"/>\n </locations>\n <files type="Saves">\n <save filename="VenusHostage.*"/>\n </files>\n <files type="Settings">\n <save filename="config.ini"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="VietnamBlackOps">\n <title>Vietnam: Black Ops</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="BlackOps"/>\n <shortcut ev="startmenu" path="Programs\\Fused Software\\BlackOps.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <identifier filename="Data.rez"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="VigilBloodBitterness">\n <title>Vigil: Blood Bitterness</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Vigil Blood Bitterness"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Vigil Blood Bitterness_is1" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\Vigil Blood Bitterness\\Vigil Blood Bitterness.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Vigil\\Profiles"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Vivisector">\n <title>Vivisector: Beast Within</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="CENEGA\\Vivisector"/>\n <registry root="current_user" key="Software\\CENEGA\\Vivisector" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\CENEGA\\Vivisector\\Vivisector.lnk"/>\n </locations>\n <files type="Saves">\n <save path="DATA\\Save"/>\n </files>\n <files type="Settings">\n <save filename="config.cfg"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Void">\n <title>The Void</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Void"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="VVVVVV">\n <title>VVVVVV</title>\n <version platform="Flash">\n <locations>\n <path ev="flashshared" path="localhost\\steam\\steamapps\\common\\VVVVVV"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userprofile" path="VVVVVV"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WalkingDead">\n <title>The Walking Dead</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\The Walking Dead"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="WallaceAndGrommitsGrandAdventures1">\n <title>Wallace & Gromit''s Grand Adventures Episode 1: Fright of the Bumblebees</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Fright of the Bumblebees"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WallaceAndGrommitsGrandAdventures2" follows="WallaceAndGrommitsGrandAdventures1">\n <title>Wallace & Gromit''s Grand Adventures Episode 2: The Last Resort</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\The Last Resort"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WallaceAndGrommitsGrandAdventures3" follows="WallaceAndGrommitsGrandAdventures2">\n <title>Wallace & Gromit''s Grand Adventures Episode 3: Muzzled!</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\Muzzled"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WallaceAndGrommitsGrandAdventures4" follows="WallaceAndGrommitsGrandAdventures3">\n <title>Wallace & Gromit''s Grand Adventures Episode 4: The Bogey Man</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Telltale Games\\The Bogey Man"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WantedWeaponsOfFate">\n <title>Wanted: Weapons of Fate</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="wanted"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Warcraft3">\n <title>Warcraft III</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Warcraft III"/>\n <registry root="current_user" key="Software\\Blizzard Entertainment\\Warcraft III" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\Warcraft III\\Warcraft III.lnk"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Mark Barbour</contributor>\n </version>\n </game>\n <game name="Warhammer40kDawnOfWar2">\n <title>Warhammer 40,000: Dawn of War II</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Dawn of War 2"/>\n </locations>\n <files type="Playbacks">\n <save path="Playback"/>\n </files>\n <files type="Saves">\n <save path="Saved Games"/>\n </files>\n <files type="Screenshots">\n <save path="Screenshots"/>\n </files>\n <files type="Settings">\n <save path="Settings"/>\n </files>\n <comment>Also saves Chaos Rising Extension.</comment>\n <restore_comment>Restoring saves for this game also requires restoring Game for Windows Account Data, which MASGAU automatically backs up in G4WAccountData.</restore_comment>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="Warhammer40kDawnOfWar2Retribution">\n <title>Warhammer 40,000: Dawn of War II - Retribution</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="56400"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Dawn of War II - Retribution"/>\n </locations>\n <files type="Custom Badges">\n <save path="Badges"/>\n </files>\n <files type="Playbacks">\n <save path="Playback"/>\n </files>\n <files type="Saves">\n <save path="Saved Games"/>\n </files>\n <files type="Screenshots">\n <save path="Screenshots"/>\n </files>\n <files type="Settings">\n <save path="Settings"/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </game>\n <game name="Warhammer40kDawnOfWarDarkCrusade">\n <title>Warhammer 40,000: Dawn of War: Dark Crusade</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="THQ\\DarkCrusade"/>\n <registry root="local_machine" key="SOFTWARE\\THQ\\Dawn of War - Dark Crusade" value="InstallLocation"/>\n <shortcut ev="startmenu" path="Programs\\THQ\\Dark Crusade\\Dawn of War - Dark Crusade.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Profiles"/>\n </files>\n <contributor>Michael Lamere</contributor>\n </version>\n </game>\n <game name="Warhammer40kSpaceMarine">\n <title>Warhammer 40,000: Space Marine</title>\n <version platform="SteamCloud">\n <locations>\n <path ev="steamuserdata" path="55150\\remote"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Warzone2100">\n <title>Warzone 2100</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Warzone 2100"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <files type="Settings">\n <save filename="keymap.map"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="WatchmenTheEndIsNigh1">\n <title>Watchmen: The End is Nigh - Part 1</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="watchmen"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="WatchmenTheEndIsNigh2" follows="WatchmenTheEndIsNigh1">\n <title>Watchmen: The End is Nigh - Part 2</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="watchmen part 2"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Wet">\n <title>Wet</title>\n <version os="PS3" region="USA">\n <ps_code prefix="BLUS" suffix="30403"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Wheelman">\n <title>Wheelman</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Wheelman"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="WheelOfFortune">\n <title>Wheel of Fortune</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUA" suffix="80137"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WhisperedWorld">\n <title>The Whispered World</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="whispered world"/>\n </locations>\n <files type="Saves">\n <save path="savegames"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="WingCommander">\n <title>Wing Commander</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Wing Commander 1 and 2\\WC"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGWINGCOMMANDER" value="PATH"/>\n <shortcut ev="startmenu" path="GOG.com\\Wing Commander 1 and 2\\Wing Commander\\Wing Commander.lnk" append="WC" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="GAMEDAT" filename="SAVEGAME.WLD"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WingCommander2" follows="WingCommander">\n <title>Wing Commander II: Vengeance of the Kilrathi</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Wing Commander 1 and 2\\WC2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGWINGCOMMANDER2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Wing Commander 1 and 2\\Wing Commander II\\Wing Commander II.lnk" append="WC2" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="GAMEDAT" filename="SAVEGAME.WC2"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WingCommander3" follows="WingCommander2">\n <title>Wing Commander III</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Wing Commander 3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGWINGCOMMANDER3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Wing Commander III\\Wing Commander III.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.WSG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WingCommander4" follows="WingCommander3">\n <title>Wing Commander IV: The Price of Freedom</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Wing Commander IV"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGWC4" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Wing Commander IV\\Wing Commander IV.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="*.WSG"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WingCommanderPrivateer">\n <title>Wing Commander: Privateer</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Wing Commander Privateer"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGWINGCOMMANDERPRIVATEER" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Wing Commander Privateer\\Wing Commander Privateer.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="WingsOfPrey">\n <title>Wings of Prey</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games\\Wings Of Prey"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Grinden</contributor>\n </version>\n </game>\n <game name="WipeoutPure">\n <title>Wipeout Pure</title>\n <version os="PSP" region="EUR">\n <ps_code prefix="UCES" suffix="00001"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="Witcher">\n <title>The Witcher</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="The Witcher"/>\n </locations>\n <files type="Saves">\n <save path="saves"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Witcher2" follows="Witcher">\n <title>The Witcher 2: Assassin of Kings</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Witcher 2"/>\n </locations>\n <files type="DLC">\n <save path="Downloads" filename="*.dlc"/>\n </files>\n <files type="Saves">\n <save path="gamesaves"/>\n </files>\n <files type="Settings">\n <save path="Config"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Wolfenstein" follows="ReturnToCastleWolfenstein">\n <title>Wolfenstein</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="id software\\WolfSP"/>\n </locations>\n <files type="Saves">\n <save path="base"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Wolfenstein3D">\n <title>Wolfenstein 3D</title>\n <version os="PS3" region="USA">\n <ps_code prefix="NPUB" suffix="30074" append="-PROF" type="Profile"/>\n <ps_code prefix="NPUB" suffix="30074" append="-SAVE"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Wolfschanze2">\n <title>Wolfschanze II</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="City Interactive\\Wolfschanze"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="WonderfulEndOfTheWorld">\n <title>The Wonderful End of the World</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="the wonderful end of the world"/>\n </locations>\n <files type="Saves">\n <save filename="prefs.dat"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="WorldOfGoo">\n <title>World of Goo</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="2DBoy\\WorldOfGoo"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="WorldOfWarcraft">\n <title>World of Warcraft</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="World of Warcraft"/>\n <registry root="local_machine" key="SOFTWARE\\Blizzard Entertainment\\World of Warcraft" value="InstallPath"/>\n <shortcut ev="startmenu" path="Programs\\World of Warcraft\\World of Warcraft.lnk"/>\n </locations>\n <files type="Saves">\n <save path="WTF"/>\n </files>\n <contributor>Caleb Love</contributor>\n </version>\n </game>\n <game name="Worms2">\n <title>Worms 2</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="MicroProse\\Worms2"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\DirectPlay\\Applications\\worms2" value="Path"/>\n <shortcut ev="startmenu" path="Programs\\MicroProse\\Worms2\\Sound Bank Editor.lnk"/>\n </locations>\n <files type="Saves">\n <save path="Saves"/>\n </files>\n <files type="Teams">\n <save path="Teams"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="X2TheThreat">\n <title>X2: The Threat</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="x2 - the threat"/>\n <registry root="local_machine" key="SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\X2 Key" value="Path"/>\n </locations>\n <files type="Saves">\n <save filename="*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="X3AlbionPrelude" follows="X3TerranConflict">\n <title>X3: Albion Prelude</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Egosoft\\X3AP"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="X3Reunion" follows="X2TheThreat">\n <title>X3: Reunion</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Egosoft\\X3"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="X3TerranConflict" follows="X3Reunion">\n <title>X3: Terran Conflict</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Egosoft\\X3TC"/>\n </locations>\n <files type="Saves">\n <save path="save"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Xenosaga">\n <title>Xenosaga Episode I: Der Wille zur Macht</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20469"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Xenosaga2" follows="Xenosaga">\n <title>Xenosaga Episode II: Jenseits von Gut und Böse</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20892"/>\n <ps_code prefix="SLUS" suffix="21133"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Xenosaga3" follows="Xenosaga2">\n <title>Xenosaga Episode III: Also sprach Zarathustra</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21389"/>\n <ps_code prefix="SLUS" suffix="21417"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Xenus2">\n <title>Xenus 2: White Gold</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Documents\\White Gold" only_for="WindowsXP"/>\n <path ev="public" path="Documents\\White Gold" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="SAVE"/>\n </files>\n <files type="Settings">\n <save path="INI"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="XFiles">\n <title>The X-Files</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Fox\\The X-Files"/>\n </locations>\n <files type="Saves">\n <save filename="*.x"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="XFilesResistOrServe">\n <title>The X-Files: Resist or Serve</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20179"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="XIII">\n <title>XIII</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20677"/>\n <contributor>SanMadJack</contributor>\n </version>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\XIII"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGXIII" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\XIII\\XIII.lnk" detract="system"/>\n </locations>\n <files type="Saves">\n <save path="Save"/>\n </files>\n <files type="Settings">\n <save path="system" filename="XIII.ini"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="XMenLegends">\n <title>X-Men Legends</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="20656"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="XMenLegends2" follows="XMenLegends">\n <title>X-Men Legends II: Rise of Apocalypse</title>\n <version os="PS2" region="USA">\n <ps_code prefix="SLUS" suffix="21138"/>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="XMenOriginsWolverine">\n <title>X-Men Origins: Wolverine</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Wolverine"/>\n </locations>\n <files type="Saves">\n <save path="SaveData"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="XpandRally">\n <title>Xpand Rally</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="xpand rally"/>\n <registry root="local_machine" key="SOFTWARE\\Techland\\XpandRally" value="DestinationDir"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Data\\profiles"/>\n </files>\n <files type="Settings">\n <save path="Data" filename="AudioSettings.scr"/>\n <save path="Data" filename="CoDrvReader.scr"/>\n <save path="Data" filename="Controller.scr"/>\n <save path="Data" filename="DefaultControllers.scr"/>\n <save path="Data" filename="VideoSettings.scr"/>\n <save path="Data" filename="VideoSettingsGTI.scr"/>\n <save path="Data" filename="VideoSettingsGTI_MP.scr"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="XpandRallyExtreme" follows="XpandRally">\n <title>Xpand Rally Extreme</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="xpand rally xtreme"/>\n <registry root="local_machine" key="SOFTWARE\\Techland\\XpandRallyXtreme" value="DestinationDir"/>\n </locations>\n <files type="Replays">\n <save path="Replays"/>\n </files>\n <files type="Saves">\n <save path="Data\\profiles"/>\n </files>\n <files type="Settings">\n <save path="Data" filename="AudioSettings.scr"/>\n <save path="Data" filename="CoDrvReader.scr"/>\n <save path="Data" filename="Controller.scr"/>\n <save path="Data" filename="DefaultControllers.scr"/>\n <save path="Data" filename="VideoSettings.scr"/>\n <save path="Data" filename="VideoSettingsGTI.scr"/>\n <save path="Data" filename="VideoSettingsGTI_MP.scr"/>\n </files>\n <contributor>AdmiringWorm</contributor>\n </version>\n </game>\n <game name="Yesterday">\n <title>Yesterday</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Application Data\\Pendulo Studios\\Yesterday" only_for="WindowsXP"/>\n <path ev="allusersprofile" path="Pendulo Studios\\Yesterday" only_for="WindowsVista"/>\n </locations>\n <files type="Saves">\n <save path="SAVEGAME"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ZenoClash">\n <title>Zeno Clash</title>\n <version os="Windows">\n <locations>\n <path ev="steamcommon" path="zenoclash"/>\n </locations>\n <files type="Saves">\n <save path="zenozoik\\SAVE"/>\n </files>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n <game name="Ziro">\n <title>Ziro</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="My Games/Ziro"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ZombieDriver">\n <title>Zombie Driver</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="ZombieDriver"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ZombieShooter">\n <title>Zombie Shooter</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="ZombieShooter Saves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="ZombieShooter2" follows="ZombieShooter">\n <title>Zombie Shooter 2</title>\n <version os="Windows">\n <locations>\n <path ev="userdocuments" path="Zombie Shooter 2 Saves"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </game>\n <game name="Zork0" follows="BeyondZork">\n <title>Zero Zork: The Revenge of Megaboz</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Zork Anthology\\Zero Zork"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGZEROZORK" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Zork Anthology\\Zero Zork - The Revenge of Megaboz\\Zero Zork - The Revenge of Megaboz.lnk" append="Zero Zork" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="*.SAV"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Zork1">\n <title>Zork: The Great Underground Empire</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Zork Anthology\\Zork"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGZORK1" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Zork Anthology\\Zork - The Great Underground Empire\\Zork - The Great Underground Empire.lnk" append="Zork" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="SAVE" filename="*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Zork2" follows="Zork1">\n <title>Zork II: The Wizard Of Frobozz</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Zork Anthology\\Zork 2"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGZORK2" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Zork Anthology\\Zork II - The Wizard of Frobozz\\Zork II - The Wizard of Frobozz.lnk" append="Zork 2" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="SAVE" filename="*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="Zork3" follows="Zork2">\n <title>Zork III: The Dungeon Master</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Zork Anthology\\Zork 3"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGZORK3" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Zork Anthology\\Zork III - The Dungeon Master\\Zork III - The Dungeon Master.lnk" append="Zork 3" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save path="SAVE" filename="*"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ZorkGrandInquisitor" follows="ZorkNemesisTheForbiddenLands">\n <title>Zork Grand Inquisitor</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="GOG.com\\Zork Grand Inquisitor"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGZORKDARKINQUISITOR" value="PATH"/>\n <shortcut ev="startmenu" path="GOG.com\\Zork Grand Inquisitor\\Zork Grand Inquisitor.lnk"/>\n </locations>\n <files type="Saves">\n <save filename="inqsav*.sav"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </game>\n <game name="ZorkNemesisTheForbiddenLands" follows="ReturnToZork">\n <title>Zork Nemesis: The Forbidden Lands</title>\n <version os="DOS">\n <locations>\n <path ev="installlocation" path="GOG.com\\Zork Nemesis - The Forbidden Lands"/>\n <registry root="local_machine" key="SOFTWARE\\GOG.com\\GOGZORKNEMESIS" value="PATH"/>\n <shortcut ev="startmenu" path="Programs\\GOG.com\\Zork Nemesis - The Forbidden Lands\\Zork Nemesis - The Forbidden Lands.lnk" detract="DOSBOX"/>\n </locations>\n <files type="Saves">\n <save filename="NEMSAV*.SAV"/>\n </files>\n <contributor>slake_jones</contributor>\n </version>\n </game>\n <game name="ZumaDeluxe">\n <title>Zuma Deluxe</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Steam\\Zuma" only_for="WindowsVista"/>\n <path ev="steamcommon" path="zuma deluxe" only_for="WindowsXP"/>\n </locations>\n <files type="Saves">\n <save path="userdata"/>\n </files>\n <identifier path="userdata"/>\n <contributor>duncans_pumpkin</contributor>\n </version>\n </game>\n</programs>\n', '2012-06-28 19:46:30');
INSERT INTO `xml_cache` (`exporter`, `file`, `contents`, `timestamp`) VALUES
('GameSaveInfo20', 'system.xml', '<?xml version="1.0" encoding="UTF-8"?>\n<programs majorVersion="2" minorVersion="0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="games.xsd" date="2012-06-28T19:45:59">\n <system name="GamesForWindows">\n <title>Games for Windows</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Microsoft\\XLive\\Content"/>\n </locations>\n <files type="AccountData">\n <save/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </system>\n <system name="MASGAU">\n <title>MASGAU Automatic Save Game Archive Utility</title>\n <version>\n <title>MASGAU Custom XML</title>\n <locations>\n <path ev="installlocation" path="MASGAU"/>\n <registry root="local_machine" key="SOFTWARE\\MASGAU" value="InstallPath"/>\n </locations>\n <files type="CustomXML">\n <save path="data" filename="custom.xml"/>\n </files>\n <identifier path="data" filename="custom.xml"/>\n <contributor>SanMadJack</contributor>\n </version>\n </system>\n <system name="Raptr">\n <title>Raptr</title>\n <version os="Windows">\n <locations>\n <path ev="appdata" path="Raptr"/>\n </locations>\n <files type="Data">\n <save filename="raptr*">\n <except filename="*.exe"/>\n </save>\n <save path="data"/>\n <save path="Unknown"/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </system>\n <system name="RGSC">\n <title>Rockstar Games Social Club</title>\n <version os="Windows">\n <locations>\n <path ev="localappdata" path="Rockstar Games\\RGSC"/>\n </locations>\n <files type="Saves">\n <save/>\n </files>\n <contributor>AvvA</contributor>\n </version>\n </system>\n <system name="Tomboy">\n <title>Tomboy</title>\n <version>\n <locations>\n <path ev="appdata" path="Tomboy"/>\n </locations>\n <files type="Saves">\n <save path="notes"/>\n </files>\n <files type="Settings">\n <save path="config"/>\n </files>\n <contributor>SanMadJack</contributor>\n </version>\n </system>\n <system name="UPlay">\n <title>UPlay</title>\n <version os="Windows">\n <locations>\n <path ev="installlocation" path="Ubisoft\\Ubisoft Game Launcher"/>\n <registry root="local_machine" key="SOFTWARE\\UbiSoft\\Launcher" value="InstallDir"/>\n </locations>\n <files type="Data">\n <save path="storage">\n <except path="storage\\temp"/>\n </save>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </system>\n <system name="Xfire">\n <title>Xfire</title>\n <version os="Windows">\n <locations>\n <path ev="allusersprofile" path="Xfire"/>\n </locations>\n <files type="Data">\n <save/>\n </files>\n <contributor>Arc Angel</contributor>\n </version>\n </system>\n</programs>\n', '2012-06-28 19:45:59');
-- --------------------------------------------------------
--
-- Table structure for table `xml_exporters`
--
CREATE TABLE IF NOT EXISTS `xml_exporters` (
`name` varchar(50) NOT NULL,
`title` mediumtext NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `xml_exporters`
--
INSERT INTO `xml_exporters` (`name`, `title`) VALUES
('GameSaveInfo20', 'GameSave.Info 2.0 Format (Under Development)'),
('MASGAU11', 'MASGAU 1.1 Format');
-- --------------------------------------------------------
--
-- Table structure for table `xml_export_files`
--
CREATE TABLE IF NOT EXISTS `xml_export_files` (
`exporter` varchar(50) NOT NULL,
`file` varchar(50) NOT NULL,
`game_criteria` longtext,
`version_criteria` longtext,
`comment` longtext NOT NULL,
PRIMARY KEY (`exporter`,`file`),
KEY `file` (`file`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `xml_export_files`
--
INSERT INTO `xml_export_files` (`exporter`, `file`, `game_criteria`, `version_criteria`, `comment`) VALUES
('GameSaveInfo20', 'deprecated.xml', 'deprecated = 1', NULL, 'This file contains game data that was originally mislabeled, or for some other reason incorrect to the point that backup support had to be removed. The main purpose of these is to allow deprecated games to be able to still restore.'),
('GameSaveInfo20', 'games.xml', 'type NOT IN (''System'') AND deprecated = 0', NULL, 'This file contains games, mods and expansions'),
('GameSaveInfo20', 'system.xml', 'type IN (''System'') AND deprecated = 0', NULL, 'Contains profiles for backing up system-related files'),
('MASGAU11', 'deprecated.xml', 'deprecated = 1', NULL, 'This file contains game data that was originally mislabeled, or for some other reason incorrect to the point that backup support had to be removed. The main purpose of these is to allow deprecated games to be able to still restore.'),
('MASGAU11', 'dos.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', 'os = ''DOS''', 'This file contains games that are for the DOS platform. Most of these make use of DOSBOX for their installs.'),
('MASGAU11', 'flash.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', 'platform = ''Flash''', 'This file contains games that are based on Flash'),
('MASGAU11', 'games.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', 'os IS NULL AND platform IS NULL AND media IS NULL', 'This file contains games that have saves that are compatible with more than one platform'),
('MASGAU11', 'mods.xml', 'type = ''Mod'' AND deprecated = 0', NULL, 'This file contains mods for other games, which have all been moved to their respective platform xmls'),
('MASGAU11', 'ps1.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', 'os = ''PS1''', 'This file contains PlayStation games'),
('MASGAU11', 'ps2.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', 'os = ''PS2''', 'This file contains PlayStation 2 games'),
('MASGAU11', 'ps3.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', 'os = ''PS3''', 'This file contains PlayStation 3 games'),
('MASGAU11', 'psp.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', 'os = ''PSP''', 'This file contains PSP (PlayStation Portable) games'),
('MASGAU11', 'scummvm.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', 'platform = ''ScummVM''', 'This file contains games that are run through the ScummVM project'),
('MASGAU11', 'steam.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', '(media = ''Steam'' OR platform = ''SteamCloud'')', 'This file contains games whose saves are only compatible with Steam releases of the game'),
('MASGAU11', 'system.xml', 'type IN (''System'') AND deprecated = 0', NULL, 'Contains profiles for backing up system-related files'),
('MASGAU11', 'windows.xml', 'type NOT IN (''System'',''Mod'') AND deprecated = 0', '(media NOT IN (''Steam'') OR media IS NULL) AND (platform NOT IN (''SteamCloud'') OR platform IS NULL) AND os = ''Windows''', 'This file contains game for Microsoft Windows');
--
-- Constraints for dumped tables
--
--
-- Constraints for table `compatibility_equivalencies`
--
ALTER TABLE `compatibility_equivalencies`
ADD CONSTRAINT `compatibility_equivalencies_ibfk_1` FOREIGN KEY (`compat_media`) REFERENCES `compatibility_medias` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `compatibility_equivalencies_ibfk_2` FOREIGN KEY (`compat_platform`) REFERENCES `compatibility_platforms` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `compatibility_equivalencies_ibfk_3` FOREIGN KEY (`platform`) REFERENCES `version_platforms` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `compatibility_equivalencies_ibfk_4` FOREIGN KEY (`media`) REFERENCES `version_medias` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `compatibility_equivalencies_ibfk_5` FOREIGN KEY (`ev`) REFERENCES `game_environment_variables` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `compatibility_equivalencies_ibfk_6` FOREIGN KEY (`os`) REFERENCES `version_operating_systems` (`name`) ON UPDATE CASCADE;
--
-- Constraints for table `compatibility_override`
--
ALTER TABLE `compatibility_override`
ADD CONSTRAINT `compatibility_override_ibfk_1` FOREIGN KEY (`platform`) REFERENCES `compatibility_platforms` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `compatibility_override_ibfk_2` FOREIGN KEY (`media`) REFERENCES `compatibility_medias` (`name`) ON UPDATE CASCADE;
--
-- Constraints for table `games`
--
ALTER TABLE `games`
ADD CONSTRAINT `games_ibfk_4` FOREIGN KEY (`for`) REFERENCES `games` (`name`) ON DELETE SET NULL ON UPDATE CASCADE,
ADD CONSTRAINT `games_ibfk_5` FOREIGN KEY (`follows`) REFERENCES `games` (`name`) ON DELETE SET NULL ON UPDATE CASCADE;
--
-- Constraints for table `game_contributions`
--
ALTER TABLE `game_contributions`
ADD CONSTRAINT `game_contributions_ibfk_4` FOREIGN KEY (`contributor`) REFERENCES `game_contributors` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `game_contributions_ibfk_5` FOREIGN KEY (`game_version`) REFERENCES `game_versions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_files`
--
ALTER TABLE `game_files`
ADD CONSTRAINT `game_files_ibfk_3` FOREIGN KEY (`type`) REFERENCES `game_file_types` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `game_files_ibfk_4` FOREIGN KEY (`parent`) REFERENCES `game_files` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_file_types`
--
ALTER TABLE `game_file_types`
ADD CONSTRAINT `game_file_types_ibfk_1` FOREIGN KEY (`game_version`) REFERENCES `game_versions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_identifiers`
--
ALTER TABLE `game_identifiers`
ADD CONSTRAINT `game_identifiers_ibfk_1` FOREIGN KEY (`game_version`) REFERENCES `game_versions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_locations`
--
ALTER TABLE `game_locations`
ADD CONSTRAINT `game_locations_ibfk_1` FOREIGN KEY (`game_version`) REFERENCES `game_versions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `game_locations_ibfk_2` FOREIGN KEY (`only_for`) REFERENCES `version_operating_systems` (`name`) ON UPDATE CASCADE;
--
-- Constraints for table `game_location_parents`
--
ALTER TABLE `game_location_parents`
ADD CONSTRAINT `game_location_parents_ibfk_1` FOREIGN KEY (`parent_game_version`) REFERENCES `game_versions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `game_location_parents_ibfk_3` FOREIGN KEY (`id`) REFERENCES `game_locations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_location_paths`
--
ALTER TABLE `game_location_paths`
ADD CONSTRAINT `game_location_paths_ibfk_3` FOREIGN KEY (`ev`) REFERENCES `game_environment_variables` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `game_location_paths_ibfk_4` FOREIGN KEY (`id`) REFERENCES `game_locations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_location_registry_keys`
--
ALTER TABLE `game_location_registry_keys`
ADD CONSTRAINT `game_location_registry_keys_ibfk_1` FOREIGN KEY (`id`) REFERENCES `game_locations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_location_shortcuts`
--
ALTER TABLE `game_location_shortcuts`
ADD CONSTRAINT `game_location_shortcuts_ibfk_3` FOREIGN KEY (`ev`) REFERENCES `game_environment_variables` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `game_location_shortcuts_ibfk_4` FOREIGN KEY (`id`) REFERENCES `game_locations` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_playstation_codes`
--
ALTER TABLE `game_playstation_codes`
ADD CONSTRAINT `game_playstation_codes_ibfk_1` FOREIGN KEY (`game_version`) REFERENCES `game_versions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_scummvm`
--
ALTER TABLE `game_scummvm`
ADD CONSTRAINT `game_scummvm_ibfk_1` FOREIGN KEY (`game_version`) REFERENCES `game_versions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
--
-- Constraints for table `game_versions`
--
ALTER TABLE `game_versions`
ADD CONSTRAINT `game_versions_ibfk_1` FOREIGN KEY (`name`) REFERENCES `games` (`name`) ON DELETE CASCADE ON UPDATE CASCADE,
ADD CONSTRAINT `game_versions_ibfk_2` FOREIGN KEY (`os`) REFERENCES `version_operating_systems` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `game_versions_ibfk_3` FOREIGN KEY (`platform`) REFERENCES `version_platforms` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `game_versions_ibfk_4` FOREIGN KEY (`media`) REFERENCES `version_medias` (`name`) ON UPDATE CASCADE,
ADD CONSTRAINT `game_versions_ibfk_5` FOREIGN KEY (`region`) REFERENCES `version_regions` (`name`) ON UPDATE CASCADE;
--
-- Constraints for table `xml_cache`
--
ALTER TABLE `xml_cache`
ADD CONSTRAINT `xml_cache_ibfk_2` FOREIGN KEY (`exporter`) REFERENCES `xml_exporters` (`name`),
ADD CONSTRAINT `xml_cache_ibfk_4` FOREIGN KEY (`file`) REFERENCES `xml_export_files` (`file`) ON UPDATE CASCADE;
--
-- Constraints for table `xml_export_files`
--
ALTER TABLE `xml_export_files`
ADD CONSTRAINT `xml_export_files_ibfk_1` FOREIGN KEY (`exporter`) REFERENCES `xml_exporters` (`name`) ON UPDATE CASCADE;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;