We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was trying to access the modules of a game. This is my code:
from pymem import Pymem import pymem import subprocess import re pm = pymem.Pymem('Game.exe') print(f"pm -> {pm}") modules = pm.list_modules() print(f"All modules -> {modules}") module_list = [] for module in modules: module_list.append(module.name) print(f"Module list -> {module_list}")
Output:
pm -> <pymem.Pymem object at 0x00000256AFB47370> All modules -> <generator object enum_process_module at 0x00000256B1A51540> Module list -> []
The Module list seems to be empty. This is my output. I ran python as an administrator. Python - 64 bit Application - 64 bit
Discord Conversation Link
The text was updated successfully, but these errors were encountered:
The code is correct. Have you checked with Cheat Engine if the DLLs are listed there?
Sorry, something went wrong.
No branches or pull requests
I was trying to access the modules of a game. This is my code:
Output:
The Module list seems to be empty.
This is my output. I ran python as an administrator.
Python - 64 bit
Application - 64 bit
Discord Conversation Link
The text was updated successfully, but these errors were encountered: