Author Topic: Aimbot / Aim assist.  (Read 5452 times)

0 Members and 1 Guest are viewing this topic.

MrMedic

  • MasstKer
  • ********
  • Posts: 8900
  • programmer/dev/software engineer
    • View Profile
Aimbot / Aim assist.
« on: May 22, 2012, 03:07:02 pm »
I was going to delete this but thought I may as well share it rather than delete it for learning purposes ,
it may help someone so here is an aimbot , have fun.



Code: [Select]
if (isnil "AIMBOTAIMASSIST" ) then {AIMBOTAIMASSIST=0;};

[] spawn {
while {AIMBOTAIMASSIST==1} do
{
sleep 0.1;

_tx=0;
_ty=0;
_direction=0;
_ttx=0;
_tty=0;
_posbaddy=0;
_name=0;
_side=0;
_gothim=0;
_dst=0;
_olddist=200;
AIMBOTTARGETx =0;
{if (player !=_x  && !isplayer _x && ((side _x) getFriend (side Player) < 0.6) && vehicle _x isKindOf "Man" && alive _x) then {
//{if (player !=_x  && !isplayer _x && ((side _x) getFriend (side Player) < 0.6) && alive _x) then { // add if you wish to kill anything not just men
_posbaddy=getpos (vehicle _x);
_dst=round (_posbaddy distance (vehicle player));
_pos=worldToScreen _posbaddy;
if ( (_pos select 0 > 0.40 && _pos select 0 < 0.70 && _pos select 1 > 0.40 && _pos select 1 < 0.70) ) then
{
    _gothim=1;
    //_olddist=_dst; add if you wish to kill nearest target only to cross hair
    _tx = vehicle _x;
};

};
sleep 0.01;} forEach allUnits;

if (_gothim==1) then{
AIMBOTTARGETx =_tx;
hintsilent "got target";
};
_olddist=500;
};
sleep 1;

};



Create file named Aimbot.sqf then Paste code above into Aimbot.sqf then save Aimbot.sqf.


-- -- ------ 2 -------------


Create file name it InitBullet.sqf copy code below , paste into InitBullet.sqf , save as InitBullet.sqf.

Code: [Select]
_b = _this select 0;

_bullet = nearestobject [player, _b];
if (AIMBOTTARGETx != vehicle player) then {
_bullet setpos [getpos AIMBOTTARGETx select 0,getpos AIMBOTTARGETx select 1,(getpos AIMBOTTARGETx select 2)+random 0.8];
};


----- 3 ------

create file AimbotOn.sqf

paste below code into file , save file as AimbotOn.sqf.


Code: [Select]
if (isnil "Dammagek") then {Dammagek=0;};

if (Dammagek==0) then
{
player addeventhandler ["fired", {[_this select 4] exec "\InitBullet.sqf"}];
Dammagek=1;
[] execvm "\Aimbot.sqf";
hint "Aimbot ON!!!";
}
else
{
player removealleventhandlers "fired";
Dammagek=0;
hint "AImbot is off!";
};


Call like this

[] execvm 'AimbotOn.sqf';
---------

As is it , this will kill any enemy target on the screen ,

Though it can be easily modified to kill anything close to you ( team mates if you wish , zombies , rabbits , sheep etc ) by changing a few things if you want it to do that.


Instructions to use : Fire your weapon they die.

Aimbot / aim assist , credits: Mrmedic , everyone who ever opend an sqf and changed something , Bis for making the game engine.



« Last Edit: May 22, 2012, 03:36:07 pm by MrMedic »
EnCoded Message: i3iy9yl8kr2xf3g2Txs3pr6ye3ya7jg5ty2z

https://www.youtube.com/watch?v=62_7-AYfdkQ
you need a paypal account for the private versions.

Website:
http://bit.ly/medic101

Teamspeak 3: 85.236.101.5:10157

Toxicated

  • Intentional Cheater
  • **
  • Posts: 33
    • View Profile
Re: Aimbot / Aim assist.
« Reply #1 on: May 22, 2012, 03:32:20 pm »
Thanks!

Buster

  • Klass Klown
  • ***
  • Posts: 295
  • Kool Kat
    • View Profile
Re: Aimbot / Aim assist.
« Reply #2 on: May 22, 2012, 03:48:06 pm »
Thanks Medic  :icon_thumbsup   :icon_devil

s0ybean

  • Intentional Cheater
  • **
  • Posts: 33
    • View Profile
Re: Aimbot / Aim assist.
« Reply #3 on: May 22, 2012, 08:08:00 pm »
Cheers Medic, another thoughtful share.

Fishgun123

  • Online Villain
  • ***
  • Posts: 223
    • View Profile
Re: Aimbot / Aim assist.
« Reply #4 on: May 22, 2012, 08:21:26 pm »
when i put exec whatever in cheatengine as text it doesn't come up.

