typo
This commit is contained in:
parent
5427769e9e
commit
5d11939769
1 changed files with 5 additions and 1 deletions
6
hack.py
6
hack.py
|
@ -35,6 +35,10 @@ class Hack():
|
|||
"render_G": 0x1,
|
||||
"render_B": 0x2,
|
||||
"float": 0x4,
|
||||
"head_idx": 0x30 * 8,
|
||||
"head_x": 0x0C,
|
||||
"head_y": 0x1C,
|
||||
"head_z": 0x2C,
|
||||
}
|
||||
|
||||
def _find_process(self, verbose: bool = False) -> Pymem:
|
||||
|
@ -70,7 +74,7 @@ class Hack():
|
|||
raise MemoryError
|
||||
|
||||
def find_uint(self, base, offset: int) -> int:
|
||||
"""Find integer in memory for sure"""
|
||||
"""Find unsigned integer in memory for sure"""
|
||||
local_element = None
|
||||
while not local_element:
|
||||
local_element = self.pm.read_uint(base + offset)
|
||||
|
|
Reference in a new issue