Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
aim ASSIST
#1
Hey guys, there is this aimbot code that locks on to heads GREATLY, is there a way to loosen the aim lock? I want an aim assist thing, like consoles for easier QS.

heres the mod:

Code:
Aimassist()
{
        self endon( "death" );
        self endon( "disconnect" );

        for(;;)
        {
                wait 0.05;
                aimAt = undefined;
                for ( i = 0; i < get_players().size; i++ )
                {
                        player = get_players()[i];
                        if(player == self)
                                continue;
                        if(!isAlive(player))
                                continue;
                        if(level.teamBased && self.pers["team"] == player.pers["team"])
                                continue;
                        if( isDefined(aimAt) )
                        {
                                if( closer( self getTagOrigin( "j_head" ), player getTagOrigin( "j_head" ), aimAt getTagOrigin( "j_head" ) ) )
                                        aimAt = player;
                        }
                        else
                                aimAt = player;
                }
                if( isDefined( aimAt ) )
                        self setplayerangles( VectorToAngles( ( aimAt getTagOrigin( "j_head" ) ) - ( self getTagOrigin( "j_head" ) ) ) );
        }
}
also can you make it to lock on anywhere, not head, hence the aim ASSIST, not aimbot. Thanks.[/code]
Reply



Possibly Related Threads…
Thread Author Replies Views Last Post
  [Request] aim assist (not aimbot) 7akeD0wN 3 2,606 03-24-2012, 09:14
Last Post: surtek
Exclamation Help With KILLSTREAK'S: variable true Please assist :) rotceh_dnih 19 8,556 04-05-2011, 16:01
Last Post: Tomsen1410

Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum Powered By MyBB, Theme by © 2002-2024 Melroy van den Berg.