feat: implement various player hacks and refactor main loop for modularity
Some checks failed
Python Type Check and Lint / ci (push) Failing after 1s

This commit is contained in:
암냥 2026-05-30 18:45:42 +09:00
commit 1730b73d1f
9 changed files with 141 additions and 85 deletions

12
modules/grenade.py Normal file
View file

@ -0,0 +1,12 @@
import pyMeow as pm
class GrenadeHack:
offset = 0x144
@classmethod
def apply(cls, proc, local_player_addr, value=9999999):
"""local_player의 Grenade 값을 9999999로 고정시킵니다."""
try:
pm.w_int(proc, local_player_addr + cls.offset, value)
except Exception as e:
pass