-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathr.xml
More file actions
1677 lines (1677 loc) · 59.1 KB
/
Copy pathr.xml
File metadata and controls
1677 lines (1677 loc) · 59.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<programs majorVersion="2" minorVersion="0" revision="2" updated="2013-06-19T23:06:20" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="GameSaveInfo202.xsd">
<!--This file contains games, mods and expansions that start with the letter R
DO NOT EDIT THIS FILE, CHANGES WILL EVENTUALLY BE OVERWRITTEN BY THE AUTO UPDATE SYSTEM!-->
<game name="RACE07" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>RACE 07</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="SimBin\RACE 07"/>
</locations>
<files>
<include path="UserData">
<exclude path="ReplayTempFiles"/>
<exclude path="UserData\LOG"/>
<exclude path="UserData\Music"/>
</include>
</files>
<files type="Replays">
<include path="REPLAYDATA"/>
</files>
<files type="Settings">
<include filename="Config.ini"/>
</files>
<comment>Includes STCC: The Game</comment>
<contributor>AdmiringWorm</contributor>
</version>
</game>
<game name="RaceDriverGrid" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Race Driver: Grid</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Codemasters\GRID"/>
</locations>
<files>
<include path="savegame"/>
</files>
<contributor>Paul Taylor</contributor>
</version>
</game>
<game name="RaceDriverGRID2" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Race Driver: GRID 2</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="44350"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RaceForTheWhiteHouse" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>The Race for the White House</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="The Race for the White House"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RagDollKungFu" added="1955-11-05T00:00:00" updated="2013-06-19T22:16:40">
<title>Rag Doll Kung Fu</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="rag doll kung fu"/>
<path ev="steamuser" path="rag doll kung fu" deprecated="true"/>
</locations>
<files>
<include path="data"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RagDollKungFuFistsOfPlastic" follows="RagDollKungFu" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Rag Doll Kung Fu: Fists of Plastic</title>
<version os="PS3" region="USA">
<ps_code prefix="NPUA" suffix="80217"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Rage" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Rage</title>
<version os="Windows">
<locations>
<path ev="savedgames" path="id Software\Rage" only_for="WindowsVista"/>
</locations>
<files>
<include path="base\savegame"/>
</files>
<files type="Settings">
<include path="base" filename="*.cfg"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="Railroads" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Sid Meier's Railroads</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Sid Meier's Railroads!"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RailroadTycoon2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Railroad Tycoon II</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\RT2_PLAT.EXE" value="Path"/>
</locations>
<files>
<include path="games"/>
</files>
<files type="HighScores">
<include filename="hiscore.dat"/>
</files>
<files type="Screenshots">
<include filename="*.pcx"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RailroadTycoon3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Railroad Tycoon 3</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Railroad Tycoon 3"/>
<path ev="steamcommon" path="railroad tycoon 3"/>
</locations>
<files>
<include path="Saved Games"/>
</files>
<linkable path="Saved Games"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<expansion name="RainbowSix3AthenaSword" for="RainbowSix3RavenShield" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tom Clancy's Rainbow Six 3: Athena Sword</title>
<version os="Windows">
<locations>
<parent name="RainbowSix3RavenShield" os="Windows"/>
</locations>
<files>
<include path="Save\campaigns\AthenaSword" filename="*"/>
</files>
<identifier path="Mods" filename="AthenaSword.mod"/>
<contributor>Arc Angel</contributor>
</version>
</expansion>
<game name="RainbowSix3RavenShield" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tom Clancy's Rainbow Six 3: Raven Shield</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="rainbow six 3 gold"/>
</locations>
<files>
<include path="Save\campaigns" filename="*"/>
<include path="Save\Profiles"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="RainbowSixLockdown" follows="RainbowSix3RavenShield" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tom Clancy's Rainbow Six: Lockdown</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="rainbow six lockdown"/>
</locations>
<files>
<include path="data\save">
<exclude path="data\save" filename="lockdown.key"/>
</include>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="RainbowSixVegas" follows="RainbowSixLockdown" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tom Clancy's Rainbow Six: Vegas</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Ubisoft\R6Vegas"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="RainbowSixVegas2" follows="RainbowSixVegas" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tom Clancy's Rainbow Six: Vegas 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Ubisoft\R6Vegas2"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="RallyTrophy" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Rally Trophy</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="Software\Bugbear\Rally Trophy" value="HDPath"/>
</locations>
<files>
<include path="Data" filename="options.cfg"/>
<include path="Data\HighScores" filename="highscores.hs"/>
<include path="Savegame"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RaptorCallOfTheShadows" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Raptor: Call of the Shadows</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Raptor - Call of the Shadows"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGRAPTOR" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Raptor - Call of the Shadows\Raptor - Call of the Shadows.lnk"/>
</locations>
<files>
<include filename="*.FIL"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RatchetClank" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Ratchet & Clank</title>
<version os="PS2" region="USA">
<ps_code prefix="SCUS" suffix="97199"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RatchetClankFutureQuestForBooty" follows="RatchetClankFutureToolsOfDestruction" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Ratchet & Clank Future: Quest For Booty</title>
<version os="PS3" region="USA">
<ps_code prefix="NPUA" suffix="80145"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RatchetClankFutureToolsOfDestruction" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Ratchet & Clank Future: Tools of Destruction</title>
<version os="PS3" region="USA">
<ps_code prefix="BCUS" suffix="98127"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RatchetClankGoingCommando" follows="RatchetClank" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Ratchet & Clank: Going Commando</title>
<version os="PS2" region="USA">
<ps_code prefix="SCUS" suffix="97268"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RatchetClankSizeMatters" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Ratchet & Clank: Size Matters</title>
<version os="PSP" region="USA">
<ps_code prefix="UCUS" suffix="98633"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RatchetClankUpYourArsenal" follows="RatchetClankGoingCommando" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Ratchet & Clank: Up Your Arsenal</title>
<version os="PS2" region="USA">
<ps_code prefix="SCUS" suffix="97353"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RatchetDeadlocked" follows="RatchetClankUpYourArsenal" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Ratchet: Deadlocked</title>
<version os="PS2" region="USA">
<ps_code prefix="SCUS" suffix="97465"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RatHunter" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Rat Hunter</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GFI\Rat Hunter"/>
<registry root="local_machine" key="Software\GFI\RatHunter_Release\InstallPath" value="Path"/>
<shortcut ev="startmenu" path="Programs\GFI\Rat Hunter\Rat Hunter.lnk" detract="bin"/>
</locations>
<files>
<include path="Data\SavedGames" filename="*.sav"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="Ravaged" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Ravaged</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Ravaged"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RAWRealmsOfAncientWar" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>R.A.W. Realms of Ancient War</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Realms of Ancient War"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Rayman2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Rayman 2: The Great Escape</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Rayman 2"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGRAYMAN2" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Rayman 2\Rayman 2.lnk"/>
</locations>
<files>
<include path="Data\SaveGame"/>
</files>
<files type="Settings">
<include path="Data\Options"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Rayman3" follows="Rayman2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Rayman 3: Hoodlum Havoc</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Rayman 3"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGRAYMAN3" value="PATH"/>
<registry root="local_machine" key="SOFTWARE\Ubi Soft\RAYMAN 3" value="InstallDir"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Rayman 3\Rayman 3.lnk"/>
</locations>
<files>
<include path="GAMEDATA\SaveGame"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RaymanByHisFans" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Rayman By His Fans</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Rayman Forever\RayFan"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGRAYMANFAN" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Rayman Forever\Rayman by his Fans\Rayman by his Fans.lnk" detract="DOSBOX" append="RayFan"/>
</locations>
<files>
<include filename="RAYFAN*.SAV"/>
</files>
<files type="Settings">
<include filename="RAYFAN.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RaymanForever" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Rayman Forever</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Rayman Forever\Rayman"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGRAYMAN1" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Rayman Forever\Rayman\Rayman.lnk" detract="DOSBOX" append="Rayman"/>
</locations>
<files>
<include filename="RAYMAN*.SAV"/>
</files>
<files type="Settings">
<include filename="RAYMAN.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RaymanOrigins" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Rayman Origins</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Rayman Origins"/>
</locations>
<files>
<include path="Savegame"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RealCrimesJackTheRipper" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Real Crimes: Jack the Ripper</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Gamers Digital\Jack the Ripper"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RealflightG5" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Realflight G5</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="RealFlight G5"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RealHeroesFirefighter" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Real Heroes: Firefighter</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Firefighter\save"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RealmsOfAncientWar" added="2013-01-05T16:19:39" updated="2013-01-05T16:19:39">
<title>Realms of Ancient War</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Realms of Ancient War"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="RealmsOfArkania1" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Realms of Arkania 1</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGREALMS1" value="PATH"/>
</locations>
<files>
<include filename="*.GAM"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RealmsOfArkania2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Realms of Arkania 2</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGREALMS2" value="PATH"/>
</locations>
<files>
<include path="GAMES"/>
</files>
<linkable path="GAMES"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RealmsOfTheHaunting" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Realms of the Haunting</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Realms of the Haunting\ROTH"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGROTH" value="PATH" append="ROTH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Realms of the Haunting\Realms of the Haunting.lnk" detract="DOSBOX" append="ROTH"/>
</locations>
<files>
<include path="SAVEGAME"/>
</files>
<files type="Settings">
<include filename="ROTH.INI"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RealMyst" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>realMyst</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\realMyst"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGREALMYST" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\realMyst\realMyst.lnk"/>
</locations>
<files>
<include path="SAV"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RealTexas" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Real Texas</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="The Real Texas\2002"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RealWarfare2NorthernCrusades" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Real Warfare 2: Northern Crusades</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Real Warfare 2 - Teutonic order"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Reaxxion" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Reaxxion</title>
<version os="Windows">
<locations>
<path ev="commonapplicationdata" path="Hot Lava Games\ReaxxionRetail"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RecettearAnItemShopsTale" added="1955-11-05T00:00:00" updated="2013-01-05T16:19:39">
<title>Recettear: An Item Shop's Tale</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="recettear"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Steam App 70400" value="InstallLocation"/>
</locations>
<files>
<include filename="*.dat"/>
</files>
<files type="Settings">
<include filename="recet.ini"/>
</files>
<contributor>AdmiringWorm</contributor>
</version>
</game>
<game name="RedFaction" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Red Faction</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Games\RedFaction"/>
<path ev="steamcommon" path="red faction"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\RedFaction.exe" value="Path"/>
</locations>
<files>
<include path="savegame"/>
</files>
<contributor>GameSave.Info</contributor>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RedFaction2" follows="RedFaction" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Red Faction II</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="THQ\Red Faction II"/>
<path ev="steamcommon" path="red faction ii"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{E074FB23-D61B-4C6A-AD15-AB9695ED2EF7}" value="InstallLocation"/>
</locations>
<files>
<include path="profiles"/>
</files>
<files type="Settings">
<include filename="rf2_config.ini"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="RedFactionArmageddon" follows="RedFactionGuerrilla" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Red Faction: Armageddon</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="55110"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="RedFactionGuerrilla" follows="RedFaction2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Red Faction: Guerrilla</title>
<version os="PS3" region="USA">
<ps_code prefix="BLUS" suffix="30258"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Red Faction Guerrilla"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="RedneckRampage" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Redneck Rampage</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Redneck Rampage Collection\Redneck Rampage"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGREDNECKRAMPAGE" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Redneck Rampage Collection\Redneck Rampage\Redneck Rampage.lnk" detract="DOSBOX" append="Redneck Rampage"/>
</locations>
<files>
<include filename="*.SAV"/>
</files>
<files type="Settings">
<include filename="*.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<expansion name="RedneckRampageRidesAgain" for="RedneckRampage" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Redneck Rampage Rides Again</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Redneck Rampage Collection\Redneck Rides Again"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGCREDNECKRIDESAGAIN" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Redneck Rampage Collection\Redneck Rampage Rides Again - Arkansas\Redneck Rides Again.lnk" detract="DOSBOX" append="Redneck Rides Again"/>
</locations>
<files>
<include filename="*.SAV"/>
</files>
<files type="Settings">
<include filename="*.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<game name="RedOrchestra2HeroesOfStalingrad" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Red Orchestra 2: Heroes of Stalingrad</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="red orchestra 2"/>
<path ev="userdocuments" path="My Games\RedOrchestra2"/>
</locations>
<files>
<include path="Binaries\Win32\Saves"/>
</files>
<linkable path="Binaries\Win32\Saves"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ReelDealSlotsAdventureWorldTour" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Reel Deal Slots Adventure World Tour</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Phantom EFX\OnlineCasino" value="Path"/>
</locations>
<files>
<include path="SavedData"/>
<include path="Stats"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ReloadTargetDown" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Reload: Target Down</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{9C94C5D5-7E4D-4140-A083-427B5AC52B3B}_is1" value="InstallLocation"/>
</locations>
<files>
<include path="Profiles"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RememberMe" added="2012-09-07T23:18:00" updated="2014-01-28T15:32:05">
<title>Remember Me</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="228300"/>
</locations>
<files>
<include path="remote"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="RenegadeOps" added="1955-11-05T00:00:00" updated="2013-02-03T05:40:17">
<title>Renegade Ops</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="99300"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="SEGA\Renegade Ops"/>
</locations>
<files>
<include path="Saves" filename="*.sav"/>
</files>
<files type="Settings">
<include path="Saves" filename="Settings"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<mod name="ResearchAndDevelopment" for="HalfLife2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Research and Development</title>
<version os="Windows">
<locations>
<path ev="steamsourcemods" path="Research and Development"/>
</locations>
<files>
<include path="SAVE"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</mod>
<game name="ReservoirDogs" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Reservoir Dogs</title>
<version os="Windows">
<locations>
<path ev="appdata" path="eidos\reservoir dogs"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ResidentEvil4" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Resident Evil 4</title>
<version os="PS2" region="USA">
<ps_code prefix="SLUS" suffix="21134"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ResidentEvil5" follows="ResidentEvil4" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Resident Evil 5</title>
<version os="PS3" region="USA">
<ps_code prefix="BLUS" suffix="30270"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="CAPCOM\RESIDENT EVIL 5"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="ResidentEvil6" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Resident Evil 6</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="221040"/>
</locations>
<files>
<include path="remote"/>
</files>
<contributor>Arc Angel</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="CAPCOM\RESIDENT EVIL 6"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ResidentEvilCodeVeronicaX" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Resident Evil: Code Veronica X</title>
<version os="PS2" region="USA">
<ps_code prefix="SLUS" suffix="20184"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ResidentEvilOperationRacoonCity" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Resident Evil: Operation Racoon City</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="CAPCOM\RERC"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ResidentEvilRevelations" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Resident Evil: Revelations</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="222480"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Resistance2" follows="ResistanceFallOfMan" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Resistance 2</title>
<version os="PS3" region="USA">
<ps_code prefix="BCUS" suffix="98120"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ResistanceFallOfMan" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Resistance: Fall of Man</title>
<version os="PS3" region="USA">
<ps_code prefix="BCUS" suffix="98107"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Resonance" added="2012-08-27T18:13:36" updated="2013-02-03T05:40:17">
<title>Resonance</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="212050"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="savedgames" path="Resonance" only_for="WindowsVista"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>mathieu.lacam</contributor>
</version>
</game>
<game name="RestaurantEmpire2" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Restaurant Empire 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Restaurant Empire 2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="RetroCityRampage" added="2013-01-05T16:19:39" updated="2013-01-05T16:19:39">
<title>Retro City Rampage</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="Retro City Rampage"/>
</locations>
<files>
<include filename="*.rsv"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="Retrovirus" added="2013-02-23T21:39:00" updated="2013-02-23T21:39:00">
<title>Retrovirus</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Retrovirus"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ReturnOfTheIncredibleMachineContraptions" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Return of the Incredible Machine: Contraptions</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\The Incredible Machine Series\Return of the Incredible Machine Contraptions"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGRETURN" value="PATH"/>
<registry root="local_machine" key="SOFTWARE\Sierra OnLine\Setup\CONTRAP" value="Directory"/>
<shortcut ev="startmenu" path="Programs\GOG.com\The Incredible Machine Series\Return of the Incredible Machine Contraptions\Return of the Incredible Machine Contraptions.lnk"/>
</locations>
<files>
<include path="Saved Games"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ReturnToCastleWolfenstein" follows="Wolfenstein3D" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Return to Castle Wolfenstein</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Return to Castle Wolfenstein"/>
<path ev="steamcommon" path="return to castle wolfenstein"/>
<registry root="local_machine" key="SOFTWARE\Activision\Return to Castle Wolfenstein" value="InstallPath"/>
<registry root="local_machine" key="SOFTWARE\Activision\Return to Castle Wolfenstein - Game of The Year Edition" value="InstallPath"/>
<registry root="local_machine" key="SOFTWARE\Activision\Return to Castle Wolfenstein - Platinum Edition" value="InstallPath"/>
</locations>
<files>
<include path="Main\save"/>
</files>
<files type="Settings">
<include path="Main" filename="wolfconfig.cfg"/>
</files>
<contributor>GameSave.Info</contributor>
<contributor>Jetsetlemming</contributor>
</version>
</game>
<game name="ReturnToMysteriousIsland" added="2013-01-05T16:19:39" updated="2013-01-05T16:19:39">
<title>Return to Mysterious Island</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Return to Mysterious Island"/>
<registry root="current_user" key="Software\The Adventure Company\Return to Mysterious Island" value="Install_Dir"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGRTMI" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Return to Mysterious Island\Return to Mysterious Island.lnk"/>
</locations>
<files>
<include path="Users"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ReturnToZork" follows="Zork0" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Return To Zork</title>
<version platform="ScummVM" media="CD">
<scummvm name="rtz-cd"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Return To Zork"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGRETURNTOZORK" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Return To Zork\Return To Zork.lnk" detract="DOSBOX"/>
</locations>
<files>
<include filename="GAME.*"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Reus" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Reus</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Reus"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Revenant" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Revenant</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Eidos Interactive\Revenant" value="Path"/>
</locations>
<files>
<include path="Save"/>
</files>