Fishgun123

  • Online Villain
  • ***
  • Posts: 223
    • View Profile
Re: Aimbot / Aim assist.
« Reply #5 on: May 22, 2012, 09:13:44 pm »
Where do I EVEN PUT THE sqf FILES

arcn

  • I leak others hard work...do u trust me?
  • Relentless Teamkiller
  • **
  • Posts: 83
    • View Profile
Re: Aimbot / Aim assist.
« Reply #6 on: May 22, 2012, 09:14:15 pm »
Where do I EVEN PUT THE sqf FILES

 :icon_o_o im speachless..

Fishgun123

  • Online Villain
  • ***
  • Posts: 223
    • View Profile
Re: Aimbot / Aim assist.
« Reply #7 on: May 22, 2012, 09:19:47 pm »
Its in my vojtect folder;

i tried this

[_this,"onload"] execvm "\Vojtec\AimbotOn.sqf";
and doesnt work

MrMedic

  • MasstKer
  • ********
  • Posts: 8900
  • programmer/dev/software engineer
    • View Profile
Re: Aimbot / Aim assist.
« Reply #8 on: May 22, 2012, 10:45:45 pm »
when i put exec whatever in cheatengine as text it doesn't come up.

 :icon_o_o

Where do I EVEN PUT THE sqf FILES

Are you joking or being serious ?.


Its in my vojtect folder;

i tried this

[_this,"onload"] execvm "\Vojtec\AimbotOn.sqf";
and doesnt work

Straight up here , you need to go and read up on how to execute an sqf file or in the very least get some basic idea of what your are doing , the way you are going you will guaranteed get your self banned. Not for using the Aimbot but for blindly trying to do things when you obviously have no idea at all about what you are doing.

I am not trying to run you down ,  you really need to read up and get the basics down before you try to hak this game.
« Last Edit: May 22, 2012, 10:51:14 pm by MrMedic »
EnCoded Message: i3iy9yl8kr2xf3g2Txs3pr6ye3ya7jg5ty2z

https://www.youtube.com/watch?v=62_7-AYfdkQ
you need a paypal account for the private versions.

Website:
http://bit.ly/medic101

Teamspeak 3: 85.236.101.5:10157

Fishgun123

  • Online Villain
  • ***
  • Posts: 223
    • View Profile
Re: Aimbot / Aim assist.
« Reply #9 on: May 22, 2012, 11:06:02 pm »
Okay sorry, but I thought you execute a file using cheat engine?

MrMedic

  • MasstKer
  • ********
  • Posts: 8900
  • programmer/dev/software engineer
    • View Profile
Re: Aimbot / Aim assist.
« Reply #10 on: May 22, 2012, 11:08:33 pm »
You can but you would need to re-path the files etc , best you read up and get the fundamentals first.

But its entirely up to you.

I will be releasing a complete bypass / cheat soon , so if I were you I would wait.
EnCoded Message: i3iy9yl8kr2xf3g2Txs3pr6ye3ya7jg5ty2z

https://www.youtube.com/watch?v=62_7-AYfdkQ
you need a paypal account for the private versions.

Website:
http://bit.ly/medic101

Teamspeak 3: 85.236.101.5:10157

Fishgun123

  • Online Villain
  • ***
  • Posts: 223
    • View Profile
Re: Aimbot / Aim assist.
« Reply #11 on: May 22, 2012, 11:31:33 pm »
Oh Okay, well I could atleast try and do it but Ingame I got it working because I added the 3 files with badger, vojtec. it said

Aimbot!! ON! But when I shot I don't think it snapped to anyone sadly. I really thought I had it.

MrMedic

  • MasstKer
  • ********
  • Posts: 8900
  • programmer/dev/software engineer
    • View Profile
Re: Aimbot / Aim assist.
« Reply #12 on: May 22, 2012, 11:44:06 pm »
 :icon_o_o :icon_laugh

Someone help the poor guy he is struggling , but at least he is trying.

I'm busy with other things Fish or I would write you a full tutorial.
EnCoded Message: i3iy9yl8kr2xf3g2Txs3pr6ye3ya7jg5ty2z

https://www.youtube.com/watch?v=62_7-AYfdkQ
you need a paypal account for the private versions.

Website:
http://bit.ly/medic101

Teamspeak 3: 85.236.101.5:10157

Fishgun123

  • Online Villain
  • ***
  • Posts: 223
    • View Profile
Re: Aimbot / Aim assist.
« Reply #13 on: May 22, 2012, 11:51:25 pm »
Ah ok well thanks anyway.

Fishgun123

  • Online Villain
  • ***
  • Posts: 223
    • View Profile
Re: Aimbot / Aim assist.
« Reply #14 on: May 23, 2012, 12:51:49 am »
But it wouldn't take that long would it?
also ingame it saids the first time i excute AimbotOn it saids error script/ the it saids on the right hand corner aimbot ON!!