-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemoryConfig.cs
More file actions
54 lines (47 loc) · 2.08 KB
/
Copy pathMemoryConfig.cs
File metadata and controls
54 lines (47 loc) · 2.08 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
using SmartHunter.Core;
namespace SmartHunter.Game.Config
{
public class MemoryConfig
{
public string ProcessName = "MonsterHunterWorld";
public int ThreadsPerScan = 1;
public BytePatternConfig PlayerDamagePattern = new BytePatternConfig(
"PlayerDamagePattern",
"48 8B 0D ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 8B D8 48 85 C0 75 04 33 C9",
"140000000",
"163B0A000",
WindowsApi.RegionPageProtection.PAGE_READONLY
);
public BytePatternConfig PlayerNamePattern = new BytePatternConfig(
"PlayerNamePattern",
"48 8B 0D ?? ?? ?? ?? 48 8D 54 24 38 C6 44 24 20 00 E8 ?? ?? ?? ?? 48 8B 5C 24 70 48 8B 7C 24 60 48 83 C4 68 C3",
//"48 8B 0D ?? ?? ?? ?? 48 8D 54 24 38 C6 44 24 20 00 E8 ?? ?? ?? ?? 48 8B 5C 24 70 48 48 83 C4 60 5F C3",
"140000000",
"163B0A000",
WindowsApi.RegionPageProtection.PAGE_READONLY
);
public BytePatternConfig MonsterPattern = new BytePatternConfig(
"MonsterPattern",
/*"48 8B 05 ?? ?? ?? ?? 8B 48 ?? 89 8F ?? ?? ?? ??",*/
"48 8b 0d ?? ?? ?? ?? B2 01 E8 ?? ?? ?? ?? C6 83 ?? ?? ?? ?? ?? 48 8b 0d",
"140000000",
"163B0A000",
WindowsApi.RegionPageProtection.PAGE_READONLY
);
public BytePatternConfig MonsterOffsetPattern = new BytePatternConfig(
"MonsterOffsetPattern",
/*"48 8B 8B ?? ?? ?? ?? 48 8B 01 FF 50 ?? 48 8B 8B ?? ?? ?? ?? E8 ?? ?? ?? ?? 48 8B 8B ?? ?? ?? ?? B2 01 E8 ?? ?? ?? ??",*/
"48 8B 8B ?? ?? ?? ?? 48 89 4A ?? 48 89 42 ?? 4C 8D 9C 24",
"140000000",
"163B0A000",
WindowsApi.RegionPageProtection.PAGE_READONLY
);
public BytePatternConfig PlayerBuffPattern = new BytePatternConfig(
"PlayerBuffPattern",
"48 8B 05 ?? ?? ?? ?? 41 8B 94 00 ?? ?? ?? ?? 89 51 ??",
"140000000",
"163B0A000",
WindowsApi.RegionPageProtection.PAGE_READONLY
);
}
}