


#Assaultcube github free#
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)įreshPorts needs to find a new hosting provide willing to take a 2U chassis and host it free of charge. FreshPorts - games/assaultcube: Total conversion of the FPS game called CubeĪs an Amazon Associate I earn from qualifying purchases. read ( grenade_pointer ) print () process. get_pointer ( 0x004df73c, offsets = ) health = process. get_pointer ( 0x004df73c, offsets = ) grenade_pointer = process. get_pointer ( 0x004e4dbc, offsets = ) ammo_pointer = process. get_process_by_name ( 'ac_client.exe' ) process. read ( grenade_pointer ) Print the health, ammo and grenade values from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () process = rwm. get_pointer ( 0x004df73c, offsets = ) Read the values for the health, ammo and grenades from the Process's memory from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () process = rwm. from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () process = rwm. You need to pass two arguments, first the process address as hex and a list of offsets as hex. The offsets must be a list in the correct order, if the address does not have any offsets then just pass the address. open () Set the pointers for example: to get health, ammo and grenades To be able to read or write to the process's memory first you need to call the open() method. get_process_by_name ( 'ac_client.exe' ) except ReadWriteMemoryError as error : print ( error ) Open the Process get_process_by_name ( 'ac_client.exe' ) help ( process ) Exception: ReadWriteMemoryError from ReadWriteMemory import ReadWriteMemory from ReadWriteMemory import ReadWriteMemoryError rwm = ReadWriteMemory () try : process = rwm. _dict_ ) Print the Process HELP docs from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () process = rwm. get_process_by_name ( 'ac_client.exe' ) print ( process.

enumerate_processes () Print the Process information from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () process = rwm. get_process_by_id ( 1337 ) Get the list of running processes ID's from the current system from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () processes_ids = rwm. get_process_by_name ( 'ac_client.exe' ) Get a Process by ID from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () process = rwm. Usage Import and instantiate the Class from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () Get a Process by name from ReadWriteMemory import ReadWriteMemory rwm = ReadWriteMemory () process = rwm. This Class does not depend on any extra modules and only uses standard Python libraries like ctypes. The ReadWriteMemory Class is made on Python for reading and writing to the memory of any process.
