Results 1 to 11 of 11
  1. #1
    tylormartin's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    84
    Reputation
    10
    Thanks
    1
    My Mood
    Hungover

    Need help making a simple aimbot that is opened by .exe

    im sorta new to the programming thing. if anyone can help me make a simple aimbot that is opened with a .exe it'll help alot!
    i simplely have no clue how to do anything in the programming section.

  2. #2
    rawr im a tiger's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    On the edge of Sanity
    Posts
    238
    Reputation
    40
    Thanks
    1,041
    My Mood
    Angelic
    If you have no clue how to do anything here, you have no chance with an aimbot. How and learn how to code, then follow some basic hack tutorials and look at sources.

  3. #3
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    What you ask for is alot, if I interpreted right, you want to know how to code an aimbot with no programming knowledge?
    Learn a language for starters. Look at Jorndel tutorials, they're big help for beginners.
    (But I think it's harder to write an aimbot using C# or V.B.) And look at master131's esp/aimbot source posted in the Source Code section.

  4. #4
    tylormartin's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    84
    Reputation
    10
    Thanks
    1
    My Mood
    Hungover
    oh god.. you people make it seem like rocket science T_T

  5. #5
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Rocket science?

    Well then, do you understand more than 75% of this:
     

    Code:
    bool GetTagPos(Entity_T *pEnt,char *szTag,float flOut[3])
    {
    	WORD wTag=GetTagByName(szTag); 
    	if(!wTag) 
    		return false;
    
    	DWORD dwCall=0x00571790;
    
    	__asm
    	{
    		MOV ESI,pEnt;
    		MOVZX EDI,wTag;
    		PUSH flOut;
    		CALL dwCall;
    		ADD ESP,0x4
    	}
    
    	return true;
    }
    
    How about this:
    
    void ESP()
    {
    
    	float Screen[2];
    	float Origin[3];
    	char* cor = "^1";
    	w2s_t * calc = GetCalc();
    	for(int i = 0; i < ENTITIESMAX; i++)
    	{
    		if (Entities[i]->Type != ET_PLAYER)
    			continue;
    		if ((i < PLAYERMAX) && Entities[i]->Valid && (Entities[i]->IsAlive & 1) && !(Cg->ClientNumber == Entities[i]->ClientNumber))
    		{
    
    			cor = "^1";
    			for(int j = 0;j < 20;j++)
    			{
    				GetTagPos(Entities[i], Bones[j], BonePos[j]);	
    				if (w2s(0, calc, BonePos[j], Screen))
    				{
    					if(j==0 && CanBeKilled(Entities[i]->Origin)){
    						cor = "^3";
    					}
    					if (((Clients[i]->Team == 1) || (Clients[i]->Team == 2)) && (Clients[i]->Team == MyTeam))
    					{
    
    						if(j == 0)
    						{
    
    							DrawText(true,Screen[0], Screen[1]-10,pFont, WHITE, "^7[^2%s^7]", Clients[i]->Name);							
    							DrawText(true,Screen[0], Screen[1]-20,pFont, RED, "^7[^2%.2f^7]", PegarDistancia(RefDef->Origin, Entities[i]->Origin));
    						}
    					}
    					else
    					{
    
    						if(j == 0)
    						{							
    							DrawText(true,Screen[0], Screen[1]-10,pFont, WHITE, "^7[%s%s^7]",cor, Clients[i]->Name);
    							DrawText(true,Screen[0], Screen[1]-20,pFont, RED, "^7[^2%.2f^7]", PegarDistancia(RefDef->Origin, Entities[i]->Origin));							
    							Make3DBox(BonePos[j], GetBoxWidth(Entities[i]), -GetBoxHeight(Entities[i]), RED);
    						}
    
    					}
    
    				}
    			}
    		}
    	}
    }


    If you can honestly say you got more than 75% of that down, well then you're good to go. About 15% good. (InSaNe's ESP)
    Last edited by MarkHC; 10-27-2012 at 11:57 PM. Reason: Code tags for god's sake.

  6. #6
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    Just to make things clear here.. the code aobve is for injected ESP... The code for a External one ("that is opened with a .exe") is a lot simpler IMO


    CoD Minion from 09/19/2012 to 01/10/2013

  7. #7
    rawr im a tiger's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    On the edge of Sanity
    Posts
    238
    Reputation
    40
    Thanks
    1,041
    My Mood
    Angelic
    Quote Originally Posted by -InSaNe- View Post
    Just to make things clear here.. the code aobve is for injected ESP... The code for a External one ("that is opened with a .exe") is a lot simpler IMO
    External hacks are much more complex You don't have the engine to help you, and have to use the Windows API to gather data.

  8. The Following User Says Thank You to rawr im a tiger For This Useful Post:

    Kenshin13 (10-28-2012)

  9. #8
    tylormartin's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    84
    Reputation
    10
    Thanks
    1
    My Mood
    Hungover
    GEEZ........ thats.. sorta.. hard O_O

  10. #9
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    Quote Originally Posted by rawr im a tiger View Post
    External hacks are much more complex You don't have the engine to help you, and have to use the Windows API to gather data.
    Well... that sound simpler to me Have a mentioned that I don't like asm :P But I get your point


    CoD Minion from 09/19/2012 to 01/10/2013

  11. #10
    rawr im a tiger's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    On the edge of Sanity
    Posts
    238
    Reputation
    40
    Thanks
    1,041
    My Mood
    Angelic
    Quote Originally Posted by -InSaNe- View Post
    Well... that sound simpler to me Have a mentioned that I don't like asm :P But I get your point
    Maybe you should try to make one but this is getting super off-topic.

  12. #11
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    Quote Originally Posted by rawr im a tiger View Post
    Maybe you should try to make one but this is getting super off-topic.
    Already did Click me (but it was horrible tho)

    And I think this is kinda solved...

    /Closed


    CoD Minion from 09/19/2012 to 01/10/2013

Similar Threads

  1. [Help Request] Need Help Making dll injector
    By Borodulin in forum Crossfire Coding Help & Discussion
    Replies: 3
    Last Post: 09-10-2012, 03:33 PM
  2. [Help Request] Need help making perm binds
    By crenfro36 in forum Vindictus Help
    Replies: 1
    Last Post: 05-17-2011, 08:43 PM
  3. need help to get a aimbot
    By cavicious in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 12-26-2008, 09:09 AM
  4. I need help make a phishing site please.
    By coolio4sho in forum WarRock - International Hacks
    Replies: 20
    Last Post: 11-07-2008, 07:43 AM
  5. [Help how?]Need help making a WR hack please look.
    By mikelmao11 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 07-18-2008, 12:43 PM