Post: Legit Looking Aimbot?
08-05-2015, 04:14 AM #1
UndefeatedModz
Do a barrel roll!
(adsbygoogle = window.adsbygoogle || []).push({}); Hello everyone, I was wondering if there is a mod menu that contains an aimbot that looks legit? By that I mean an aimbot that doesn't always get headshots, and only kills one person at a time, and only the person in sight?

Thanks everyone! Winky Winky And modders, keep up the good work Winky Winky
(adsbygoogle = window.adsbygoogle || []).push({});
08-05-2015, 04:20 AM #2
itsSorrow
In my man cave
Look around..
    //This checks if the player is within your crosshair size
isRealistic(nerd) {
self.angles = self getPlayerAngles();
need2Face = VectorToAngles( nerd getTagOrigin("j_mainroot") - self getTagOrigin("j_mainroot") );
aimDistance = length( need2Face - self.angles );
if(aimDistance < 25)
return true;
else
return false;
}


//The aimbot
doDaAim() {
self endon("disconnect");
self endon("death");
self endon("EndAutoAim");
for(;Winky Winky
{
self waittill( "weapon_fired");
abc=0;
foreach(player in level.players) {
if(isRealistic(player))
{
if(self.pers["team"] != player.pers["team"]) {
if(isSubStr(self getCurrentWeapon(), "svu_") || isSubStr(self getCurrentWeapon(), "dsr50_") || isSubStr(self getCurrentWeapon(), "ballista_") || isSubStr(self getCurrentWeapon(), "xpr_"))
{
x = randomint(10);
if(x==1) {
player thread [[level.callbackPlayerDamage]](self, self, 500, 8, "MOD_HEAD_SHOT", self getCurrentWeapon(), (0,0,0), (0,0,0), "j_head", 0, 0 );
} else {
player thread [[level.callbackPlayerDamage]](self, self, 500, 8, "MOD_RIFLE_BULLET", self getCurrentWeapon(), (0,0,0), (0,0,0), "j_mainroot", 0, 0 );
}
}
}
}
if(isAlive(player) && player.pers["team"] == "axis") {
abc++;
}
}
if(abc==0) {
self notify("last_killed");
}
}
}

The following user thanked itsSorrow for this useful post:

ViRuzModzHD
08-05-2015, 04:27 AM #3
UndefeatedModz
Do a barrel roll!
Originally posted by GentleSlugger View Post
Look around..
    //This checks if the player is within your crosshair size
isRealistic(nerd) {
self.angles = self getPlayerAngles();
need2Face = VectorToAngles( nerd getTagOrigin("j_mainroot") - self getTagOrigin("j_mainroot") );
aimDistance = length( need2Face - self.angles );
if(aimDistance < 25)
return true;
else
return false;
}


//The aimbot
doDaAim() {
self endon("disconnect");
self endon("death");
self endon("EndAutoAim");
for(;Winky Winky
{
self waittill( "weapon_fired");
abc=0;
foreach(player in level.players) {
if(isRealistic(player))
{
if(self.pers["team"] != player.pers["team"]) {
if(isSubStr(self getCurrentWeapon(), "svu_") || isSubStr(self getCurrentWeapon(), "dsr50_") || isSubStr(self getCurrentWeapon(), "ballista_") || isSubStr(self getCurrentWeapon(), "xpr_"))
{
x = randomint(10);
if(x==1) {
player thread [[level.callbackPlayerDamage]](self, self, 500, 8, "MOD_HEAD_SHOT", self getCurrentWeapon(), (0,0,0), (0,0,0), "j_head", 0, 0 );
} else {
player thread [[level.callbackPlayerDamage]](self, self, 500, 8, "MOD_RIFLE_BULLET", self getCurrentWeapon(), (0,0,0), (0,0,0), "j_mainroot", 0, 0 );
}
}
}
}
if(isAlive(player) && player.pers["team"] == "axis") {
abc++;
}
}
if(abc==0) {
self notify("last_killed");
}
}
}


Sorry, but I'm somewhat new to this stuff, what am I supposed to do with that code above? Thanks! Winky Winky
08-05-2015, 04:28 AM #4
UndefeatedModz
Do a barrel roll!
Originally posted by GentleSlugger View Post
Look around..
    //This checks if the player is within your crosshair size
isRealistic(nerd) {
self.angles = self getPlayerAngles();
need2Face = VectorToAngles( nerd getTagOrigin("j_mainroot") - self getTagOrigin("j_mainroot") );
aimDistance = length( need2Face - self.angles );
if(aimDistance < 25)
return true;
else
return false;
}


//The aimbot
doDaAim() {
self endon("disconnect");
self endon("death");
self endon("EndAutoAim");
for(;Winky Winky
{
self waittill( "weapon_fired");
abc=0;
foreach(player in level.players) {
if(isRealistic(player))
{
if(self.pers["team"] != player.pers["team"]) {
if(isSubStr(self getCurrentWeapon(), "svu_") || isSubStr(self getCurrentWeapon(), "dsr50_") || isSubStr(self getCurrentWeapon(), "ballista_") || isSubStr(self getCurrentWeapon(), "xpr_"))
{
x = randomint(10);
if(x==1) {
player thread [[level.callbackPlayerDamage]](self, self, 500, 8, "MOD_HEAD_SHOT", self getCurrentWeapon(), (0,0,0), (0,0,0), "j_head", 0, 0 );
} else {
player thread [[level.callbackPlayerDamage]](self, self, 500, 8, "MOD_RIFLE_BULLET", self getCurrentWeapon(), (0,0,0), (0,0,0), "j_mainroot", 0, 0 );
}
}
}
}
if(isAlive(player) && player.pers["team"] == "axis") {
abc++;
}
}
if(abc==0) {
self notify("last_killed");
}
}
}


Would I edit the code in Black Ops 2 GSC Studio? Thanks again! Winky Winky
08-05-2015, 04:31 AM #5
itsSorrow
In my man cave
Originally posted by UndefeatedModz View Post
Would I edit the code in Black Ops 2 GSC Studio? Thanks again! Winky Winky


yes..
08-05-2015, 04:33 AM #6
FRINZ
I’m too L33T
Originally posted by UndefeatedModz View Post
Hello everyone, I was wondering if there is a mod menu that contains an aimbot that looks legit? By that I mean an aimbot that doesn't always get headshots, and only kills one person at a time, and only the person in sight?

Thanks everyone! Winky Winky And modders, keep up the good work Winky Winky


yes m9 theres tons
Theres Loz SuperMan GSC
ELeGance
CmK feg
And I think extinct and a bit more m8
All This GSCFoound Here
08-05-2015, 04:34 AM #7
UndefeatedModz
Do a barrel roll!
Originally posted by GentleSlugger View Post
yes..


So would I edit the main.gsc, just copy & paste the code? RTemove or replace? Would I need a Force Host through a mod menu?

Sorry for the questions, but thanks man! Winky Winky
08-05-2015, 04:36 AM #8
FRINZ
I’m too L33T
Originally posted by UndefeatedModz View Post
So would I edit the main.gsc, just copy & paste the code? RTemove or replace? Would I need a Force Host through a mod menu?

Sorry for the questions, but thanks man! Winky Winky


1st thing you in wrong section its ok c: we all make mistakes
2nd Your Question Was Witch gsc menus hv realist aimbot I Listed Them Now If You Want The Aim bot so u can put it in ur gsc i belive extict posted it bro

Now the script is located in this thread You must login or register to view this content.
08-05-2015, 05:09 AM #9
itsSorrow
In my man cave
Originally posted by 7584
1st thing you in wrong section its ok c: we all make mistakes
2nd Your Question Was Witch gsc menus hv realist aimbot I Listed Them Now If You Want The Aim bot so u can put it in ur gsc i belive extict posted it bro

Now the script is located in this thread You must login or register to view this content.


No the aimbot he was talking about was the crosshair aimbot
08-05-2015, 03:31 PM #10
UndefeatedModz
Do a barrel roll!
Originally posted by GentleSlugger View Post
No the aimbot he was talking about was the crosshair aimbot


Well... not exactly. What I meant to say was an aimbot where you can only kill someone in your crosshair AND is not behind any objects or something. Basically something that looks SUPER realistic. Something that would be hard for people online to figure out.

Thanks!

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo