Register for your free account! | Forgot your password?

You last visited: Today at 11:16

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] Aimbot

Discussion on [Release] Aimbot within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1
 
Zeroxelli's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
[Release] Aimbot

Well, Vortex. mentioned it and I was bored. So, here you go.

For Handlers/Chat.cs put:
Code:
                        #region Automation
                        case "aimbot":
                            {
                                if (Command.Length >= 2)
                                {
                                    switch (Command[1])
                                    {
                                        case "stop":
                                            {
                                                Automation.Automation.Going.Remove(CSocket.Client.ID);
                                                CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "[Aimbot] Aimbot thread stopped.", Struct.ChatType.Top));
                                                break;
                                            }
                                        default:
                                            {
                                                string Name = Command[1].ToString();
                                                int wType = int.Parse(Command[2]);
                                                foreach (ClientSocket CSock in Nano.ClientPool.Values)
                                                {
                                                    if (CSock.Client.Name == Name)
                                                    {
                                                        Character Aim = CSock.Client;
                                                        Dictionary<ClientSocket, Character> Objective = new Dictionary<ClientSocket, Character>();
                                                        Objective.Add(CSocket, Aim);
                                                        if (Automation.Automation.Aimbots.ContainsKey(CSocket.Client.ID))
                                                            Automation.Automation.Aimbots.Remove(CSocket.Client.ID);
                                                        Automation.Automation.Aimbots.Add(CSocket.Client.ID, Objective);
                                                        Automation.Automation.LastAimbot = CSocket.Client.ID;
                                                        Automation.Automation.LastAimSID = wType;
                                                        if (!Automation.Automation.Going.Contains(CSocket.Client.ID))
                                                            Automation.Automation.Going.Add(CSocket.Client.ID);
                                                        new Thread(Automation.Automation.AimBot).Start();
                                                        CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "[Aimbot] Aimbot thread started, use `/aimbot stop` to kill it.", Struct.ChatType.Top));
                                                    }
                                                }
                                                break;
                                            }
                                    }
                                }
                                break;
                            }
                        #endregion Automation
And in the Handlers folder make a new file named Aimbot.cs, and in it put:
Code:
using System;
using CoEmu_v2_GameServer.Connections;
using CoEmu_v2_GameServer.Entities;
using CoEmu_v2_GameServer.Calculations;
using CoEmu_v2_GameServer.Handlers;
using System.Threading;
using System.Collections.Generic;
using CoEmu_v2_GameServer.Packets;
using CoEmu_v2_GameServer.Structs;

namespace CoEmu_v2_GameServer.Automation
{
    public class Automation
    {
        public static Dictionary<int, Dictionary<ClientSocket, Character>> Aimbots = new Dictionary<int, Dictionary<ClientSocket, Character>>();
        public static int LastAimbot;
        public static int LastAimSID;
        public static List<int> Going = new List<int>();
        public static void AimBot()
        {
            Dictionary<ClientSocket, Character> Object = Aimbots[LastAimbot];
            foreach (KeyValuePair<ClientSocket, Character> CSobj in Object)
            {
                ClientSocket CSocket = CSobj.Key;
                Character Aim = CSobj.Value;
                int SkillID = (LastAimSID == 1 ? 1045 : 1046);

                if (SkillID == 1045 && !CSocket.Client.Skills.ContainsKey(1045))
                {
                    CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "[Aimbot] You must learn FastBlade first.", Struct.ChatType.Top));
                    break;
                }

                if (SkillID == 1046 && !CSocket.Client.Skills.ContainsKey(1046))
                {
                    CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "[Aimbot] You must learn ScentSword first.", Struct.ChatType.Top));
                    break;
                }

                while (Going.Contains(CSocket.Client.ID))
                {
                    if (CSocket.Client.CurrentStam >= 22)
                    {
                        if (!Nano.ClientPool.ContainsKey(Aim.ID))
                        {
                            CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "[Aimbot] User logged off, seizing thread.", Struct.ChatType.Top));
                            break;
                        }
                        else if (!Aim.Dead)
                        {
                            if ((int)Aim.Map == (int)CSocket.Client.Map)
                            {
                                if (Calculation.InRange(CSocket.Client.X, CSocket.Client.Y, Aim.X, Aim.Y, 9))
                                {
                                    Handler.NoTargetMagic(CSocket, SkillID, Aim.X, Aim.Y);
                                }
                            }
                            else
                            {
                                CSocket.Send(ConquerPacket.Chat(0, "SYSTEM", CSocket.Client.Name, "[Aimbot] Aimbot cannot track characters not in your map.", Structs.Struct.ChatType.Top));
                                break;
                            }
                        }
                    }
                    Thread.Sleep(1000);
                }
                break;
            }
            Thread.CurrentThread.Abort();
        }
    }
}
It's really only for a joke, so I won't provide support. The version in my server has a lot more checks, I just don't feel like shelling all my functions out (Lazy). Anyway, have fun.

EDIT: By the way, at the top of chat.cs you may wanna add
Code:
using CoEmu_v2_GameServer.Automation;
Zeroxelli is offline  
Thanks
7 Users
Old 06/12/2009, 06:10   #2
 
