Hey,
I have very little experience in the programming world, but would love to learn more about it especially if i could do a simple project with someone who was willing to help. So here is my idea, i wanted to make a simple aimbot for CO2 and just become more acquainted with the programming world. I have been told that an aimbot is very simple to make so i figured it would be a good start. Please tell me if someone is willing to help and if you have any other ideas such as an easier project, like maybe a toxic fog levler instead that would be great! I just want to learn more about programming and i have found i learn best through fun projects. Thanks a ton!
-Tommyboy
foreach(Entity E in Kernel.AllChars)
{
if(E is Character)
{
Character Target = E;
If(Calc.InRange(Target.X,Target.Y, Me.X,Me.Y)
{
Me.AttackFBSS(Target.X,Target.Y);
}
}
}
foreach(Entity E in Kernel.AllChars) { if(E is Character) { Character Target = E; If(Calc.InRange(Target.X,Target.Y, Me.X,Me.Y) { Me.AttackFBSS(Target.X,Target.Y); } } }
Wow, I've been putting off implementing an fb/ss aimbot in my proxy because I thought it was more complicated than that for some reason.
lol.. Aimbot is only complicated because of the action value and skill value encoding. Since those encoding are now open. it became the one of easiest function to achieve. That is the first botting function i wrote into my proxy.
Anybody what would be used to make a follow bot? Are there certain packets for that or do you have to use pixel color? Sorry about all the questions :P
I`d suggest you not to do complete bot features just yet, just build a basic proxy and experiment with simple things as attacking the closest monster, walking, etc, then build your way up from those.
Yeah im going to try to do what Krahen said but im having some trouble just sending packets as noob as that may sound but i could use some examples in C# if anyone has some. Thanks a **** ton!