I am creating my first hack for wolfteam and have an error while trying to access the process modules with this code
Code:
Dim p As Process = Process.GetProcessesByName("Wolfteam.bin")(0)
For Each moz As System.Diagnostics.ProcessModule In p.Modules
If moz.FileName.IndexOf("obj") <> -1 Then
Label1.Text = moz.BaseAddress.ToString
End If
Next