Rulzan's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 220
Received Thanks: 29
your the best,you helpd me a lot
Rulzan is offline  
Old 06/12/2009, 06:11   #3
 
Zeroxelli's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
Quote:
Originally Posted by Rulzan View Post
your the best,you helpd me a lot
Woot xD
Zeroxelli is offline  
Thanks
4 Users
Old 06/12/2009, 06:44   #4
 
elite*gold: 0
Join Date: Nov 2006
Posts: 81
Received Thanks: 25
need impoot men +k +k +k
Somthing like that.
Edit : Regarding arab4life
You act like I care who you are. That's the funny part.
Zimbolt is offline  
Thanks
1 User
Old 06/12/2009, 07:39   #5
 
arab4life's Avatar
 
elite*gold: 0
Join Date: Jan 2006
Posts: 430
Received Thanks: 286
Quote:
Originally Posted by Zimbolt View Post
need impoot men +k +k +k
Somthing like that.
***
arab4life is offline  
Thanks
2 Users
Old 06/12/2009, 07:41   #6
 
Zeroxelli's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
Quote:
Originally Posted by Zimbolt View Post
need impoot men +k +k +k
Somthing like that.
Quote:
Originally Posted by arab4life View Post
***
........I don't get it.
Zeroxelli is offline  
Thanks
4 Users
Old 06/12/2009, 07:43   #7
 
arab4life's Avatar
 
elite*gold: 0
Join Date: Jan 2006
Posts: 430
Received Thanks: 286
Quote:
Originally Posted by Zeroxelli View Post
........I don't get it.
long story - i wish he knew who i am
arab4life is offline  
Thanks
3 Users
Old 06/12/2009, 07:44   #8
 
Zeroxelli's Avatar
 
elite*gold: 0
Join Date: May 2008
Posts: 1,769
Received Thanks: 1,143
Quote:
Originally Posted by arab4life View Post
long story - i wish he knew who i am
Rofl, I wish everyone knew who I am. Though, I'd probably get banned for my reputation on the interwebz. xD
Zeroxelli is offline  
Thanks
3 Users
Old 06/12/2009, 10:03   #9
 
Rulzan's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 220
Received Thanks: 29
hey hey this topic is for this relase guys
Rulzan is offline  
Thanks
1 User
Old 06/12/2009, 12:18   #10
 
PurePwnage23's Avatar
 
elite*gold: 0
Join Date: Nov 2008
Posts: 38
Received Thanks: 18
I Got a error The type or namespace name 'Automation' does not exist in the namespace 'CoEmu_v2_GameServer' (are you missing an assembly reference?)
PurePwnage23 is offline  
Thanks
2 Users
Old 06/12/2009, 12:26   #11
 
elite*gold: 0
Join Date: Dec 2007
Posts: 226
Received Thanks: 55
nice nice, but whats the use of this.
where is the fun of aiming someone without doing anything yourself
if you wanna kill someone just make a kill command.

i feel sorry for those who use this

@Zeroxelli
nice work
yuko is offline  
Thanks
2 Users
Old 06/12/2009, 13:32   #12
 
elite*gold: 0
Join Date: Jun 2007
Posts: 323
Received Thanks: 30
Wow, this is pretty epic.

Epic win in FB &+ SS fights.
Zanzibar is offline  
Thanks
2 Users
Old 06/12/2009, 14:05   #13
 
Vortex.'s Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 275
Received Thanks: 22
This is, alright. Your using way too much mem, mine is a simple. Works great
Vortex. is offline  
Thanks
2 Users
Old 06/12/2009, 14:27   #14
 
_Emme_'s Avatar
 
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,162
Quote:
Originally Posted by Vortex. View Post
This is, alright. Your using way too much mem, mine is a simple. Works great

The ironic thing is that you copied your from Kinshi's source, or atleast parts since you two uses the exact same variables and the same code on some parts.

I still belive mine is the simplest.
_Emme_ is offline  
Thanks
1 User
Old 06/12/2009, 14:35   #15
 
Vortex.'s Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 275
Received Thanks: 22
I didn't copy **** from, Kinshi's source.
Vortex. is offline  
Thanks
1 User
Reply


Similar Threads Similar Threads
[RELEASE]qaudruplexVIP v1.2 with aimbot
06/19/2010 - WarRock Hacks, Bots, Cheats & Exploits - 14 Replies
auflösung: viele von euch haben drauf geklickt obwohl vor paar tagen schon das gleiche gemacht wurde.... ihr dürft nicht immer überall drauf klicken....
Release USF Chams + Aimbot
03/14/2010 - Soldier Front Hacks, Bots, Cheats & Exploits - 2 Replies
Hello, I am now releasing to the public my new hacks i have been making for many months. These include Chams and an Aimbot. The download link is here:
[RELEASE](USzene)CS Aimbot v.1.2.1 [UD VAC]
11/14/2009 - General Gaming Discussion - 0 Replies
Hello, I release my new "Counter Strike" aimbot version 1.2.1! -> ATTEMPTION <- The .EXE have a CryptAPI code algorythmus,and use scripts thay was locatet and anything scanner as joke or fake software! ALL WARNINGS A FAKE WARNINGS! +FIX+



All times are GMT +1. The time now is 11:17.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.