-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy patht.xml
More file actions
1657 lines (1657 loc) · 59 KB
/
t.xml
File metadata and controls
1657 lines (1657 loc) · 59 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-15T13:45:04" 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 T
DO NOT EDIT THIS FILE, CHANGES WILL EVENTUALLY BE OVERWRITTEN BY THE AUTO UPDATE SYSTEM!-->
<game name="TachyonTheFringe" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tachyon: The Fringe</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="NovaLogic\Tachyon"/>
<path ev="steamcommon" path="tachyon the fringe"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\tachyon.exe" value="Path"/>
<shortcut ev="startmenu" path="Programs\NovaLogic\Tachyon\Tachyon.lnk"/>
</locations>
<files>
<include filename="*.dat"/>
<include filename="*.sav"/>
</files>
<files type="Settings">
<include filename="Tachyon.cfg"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TaitoLegends" added="2012-09-12T14:11:29" updated="2012-09-12T14:11:29">
<title>Taito Legends</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Taito Legends"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TaitoLegends2" added="2012-09-12T14:11:29" updated="2012-09-12T14:11:29">
<title>Taito Legends 2</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Taito Legends 2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TakeOnHelicopters" added="2012-10-01T16:54:44" updated="2012-10-01T16:54:44">
<title>Take On Helicopters</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Take On Helicopters"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TalesOfBingwood" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Tales of Bingwood</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="BugFactory\The Tales of Bingwood"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TalesOfMonkeyIsland1" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tales of Monkey Island Chapter 1: Launch of the Screaming Narwhal</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\Launch of the Screaming Narwhal"/>
<path ev="userdocuments" path="Telltale Games\tales of monkey island - chapter 1"/>
</locations>
<files>
<include filename="*.save"/>
</files>
<files type="Settings">
<include filename="prefs.prop"/>
</files>
<contributor>AdmiringWorm</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TalesOfMonkeyIsland2" follows="TalesOfMonkeyIsland1" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tales of Monkey Island Chapter 2: The Siege of Spinner Cay</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\tales of monkey island - chapter 2"/>
<path ev="userdocuments" path="Telltale Games\The Siege of Spinner Cay"/>
</locations>
<files>
<include filename="*.save"/>
</files>
<files type="Settings">
<include filename="prefs.prop"/>
</files>
<contributor>AdmiringWorm</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TalesOfMonkeyIsland3" follows="TalesOfMonkeyIsland2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tales of Monkey Island Chapter 3: Lair of the Leviathan</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\Lair of the Leviathan"/>
<path ev="userdocuments" path="Telltale Games\tales of monkey island - chapter 3"/>
</locations>
<files>
<include filename="*.save"/>
</files>
<files type="Settings">
<include filename="prefs.prop"/>
</files>
<contributor>AdmiringWorm</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TalesOfMonkeyIsland4" follows="TalesOfMonkeyIsland3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tales of Monkey Island Chapter 4: The Trial and Execution of Guybrush Threepwood</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\tales of monkey island - chapter 4"/>
<path ev="userdocuments" path="Telltale Games\The Trial and Execution of Guybrush Threepwood"/>
</locations>
<files>
<include filename="*.save"/>
</files>
<files type="Settings">
<include filename="prefs.prop"/>
</files>
<contributor>AdmiringWorm</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TalesOfMonkeyIsland5" follows="TalesOfMonkeyIsland4" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tales of Monkey Island Chapter 5: Rise of the Pirate God</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Telltale Games\Rise of the Pirate God"/>
<path ev="userdocuments" path="Telltale Games\tales of monkey island - chapter 5"/>
</locations>
<files>
<include filename="*.save"/>
</files>
<files type="Settings">
<include filename="prefs.prop"/>
</files>
<contributor>AdmiringWorm</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TankCombat" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Tank Combat</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Tank Combat"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TankUniversal" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tank Universal</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="tank universal steamworks edition"/>
</locations>
<files>
<include path="SAVES"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="TarrChronicles" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tarr Chronicles</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Tarr Chronicles"/>
<registry root="local_machine" key="SOFTWARE\Akella\Tarr Chronicles" value="Path"/>
<registry root="local_machine" key="SOFTWARE\Quazar\Tarr" value="Path"/>
<shortcut ev="startmenu" path="Programs\Tarr Chronicles\Tarr Chronicles.lnk"/>
</locations>
<files>
<include path="data\profiles"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="TeamFortress2" added="1955-11-05T00:00:00" updated="2013-06-19T22:16:42">
<title>Team Fortress 2</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="440"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="team fortress 2"/>
<path ev="steamuser" path="team fortress 2" deprecated="true"/>
</locations>
<files type="Settings">
<include path="tf*\cfg"/>
</files>
<linkable/>
<contributor>AdmiringWorm</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TeamFortressClassic" added="2013-01-05T16:19:39" updated="2013-06-19T22:16:42">
<title>Team Fortress Classic</title>
<version os="Windows">
<locations>
<path ev="steamuser" path="team fortress classic" deprecated="true"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Steam App 20" value="InstallLocation"/>
<parent name="HalfLife" os="Windows" revision="1"/>
</locations>
<files type="Settings">
<include path="tfc*" filename="*.cfg"/>
</files>
<identifier path="tfc*"/>
<comment>Settings Only</comment>
<contributor>AdmiringWorm</contributor>
</version>
</game>
<game name="TECNOTheBase" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>TECNO: the Base</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="TECNO_theBase"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\[TECNO - the Base]_is1" value="InstallLocation"/>
<shortcut ev="startmenu" path="Programs\Games\TECNO\Play TECNO.lnk"/>
</locations>
<files>
<include path="Saved"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="TeeWorlds" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>TeeWorlds</title>
<version os="Windows">
<locations>
<path ev="appdata" path="TeeWorlds"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Tekken5" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tekken 5</title>
<version os="PS2" region="USA">
<ps_code prefix="SLUS" suffix="21059"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Tekkit" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Tekkit</title>
<version os="Windows">
<locations>
<path ev="appdata" path=".techniclauncher"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TelltaleTexasHoldem" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Telltale Texas Hold'em</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Telltale Games\Poker.exe" value="Install Location"/>
</locations>
<files>
<include filename="*.prop"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TempleOfElementalEvil" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Temple of Elemental Evil</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Temple of Elemental Evil"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTEMPLEOFELEMENTAEVIL" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Temple of Elemental Evil\Temple of Elemental Evil.lnk"/>
</locations>
<files>
<include path="modules\*\Save"/>
</files>
<files type="Characters">
<include path="modules\*\players"/>
</files>
<files type="Settings">
<include filename="ToEE.cfg"/>
</files>
<comment>Includes expansion saves</comment>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TerminatorSalvation" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Terminator: Salvation</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="salvation"/>
</locations>
<files>
<include path="saves"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="Terraria" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Terraria</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Terraria"/>
</locations>
<files>
<include/>
</files>
<contributor>murasaki8</contributor>
</version>
</game>
<game name="TerroristTakedown2" follows="TerroristTakedownCovertOperations" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Terrorist Takedown 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="City Interactive\Terrorist Takedown 2"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="TerroristTakedown3" follows="TerroristTakedown2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Terrorist Takedown 3</title>
<version os="Windows">
<locations>
<path ev="public" path="Documents\City Interactive\Terrorist Takedown 3"/>
</locations>
<files>
<include path="Profiles"/>
<include path="Save"/>
</files>
<files type="Settings">
<include filename="BanIPList.txt"/>
<include filename="Game.ini"/>
<include filename="settings.cfg"/>
</files>
<contributor>AdmiringWorm</contributor>
</version>
</game>
<game name="TerroristTakedownCovertOperations" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Terrorist Takedown: Covert Operations</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="City Interactive\Terrorist Takedown - Covert Operations"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TTCO_is1" value="InstallLocation"/>
<shortcut ev="startmenu" path="Programs\City Interactive\Terrorist Takedown - Covert Operations\Terrorist Takedown - Covert Operations.lnk"/>
</locations>
<files>
<include path="Save"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="TestDriveUnlimited" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Test Drive: Unlimited</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Test Drive Unlimited"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TestDriveUnlimited2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Test Drive Unlimited 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Eden Games\Test Drive Unlimited 2"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="TexMurphyOverseer" follows="PandoraDirective" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tex Murphy: Overseer</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Overseer"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTEX5" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Overseer\Overseer.lnk"/>
</locations>
<files>
<include path="games"/>
<include path="players"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ThemeHospital" added="1955-11-05T00:00:00" updated="2012-08-27T18:13:36">
<title>Theme Hospital</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Theme Hospital"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTHEMEHOSPITAL" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Theme Hospital\Theme Hospital.lnk" detract="DOSBOX"/>
</locations>
<files>
<include path="SAVE"/>
</files>
<linkable path="SAVE"/>
<contributor>ctristan</contributor>
</version>
</game>
<game name="TheyBleedPixels" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>They Bleed Pixels</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="they bleed pixels"/>
</locations>
<files>
<include filename="*.bin"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TheyreAlive" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>They're Alive!</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GFI\They_re_alive"/>
<registry root="current_user" key="Software\GFI\They're alive!" value="path"/>
<shortcut ev="startmenu" path="Programs\GFI\They're alive!\They're alive!.lnk"/>
</locations>
<files>
<include path="SAVES"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="Thief2" follows="ThiefTheDarkProject" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Thief II: The Metal Age</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Games\Thief2"/>
<path ev="installlocation" path="GOG.com\Thief 2"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTHIEF2" value="PATH"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\thief2.exe" value="Path"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Thief 2 - The Metal Age\Thief 2 - The Metal Age.lnk"/>
</locations>
<files>
<include filename="*.sav"/>
<include path="SAVES" filename="*.sav"/>
</files>
<files type="Settings">
<include filename="user.bnd"/>
<include filename="USER.CFG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ThiefDeadlyShadows" follows="Thief2" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Thief: Deadly Shadows</title>
<version os="Windows">
<locations>
<path ev="allusersprofile" path="Documents\Thief - Deadly Shadows" only_for="WindowsXP"/>
<path ev="installlocation" path="GOG.com\Thief - Deadly Shadows\SAVES"/>
<path ev="public" path="Documents\Thief - Deadly Shadows" only_for="WindowsVista"/>
<path ev="steamcommon" path="thief deadly shadows\save"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTHIEF3" value="PATH" append="SAVES"/>
<registry root="local_machine" key="SOFTWARE\Ion Storm\Thief - Deadly Shadows" value="ION_ROOT" append="SAVES"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Thief - Deadly Shadows\Thief - Deadly Shadows.lnk" append="SAVES"/>
</locations>
<files>
<include path="SaveGames"/>
</files>
<identifier path="SaveGames"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ThiefTheDarkProject" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Thief: The Dark Project</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Thief"/>
<shortcut ev="startmenu" path="Programs\Thief\Thief.lnk"/>
</locations>
<files>
<include path="SAVES"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows" release="Gold">
<title>Thief Gold</title>
<locations>
<path ev="installlocation" path="GOG.com\Thief Gold"/>
<path ev="installlocation" path="ThiefG"/>
<path ev="steamcommon" path="thief_gold"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTHIEF1GOLD" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Thief Gold\Thief Gold.ln"/>
<shortcut ev="startmenu" path="Programs\Thief Gold\Thief.lnk"/>
</locations>
<files>
<include path="SAVES"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="ThrillvilleOffTheRails" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Thrillville: Off The Rails</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="LucasArts\Thrillville 07"/>
</locations>
<files>
<include path="Save"/>
</files>
<files type="Settings">
<include filename="KeyMouse.cfg"/>
<include filename="options.txt"/>
</files>
<contributor>AdmiringWorm</contributor>
</version>
</game>
<game name="Tibia" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Tibia</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Tibia"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Tidalis" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tidalis</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="tidalis"/>
</locations>
<files>
<include path="RuntimeData\Save"/>
</files>
<linkable path="RuntimeData\Save"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TigerWoodsPGATOUR12TheMasters" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tiger Woods PGA TOUR 12: The Masters</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Tiger Woods PGA TOUR 12 The Masters"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TimeGentlemenPlease" follows="BenThereDanThat" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Time Gentlemen, Please!</title>
<version os="Windows">
<locations>
<path ev="savedgames" path="Time Gentlemen, Please" only_for="WindowsVista"/>
<path ev="userdocuments" path="My Saved Games\Time Gentlemen, Please" only_for="WindowsXP"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TimeShift" added="1955-11-05T00:00:00" updated="2012-08-27T18:13:36">
<title>TimeShift</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Sierra Entertainment\TimeShift"/>
<path ev="steamcommon" path="Timeshift"/>
<registry root="local_machine" key="SOFTWARE\Sierra Entertainment\TimeShift\1.00.000" value="PathToEXE"/>
</locations>
<files>
<include path="UserConfigs"/>
</files>
<linkable path="UserConfigs"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Tinker" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tinker</title>
<version os="Windows">
<locations>
<path ev="userdocuments"/>
</locations>
<files>
<include filename="584109eb_*.sav"/>
</files>
<identifier filename="584109eb_*.sav"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TinyAndBigGrandpasLeftovers" added="1955-11-05T00:00:00" updated="2013-02-03T05:40:17">
<title>Tiny and Big: Grandpa's Leftovers</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="205910"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="TinyAndBig"/>
</locations>
<files>
<include filename="*.save"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TinyBangStory" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>The Tiny Bang Story</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Colibri Games\The Tiny Bang Story"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TitanAttacks" added="2012-08-07T19:25:20" updated="2012-08-07T19:25:20">
<title>Titan Attacks!</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="203210"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="TitanQuest" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Titan Quest</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Titan Quest"/>
</locations>
<files>
<include/>
</files>
<contributor>slake_jones</contributor>
</version>
</game>
<expansion name="TitanQuestImmortalThrone" for="TitanQuest" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Titan Quest: Immortal Throne</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Titan Quest - Immortal Throne"/>
</locations>
<files>
<include/>
</files>
<contributor>slake_jones</contributor>
</version>
</expansion>
<mod name="TitanXCIX1" for="HalfLife2EpisodeTwo" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Titan: XCIX - Part 1</title>
<version media="Steam">
<locations>
<path ev="steamsourcemods" path="SurvivorIZ"/>
</locations>
<files>
<include path="SAVE"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</mod>
<game name="TMNT" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>TMNT</title>
<version os="Windows">
<locations>
<path ev="appdata" path="TMNT"/>
</locations>
<files>
<include filename="*.TMNT"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TobesVerticalAdventure" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Tobe's Vertical Adventure</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="105700"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="ToCARaceDriver3" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>ToCA Race Driver 3</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="race driver 3"/>
</locations>
<files>
<include path="savedata"/>
</files>
<linkable path="savedata"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TokiTori" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Toki Tori</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="38700"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TombRaider" added="1955-11-05T00:00:00" updated="2013-02-23T21:39:00">
<title>Tomb Raider</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Tomb Raider 1 2 3\Tomb Raider 1\TOMBRAID"/>
<path ev="installlocation" path="TOMBRAID"/>
<path ev="steamcommon" path="Tomb Raider (I)"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTR1" value="PATH" append="TOMBRAID"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Tomb Raider 1 + 2 + 3\Tomb Raider 1\Tomb Raider 1.lnk" append="TOMBRAID"/>
</locations>
<files>
<include filename="SAVEGAME.*"/>
</files>
<identifier filename="SAVEGAME.*"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="Tomb Raider (I)"/>
</locations>
<files>
<include path="TOMBRAID" filename="SAVE*.*"/>
</files>
<linkable path="TOMBRAID"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TombRaider2" follows="TombRaider" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Tomb Raider II</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Core Design\Tomb Raider II"/>
<path ev="installlocation" path="GOG.com\Tomb Raider 1 2 3\Tomb Raider 2"/>
<path ev="steamcommon" path="Tomb Raider (II)"/>
<registry root="current_user" key="Software\core design\Tomb Raider II" value="AppPath"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTR2" value="PATH"/>
<shortcut ev="startmenu" path="Programs\Core Design\Tomb Raider 2\ Tomb Raider II.lnk"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Tomb Raider 1 + 2 + 3\Tomb Raider 2\Tomb Raider 2.lnk"/>
</locations>
<files>
<include filename="savegame.*"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TombRaider2013" follows="TombRaiderUnderworld" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Tomb Raider (2013)</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="203160"/>
</locations>
<files>
<include path="remote"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<expansion name="TombRaider2TheGoldenMask" for="TombRaider2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tomb Raider II: The Golden Mask</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Core Design\Tomb Raider II Gold"/>
<registry root="current_user" key="Software\core design\Tomb Raider II Gold" value="GoldPath"/>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\t2gold.exe" value="Path"/>
<shortcut ev="startmenu" path="Programs\Core Design\Tomb Raider II Gold\Tomb Raider II Gold.lnk"/>
</locations>
<files>
<include filename="savegame.*"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<game name="TombRaider3AdventuresOfLaraCroft" follows="TombRaider2" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Tomb Raider III: Adventures Of Lara Croft</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Core Design\Tomb Raider III"/>
<path ev="installlocation" path="GOG.com\Tomb Raider 1 2 3\Tomb Raider 3"/>
<path ev="steamcommon" path="TombRaider (III)"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTR3" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Tomb Raider 1 + 2 + 3\Tomb Raider 3\Tomb Raider 3.lnk"/>
</locations>
<files>
<include filename="savegame.*"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<expansion name="TombRaider3TheLostArtifact" for="TombRaider3AdventuresOfLaraCroft" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tomb Raider III: The Lost Artifact</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Core Design\Tomb Raider - The Lost Artifact"/>
</locations>
<files>
<include filename="savegame.*"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<game name="TombRaiderAnniversary" follows="TombRaiderLegend" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tomb Raider: Anniversary</title>
<version os="PS3" region="USA">
<ps_code prefix="BLUS" suffix="30718" append="-TALIST"/>
<ps_code prefix="BLUS" suffix="30718" append="-TAPROFILE" type="Profile"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Eidos\Tomb Raider - Anniversary"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TombRaiderChronicles" follows="TombRaiderTheLastRevelation" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Tomb Raider: Chronicles</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Core Design\Tomb Raider Chronicles"/>
<path ev="installlocation" path="GOG.com\Tomb Raider 4-5\Tomb Raider 5"/>
<registry root="current_user" key="Software\Core Design\Tomb Raider Chronicles" value="App Path"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTR5" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Tomb Raider 4 + 5\Tomb Raider Chronicles\Tomb Raider Chronicles.lnk"/>
</locations>
<files>
<include filename="savegame.*"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TombRaiderLegend" follows="TombRaiderTheAngelOfDarkness" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tomb Raider: Legend</title>
<version os="PS3" region="USA">
<ps_code prefix="BLUS" suffix="30718" append="-T7LIST"/>
<ps_code prefix="BLUS" suffix="30718" append="-T7PROFILE" type="Profile"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="PSP" region="EU">
<ps_code prefix="ULES" suffix="00283"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Eidos\Tomb Raider - Legend"/>
<path ev="userdocuments" path="Tomb Raider - Legend"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TombRaiderTheAngelOfDarkness" follows="TombRaiderChronicles" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Tomb Raider: The Angel of Darkness</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Eidos Interactive\TRAOD"/>
<path ev="installlocation" path="GOG.com\Tomb Raider - The Angel of Darkness"/>
<registry root="local_machine" key="SOFTWARE\Core Design\TombRaiderAngelOfDarkness\1.0" value="InstalledPath"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTR6" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Tomb Raider - The Angel of Darkness\Tomb Raider - The Angel of Darkness.lnk"/>
</locations>
<files>
<include path="SaveGame"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TombRaiderTheLastRevelation" follows="TombRaider3AdventuresOfLaraCroft" added="1955-11-05T00:00:00" updated="2012-10-01T16:54:44">
<title>Tomb Raider: The Last Revelation</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="Core Design\Tomb Raider - The Last Revelation"/>
<path ev="installlocation" path="GOG.com\Tomb Raider 4-5\Tomb Raider 4"/>
<registry root="current_user" key="Software\Core Design\Tomb Raider IV" value="App Path"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTR4" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Tomb Raider 4 + 5\Tomb Raider - The Last Revelation\Tomb Raider - The Last Revelation.lnk"/>
</locations>
<files>
<include filename="savegame.*"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="TombRaiderUnderworld" follows="TombRaiderAnniversary" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tomb Raider: Underworld</title>
<version os="PS3" region="USA">
<ps_code prefix="BLUS" suffix="30718" append="-SAVE"/>
<contributor>GameSave.Info</contributor>
</version>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Eidos\Tomb Raider - Underworld"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<expansion name="TombRaiderUnfinishedBusiness" for="TombRaider" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Tomb Raider: Unfinished Business</title>
<version os="DOS">
<locations>
<parent name="TombRaider" os="DOS"/>
</locations>
<files>
<include filename="SAVEUB.*"/>
</files>
<identifier filename="SAVEUB.*"/>
<contributor>GameSave.Info</contributor>
</version>
</expansion>
<game name="TomorrowWar" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>The Tomorrow War</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\1C\{D25E18E7-2918-42D2-B09C-AC0F8F05AE6E}" value="InstallDir"/>
</locations>
<files>
<include path="SavedGames"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="TonyHawksProSkater3" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Tony Hawk's Pro Skater 3</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Activision\THPS3PC" value="InstallPath"/>
</locations>
<files>