Originally Posted by
Tho-kun
Hey!
Can someone tell me how to compile this stuff? I used svn before, downloaded the files, but how can i compile it?
Do i need Visual C++ for it?
Would you please **** off and don't spam this thread? These stupid ****ers make me sick just posting crap all day.
The idea of open source is great but you should not give this away compiled, just keep this as reference for people who are able to code their own bot. With contributors like Cypher, Kynox or Shynd this could become Warden safe and would be a dream.
Currently I am writing s.th. simple (walk, target, kill, loot) for me and I've stolen so much code from you ... that is not even funny.
Hower functions like selectUnit look dangerous to me. Could anyone of the gurus in here state if the following is detectable or safe?
Code:
SuspendMainWowThread();
uint codecave = wow.AllocateMemory();
uint VMT = wow.ReadUInt(objAddress);
uint result = 0;
wow.Asm.Clear();
AsmUpdateCurMgr();
wow.Asm.AddLine("mov ecx, {0}", objAddress);
wow.Asm.AddLine("call {0}", wow.ReadUInt(VMT + method));
AsmSendResumeMessage();
wow.Asm.AddLine("retn");
try
{
result = wow.Asm.InjectAndExecute(codecave);
}
catch (Exception e)
{
ResumeMainWowThread();
throw e;
}
finally
{
wow.FreeMemory(codecave);
}
return result;
}
I am currently using this for selecting unit and interact.