forked from JMaynard24/ASL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTombRaider.asl
More file actions
39 lines (33 loc) · 798 Bytes
/
TombRaider.asl
File metadata and controls
39 lines (33 loc) · 798 Bytes
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
state("TombRaider", "[Epic Games] 838.0")
{
bool FMV : "binkw32.dll", 0x2830C;
int ingameCutscene : 0x20C7DBC;
bool isLoading : 0x1CF6960;
}
state("TombRaider", "[Steam] 743.0")
{
bool FMV : "binkw32.dll", 0x2830C;
int ingameCutscene : 0x211AB5C;
bool isLoading : 0x1E33250;
}
isLoading
{
return current.ingameCutscene == 520 || current.isLoading || current.FMV;
}
init
{
switch(modules.FirstOrDefault(r => r.ModuleName == "TombRaider.exe").ModuleMemorySize)
{
case 38535168:
version = "[Epic Games] 838.0";
break;
case 38739968:
version = "[Steam] 743.0";
break;
};
timer.IsGameTimePaused = false;
}
exit
{
timer.IsGameTimePaused = true;
}