my problem is to get the base adr of it.
(i edited one of my older projects ignore "csgo_process"
Code:
csgo_process = Process.GetProcessesByName("RainbowSix")
If csgo_process.Length > 0 Then
For Each [Module] As System.Diagnostics.ProcessModule In csgo_process(0).Modules
If [Module].ModuleName = "RainbowSix.exe" Then
client_dll_base = [Module].BaseAddress
End If
Next
triggerbot_loop_thread.Start()
Else
MsgBox("Start Rainbow Six before")
Application.Exit()
End If
could someone help me?






