-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathl.xml
More file actions
1041 lines (1041 loc) · 34 KB
/
l.xml
File metadata and controls
1041 lines (1041 loc) · 34 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 L
DO NOT EDIT THIS FILE, CHANGES WILL EVENTUALLY BE OVERWRITTEN BY THE AUTO UPDATE SYSTEM!-->
<game name="LairOfTheEvildoer" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Lair Of The Evildoer</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="SavedGames\LairOfTheEvildoer"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LaMulana" added="2013-02-23T21:39:00" updated="2013-02-23T21:39:00">
<title>La-Mulana</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="NIGORO\La-Mulana"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LandsOfLore1" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lands of Lore 1</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGLANDSOFLORE1" value="PATH"/>
</locations>
<files>
<include filename="*save*.dat"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LandsOfLore2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lands of Lore 2</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGLANDSOFLORE2" value="PATH"/>
</locations>
<files>
<include path="SAVEGAME"/>
</files>
<linkable path="SAVEGAME"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LANoire" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>L.A. Noire</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Rockstar Games\L.A. Noire"/>
</locations>
<files>
<include path="Profiles"/>
</files>
<files type="Settings">
<include filename="settings.ini"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LaraCroftAndTheGuardianOfLight" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lara Croft and the Guardian of Light</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="35130" deprecated="true"/>
<path ev="steamuserdata" path="35150"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LarvaMortus" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Larva Mortus</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="larva mortus"/>
</locations>
<files>
<include path="saves"/>
</files>
<linkable path="saves"/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LaserCat" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>LaserCat</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="SavedGames\LaserCat"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LastExpress" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Last Express</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\The Last Express"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGTHELASTEXPRESS" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\The Last Express\The Last Express.lnk" detract="DOSBOX"/>
</locations>
<files>
<include filename="BLUE.EGG"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LastRemnant" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Last Remnant</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\The last remnant"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LeadAndGoldGangsOfTheWildWest" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lead and Gold: Gangs of the Wild West</title>
<version os="Windows">
<locations>
<path ev="commonapplicationdata" path="LAG"/>
<path ev="localappdata" path="LAG"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LeagueOfLegends" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>League of Legends</title>
<version os="Windows" type="Settings">
<locations>
<registry root="local_machine" key="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{92606477-9366-4D3B-8AE3-6BE4B29727AB}" value="InstallLocation"/>
</locations>
<files>
<include path="League of Legends\Config"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Left4Dead" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Left 4 Dead</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="500"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="left 4 dead"/>
</locations>
<files>
<include path="left4dead*\save"/>
</files>
<files type="Settings">
<include path="left4dead*\cfg" filename="*.cfg"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Left4Dead2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Left 4 Dead 2</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="550"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="steamcommon" path="left 4 dead 2"/>
</locations>
<files>
<include path="left4dead2*\save"/>
</files>
<files type="Settings">
<include path="left4dead2*\cfg" filename="*.cfg"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LeftBehind3RiseOfTheAntichrist" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Left Behind 3: Rise of the Antichrist</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Left Behind Games\Eternal Forces"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LegacyOfKainBloodOmen2" added="2013-02-23T21:39:00" updated="2013-02-23T21:39:00">
<title>Legacy of Kain: Blood Omen 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Blood Omen 2"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LegacyOfKainDefiance" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Legacy of Kain: Defiance</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Legacy of Kain - Defiance"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LegacyOfKainSoulReaver" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Legacy of Kain: Soul Reaver</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Legacy of Kain Soul Reaver"/>
<path ev="steamcommon" path="Legacy of Kain Soul Reaver"/>
<registry root="local_machine" key="SOFTWARE\Crystal Dynamics\Legacy of Kain: Soul Reaver\1.00.000" value="AppExePath"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGLEGACYOFKAINSOULREAVER" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Legacy of Kain Soul Reaver\Legacy of Kain Soul Reaver.lnk"/>
</locations>
<files>
<include filename="savegame.her"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Legendary" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Legendary</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\Legendary"/>
</locations>
<files>
<include path="PandoraGame\Checkpoints"/>
<include path="PandoraGame\SaveData"/>
</files>
<files type="Settings">
<include path="PandoraGame\Config"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LegendHandOfGod" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Legend: Hand of God</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Legend - Hand of God"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LegendOfFae" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Legend of Fae</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Endless Fluff Games\Legend of Fae"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LegendOfGrimrock" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Legend of Grimrock</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Almost Human\Legend of Grimrock"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LEGOBatman" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>LEGO Batman</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="Warner Bros. Interactive Entertainment\LEGO Batman"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGOBatman2DCSuperHeroes" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>LEGO Batman 2 DC Super Heroes™</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Warner Bros. Interactive Entertainment\LEGO Batman 2"/>
</locations>
<files>
<include path="SavedGames"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LegoHarryPotterYears14" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Lego® Harry Potter™ Years 1 - 4</title>
<version os="Windows">
<locations>
<path ev="appdata" path="WB Games\LEGO® Harry Potter™\SavedGames"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LegoHarryPotterYears57" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Lego® Harry Potter™ Years 5 - 7</title>
<version os="Windows">
<locations>
<path ev="appdata" path="WB Games\LEGO Harry Potter 2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGOIndianaJones" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>LEGO Indiana Jones</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="LucasArts\LEGOIndianaJones"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGOIndianaJones2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>LEGO Indiana Jones 2</title>
<version os="Windows">
<locations>
<path ev="appdata" path="LucasArts\LEGO® Indiana Jones™ 2"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGOPiratesOfTheCaribbean" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>LEGO Pirates of the Caribbean</title>
<version os="Windows">
<locations>
<path ev="appdata" path="DisneyInteractiveStudios\LEGOPirates"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGORacers2" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>LEGO Racers 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\LEGO Racers 2\Saved Games"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGOStarWars2" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>LEGO Star Wars II</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="LucasArts\LEGO Star Wars II"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGOStarWars3TheCloneWars" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>LEGO Star Wars III: The Clone Wars</title>
<version os="Windows">
<locations>
<path ev="appdata" path="LucasArts\LEGOStarWarsIII"/>
</locations>
<files>
<include path="SavedGames"/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGOStarWarsTheCompleteSaga" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>LEGO Star Wars: The Complete Saga</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="LucasArts\LEGO Star Wars - The Complete Saga"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LEGOTheLordOfTheRings" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>LEGO The Lord of the Rings</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Warner Bros. Interactive Entertainment\LEGO The Lord of the Rings"/>
</locations>
<files>
<include/>
</files>
<registry>
<entry root="current_user" key="Software\Warner Bros. Interactive Entertainment" value="Saves"/>
</registry>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LeisureSuitLarryBoxOfficeBust" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Leisure Suit Larry: Box Office Bust</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\LeisureSuitLarry"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Lemmings" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lemmings</title>
<version os="PS3" region="USA">
<ps_code prefix="NPUA" suffix="80012"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Lightfish" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Lightfish</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Lightfish"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LightOfAltair" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Light of Altair</title>
<version os="Windows">
<locations>
<path ev="appdata" path="SaintXi\LightOfAltair"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Limbo" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Limbo</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="48000"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
<version os="Windows">
<locations>
<path ev="installlocation" path="LIMBO"/>
<registry root="current_user" key="Software\LIMBO"/>
<shortcut ev="startmenu" path="Programs\LIMBO\LIMBO.lnk"/>
</locations>
<files>
<include path="save_game"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LineRider" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Line Rider</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\LineRider" value="Install_Dir"/>
</locations>
<files>
<include path="Profiles"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LionheartKingsCrusade" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Lionheart: Kings' Crusade</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="NeocoreGames\Lionheart"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LittleBigAdventure" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Little Big Adventure</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Little Big Adventure"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGLBA" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Little Big Adventure\Little Big Adventure.lnk" detract="DOSBOX"/>
</locations>
<files>
<include filename="*.LBA"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LittleBigAdventure2" follows="LittleBigAdventure" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Little Big Adventure 2</title>
<version os="DOS">
<locations>
<path ev="installlocation" path="GOG.com\Little Big Adventure 2"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGLBA2" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Little Big Adventure 2\Little Big Adventure.lnk 2" detract="DOSBOX"/>
</locations>
<files>
<include path="SAVE"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LittleInferno" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Little Inferno</title>
<version os="Windows">
<locations>
<path ev="appdata" path="Little Inferno"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LittleShopMemories" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Little Shop: Memories</title>
<version os="Windows">
<locations>
<path ev="commonapplicationdata" path="GameHouse\Games\LittleShopMemories"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Loki" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Loki</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="loki"/>
</locations>
<files>
<include path="Characters"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LoneSurvivor" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lone Survivor</title>
<version platform="Flash">
<locations>
<path ev="appdata" path="LoneSurvivor"/>
</locations>
<files>
<include path="Local Store\Lone Survivor Saved Game"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LongestJourney" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Longest Journey</title>
<version os="Windows" detect="required">
<locations>
<path ev="appdata" path="The Longest Journey"/>
<path ev="installlocation" path="Funcom\The Longest Journey"/>
<registry root="current_user" key="Software\Paper Sun\Roots" value="Root"/>
</locations>
<files>
<include path="Save"/>
</files>
<files type="Settings">
<include filename="Preferences.ini"/>
</files>
<identifier path="Save"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LongLiveTheQueen" added="2014-01-28T15:32:05" updated="2014-01-28T15:32:05">
<title>Long Live The Queen</title>
<version platform="RenPy">
<locations>
<path ev="appdata" path="RenPy\LongLiveTheQueen"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Loom" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Loom</title>
<version os="Windows">
<locations>
<path ev="appdata" path="LucasArts\Loom"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LordOfTheRingsBattleForMiddleEarth" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Lord of the Rings: Battle for Middle Earth</title>
<version os="Windows">
<locations>
<path ev="appdata" path="My Battle for Middle-earth Files"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LordOfTheRingsConquest" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Lord of the Rings: Conquest</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Lord of the Rings - Conquest"/>
<path ev="userdocuments" path="The Lord of the Rings - Conquest"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LordOfTheRingsOnline" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Lord of the Rings Online</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="The Lord of the Rings Online"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LordOfTheRingsTheReturnOfTheKing" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Lord of the Rings: The Return of the King</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="LOTR The Return of the King (tm) Data"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LordOfTheRingsWarInTheNorth" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>The Lord of The Rings: War in the North</title>
<version platform="SteamCloud">
<locations>
<path ev="steamuserdata" path="32800"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows">
<locations>
<path ev="localappdata" path="WB Games\War in the North"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LordOfTheRingsWarOfTheRing" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>The Lord of the Rings: War of the Ring</title>
<version os="Windows">
<locations>
<registry root="local_machine" key="SOFTWARE\Liquid Entertainment\War of the Ring" value="Install Path"/>
</locations>
<files>
<include path="PlayerProfiles"/>
<include path="SAVES"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LordsOfTheRealm3" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Lords of the Realm 3</title>
<version os="Windows">
<locations>
<path ev="installlocation" path="GOG.com\Lords of the Realm III"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGLORDSOFTHEREALM3" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Lords of the Realm III\Lords of the Realm III.lnk"/>
</locations>
<files>
<include path="Nobles"/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LostHorizon" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lost Horizon</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Lost Horizon"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LostPlanet" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lost Planet: Extreme Condition</title>
<version os="Windows">
<locations>
<path ev="localappdata" path="CAPCOM\LOSTPLANET"/>
</locations>
<files>
<include/>
</files>
<contributor>Caleb Love</contributor>
</version>
<version os="Windows" release="Colonies">
<title>Lost Planet: Colonies</title>
<locations>
<path ev="localappdata" path="CAPCOM\LOSTPLANETCOLONIES"/>
</locations>
<files>
<include/>
</files>
<contributor>Caleb Love</contributor>
</version>
</game>
<game name="LostPlanet2" follows="LostPlanet" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lost Planet 2</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="CAPCOM\LOST PLANET 2"/>
</locations>
<files>
<include/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LostPlanet3" follows="LostPlanet2" added="1955-11-05T00:00:00" updated="2014-01-28T15:32:05">
<title>Lost Planet 3</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="My Games\LostPlanetGame\LostPlanetGame"/>
</locations>
<files>
<include path="SaveData"/>
</files>
<files type="Settings">
<include path="Config"/>
</files>
<contributor>Arc Angel</contributor>
</version>
</game>
<game name="LostRealmsTheCurseOfBabylon" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Lost Realms: The Curse of Babylon</title>
<version os="Windows">
<locations>
<path ev="appdata" path="blg\LostRealms-TheCurseOfBabylon"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LostViaDomus" added="2013-02-03T05:40:17" updated="2013-02-03T05:40:17">
<title>Lost Via Domus</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Lost Via Domus"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LoveAndDeathBitten" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Love & Death: Bitten</title>
<version os="Windows">
<locations>
<path ev="appdata" path="PlayFirst\love-and-death-bitten"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="Lucius" added="2013-06-14T05:17:42" updated="2013-06-14T05:17:42">
<title>Lucius</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Lucius"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>
</game>
<game name="LugaruHD" added="1955-11-05T00:00:00" updated="2013-01-05T16:19:39">
<title>Lugaru HD</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="lugaru hd"/>
</locations>
<files>
<include path="Data" filename="Users"/>
<include path="Data\Campaigns"/>
</files>
<files type="Settings">
<include path="Data" filename="config.txt"/>
</files>
<linkable path="Data\Campaigns"/>
<contributor>AdmiringWorm</contributor>
</version>
</game>
<game name="Lumines" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lumines</title>
<version os="PSP" region="EU">
<ps_code prefix="ULES" suffix="00043"/>
<contributor>duncans_pumpkin</contributor>
</version>
<version os="Windows">
<locations>
<path ev="appdata" path="Valve\Lumines"/>
<path ev="commonapplicationdata" path="Valve\Lumines"/>
</locations>
<files>
<include/>
</files>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LuminesSupernova" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lumines Supernova</title>
<version os="PS3" region="USA">
<ps_code prefix="NPUB" suffix="30048"/>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="LunarFlight" added="2012-09-12T14:51:10" updated="2012-09-12T14:11:29">
<title>Lunar Flight</title>
<version os="Windows">
<locations>
<path ev="userdocuments" path="Saved Games\LunarFlight"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>simtech76</contributor>
</version>
</game>
<game name="LureOfTheTemptress" added="1955-11-05T00:00:00" updated="1955-11-05T00:00:00">
<title>Lure of the Temptress</title>
<version platform="ScummVM">
<scummvm name="lure"/>
<locations>
<path ev="installlocation" path="GOG.com\Lure of the Temptress"/>
<registry root="local_machine" key="SOFTWARE\GOG.com\GOGLURE" value="PATH"/>
<shortcut ev="startmenu" path="Programs\GOG.com\Lure of the Temptress\Lure of the Temptress.lnk"/>
</locations>
<contributor>GameSave.Info</contributor>
</version>
</game>
<game name="Luxor" added="2012-09-12T14:51:10" updated="2013-02-03T05:40:17">
<title>Luxor</title>
<version os="Windows">
<locations>
<path ev="steamcommon" path="luxor"/>
</locations>
<files>
<include filename="memory.dat"/>
<include filename="scores.dat"/>
<include path="profiles"/>
</files>
<contributor>GameSaveManager</contributor>
</version>
<version os="Windows" release="HD">
<title>Luxor HD</title>
<locations>
<path ev="commonapplicationdata" path="MumboJumbo\luxor_hd"/>
</locations>
<files>
<include/>
</files>
<linkable/>
<contributor>GameSaveManager</contributor>
</version>