I'm using C# to make an external. I attach to csgo.exe just fine, but when I search for the client_panorama.dll it doesn't come up. I used debugger to see what was happening, and when I loop through the modules I only get these: "csgo.exe", "ntdll.dll", "wow64.dll", "wow64win.dll", "wow64cpu.dll". My loop is
Code:
foreach (ProcessModule m in m_iProcess.Modules)
{
if (m.ModuleName == "client_panorama.dll")
{
m_iClient = m.BaseAddress;
}
}
Clearly this code is functional since I get the modules above, but I don't see why client doesn't pop up. I haven't done csgo hacking in a while so let me know if anything major has changed.
Bump... I'm clueless. I've checked against multiple sources and I'm setting it up the same.