We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93c1b2d commit 5524ddcCopy full SHA for 5524ddc
DearPyInjectorRustClient/Inject.py
@@ -5,11 +5,11 @@
5
class Injector:
6
def InjectDLL(path: str):
7
pymem_rust = p.Pymem("RustClient.exe")
8
- vbb = bytes(path)
+ vbb = bytes(path, "utf-8")
9
return inject_dll(pymem_rust.process_handle, vbb)
10
def GetValue_Tag(tag: str):
11
return x.get_value(tag)
12
def CheckIfRustExists():
13
pymnx = p.Pymem("RustClient.exe")
14
if pymnx.process_id == 0:
15
- raise Exception("RustClient.exe is not Launched")
+ raise Exception("RustClient.exe is not Launched")
0 commit comments