File tree 2 files changed +13
-7
lines changed
2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 7
7
# This script is intended to work with Pidjeon for a seamless injection process.
8
8
9
9
TARGET=" splintercell3.exe" # Change as necessary
10
- PAYLOAD=" bin /sp3.dll" # Change as necessary
10
+ PAYLOAD=" lib /sp3.dll" # Change as necessary
11
11
PIDJEON_PATH=" ${HOME} /.toolkit" # Change as necessary
12
12
13
13
export PATH=$PATH :" ${PIDJEON_PATH} "
Original file line number Diff line number Diff line change @@ -20,8 +20,6 @@ extern bool bGhostMode;
20
20
extern bool bShutdown ;
21
21
extern bool bGodMode ;
22
22
23
- /*void health_detour(void); // maybe this works?*/
24
-
25
23
void hack_GodMode (bool bEnabled )
26
24
{
27
25
char * const health_op = (char * )(module_base_addr + offsets_health_base );
@@ -32,11 +30,7 @@ void hack_GodMode(bool bEnabled)
32
30
33
31
if (bEnabled )
34
32
{
35
- #pragma GCC diagnostic push
36
- #pragma GCC diagnostic ignored "-Wpedantic"
37
33
memory_detour (health_op , (void * )health_detour , health_op_size );
38
- #pragma GCC diagnostic pop
39
-
40
34
}
41
35
else
42
36
{
@@ -289,3 +283,15 @@ void hack_test(void)
289
283
}
290
284
291
285
}
286
+
287
+ void hack_no_clip (bool bEnabled )
288
+ {
289
+ if (bEnabled )
290
+ {
291
+ // Stop xyz movements
292
+
293
+ // X movement
294
+ // splintercell3.exe+19580D -> fstp dword ptr [edi]
295
+ // splintercell3.exe+19580D -> nop nop
296
+ }
297
+ }
You can’t perform that action at this time.
0 commit comments