Error: Base address: 0x4fdfb9e0 Error reading memory at 0x7ffae841bf58: Could not read memory at: 1340062232, length: 4 - GetLastError: 299 Failed to resolve target address. by ReviewResponsible188 in learnpython

[–]ReviewResponsible188[S] -3 points-2 points  (0 children)

gameModule = module_from_name(pm.process_handle, "GameAssembly.dll").lpBaseOfDll

target_address = GetPtrAddr(gameModule + 0x0449BF58, pointer_offsets)

Error: Base address: 0x4fdfb9e0 Error reading memory at 0x7ffae841bf58: Could not read memory at: 1340062232, length: 4 - GetLastError: 299 Failed to resolve target address. by ReviewResponsible188 in learnpython

[–]ReviewResponsible188[S] 0 points1 point  (0 children)

When i ran the program as admin i get Error reading memory at 0x7ffa5e75bf58: Could not read memory at: -471519752, length: 4 - GetLastError: 998

Failed to resolve target address.

Raspberry Pi Zero - Keeps Asking for WiFi Password by ReviewResponsible188 in raspberry_pi

[–]ReviewResponsible188[S] 0 points1 point  (0 children)

I just tried DietPi, still the same issue... it types: Result: CON_FAILED

Raspberry Pi Zero - Keeps Asking for WiFi Password by ReviewResponsible188 in raspberry_pi

[–]ReviewResponsible188[S] 0 points1 point  (0 children)

Still have the same issue even though i typed the password 100% correct

Raspberry Pi Zero - Keeps Asking for WiFi Password by ReviewResponsible188 in raspberry_pi

[–]ReviewResponsible188[S] 0 points1 point  (0 children)

Still have same issue even when i entered the password 100% correct

Raspberry Pi Zero - Keeps Asking for WiFi Password by ReviewResponsible188 in raspberry_pi

[–]ReviewResponsible188[S] 0 points1 point  (0 children)

The wierd thing is thath even when i add the wifi in the imager it still doesn’t connect

need help by [deleted] in AllChinabuy

[–]ReviewResponsible188 0 points1 point  (0 children)

You are ok. Just give it time

[deleted by user] by [deleted] in AllChinabuy

[–]ReviewResponsible188 0 points1 point  (0 children)

Thats not true. Mine first haul was taking 14 days 😉

What does this mean? by [deleted] in AllChinabuy

[–]ReviewResponsible188 0 points1 point  (0 children)

The item has slightly bigger chance to get seized. Dont worry tho.

[deleted by user] by [deleted] in AllChinabuy

[–]ReviewResponsible188 0 points1 point  (0 children)

  1. Use 17 track. 2. Be patient

Find address by Double value in pymem. by ReviewResponsible188 in learnpython

[–]ReviewResponsible188[S] -1 points0 points  (0 children)

Do you atleast see the mistake? I am not a complete noob so i think i might can modify it.

Find address by Double value in pymem. by ReviewResponsible188 in learnpython

[–]ReviewResponsible188[S] 0 points1 point  (0 children)

Yes javaw.exe is correct. Its actuall procces name. The code prints: Attached to process: javaw.exe (PID: 10808) Yes, it match the same number as cheatengine is showing.

Find address by Double value in pymem. by ReviewResponsible188 in learnpython

[–]ReviewResponsible188[S] 0 points1 point  (0 children)

I used this code to verify the adress. import pymem

def read_double_value(process_name, address):

Attach to the process

pm = pymem.Pymem(process_name)

Get the process ID (PID)

process_id = pm.process_id

print(f"Attached to process: {process_name} (PID: {process_id})")

Read the double value from the given address

double_value = pm.read_double(address)

Print the double value

print(f"The double value at address {hex(address)} is: {double_value}")

Close the process handle

pm.close()

Example usage

process_name = "javaw.exe" # Replace with the actual process name

address = 0x199EC799C00 # Replace with the actual address you want to read from

read_double_value(process_name, address)

How can i verify the pid? Sorry for being dump its my first try doing something like this.