forked from Quidrex/DSDeaths
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.cs
72 lines (72 loc) · 1.25 KB
/
Config.cs
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
namespace DSDeaths
{
public class Config
{
public static readonly string json =
@"{
""Dark Souls I"": {
""process"": ""DARKSOULS"",
""offsets"": [
""0xF78700"",
""0x5c""
],
""isWow64"": true
},
""Dark Souls II"": {
""process"": ""DarkSoulsII"",
""offsets"": [
""0x1150414"",
""0x74"",
""0xB8"",
""0x34"",
""0x4"",
""0x28C"",
""0x100""
],
""isWow64"": true
},
""Dark Souls II: Scholar of the First Sin"": {
""process"": ""DarkSoulsII"",
""offsets"": [
""0x16148F0"",
""0xD0"",
""0x490"",
""0x104""
],
""isWow64"": false
},
""Dark Souls III"": {
""process"": ""DarkSoulsIII"",
""offsets"": [
""0x47572B8"",
""0x98""
],
""isWow64"": false
},
""Dark Souls I: Remastered"": {
""process"": ""DarkSoulsRemastered"",
""offsets"": [
""0x1C8A530"",
""0x98""
],
""isWow64"": false
},
""Sekiro"": {
""process"": ""Sekiro"",
""offsets"": [
""0x3D5AAC0"",
""0x90""
],
""isWow64"": false
},
""Elden Ring"": {
""process"": ""eldenring"",
""offsets"": [
""0x3C17EE8"",
""0x94""
],
""isWow64"": false
}
}";
}
}