Results 1 to 9 of 9
  1. #1
    wertoskiller's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Fiore
    Posts
    231
    Reputation
    10
    Thanks
    31
    My Mood
    Amazed

    My Aimbot source code!

    heres an tut

    legify lolz2much or all other coder pls make it for me

    ; pixel search bot example
    ; include the misc UDF library
    ; UDF = user defined Function
    #include <Misc.au3>

    ;----- set the hotkeys ------;
    HotKeySet("{f3}", "chosecolor")
    ; set the escape button to
    ; the exit function
    HotKeySet("{esc}", "_exit")
    HotKeySet("{f5}", "start")
    HotKeySet("{f6}", "stop")

    ; declare the variable color to be
    ; used globaly
    Global $color
    ; declare ON globaly and set it
    ; to false(off)
    Global $ON = False




    While 1
    Sleep(30); dont fuck the CPU
    ; if the on is set to true
    If $ON = True Then
    ; this is the pixel search function
    ; the last parameter (40) is the
    ; shade variation
    ; the other parameters are the
    ; pixel search area
    ; change them so they fits your needs
    $coord = PixelSearch(0, 0, 400, 400, $color, 40)
    ; if the return of coord is an array
    ; which means a pixel was found
    If IsArray($coord) = 1 Then
    ; left click on the pixel
    MouseMove($coord[0],$coord[1])
    MouseClick("left",$coord[0],$coord[1])
    EndIf
    EndIf
    WEnd








    ; chose color function
    Func chosecolor()
    ; this will display a color chose window
    ; the chosen color will be stored in the
    ; variable $color
    $color = _ChooseColor(2, 0x0080C0, 2, "")
    MsgBox(0,'',$color)
    EndFunc ;==>chosecolor


    ; func extit
    Func _exit()
    ; simply exits the script
    Exit
    EndFunc ;==>_exit

    ;start func
    Func start()
    ; set the variable to true
    $ON = True
    EndFunc ;==>start

    ;start func
    Func stop()
    ; set the variable false
    $ON = False
    EndFunc ;==>stop
    Last edited by wertoskiller; 07-27-2009 at 04:39 PM.

  2. The Following User Says Thank You to wertoskiller For This Useful Post:

    combatarmsKill (07-27-2009)

  3. #2
    richdude212's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Tampa, FL
    Posts
    352
    Reputation
    10
    Thanks
    56
    My Mood
    Inspired
    And what language is this?
    [IMG]https://i516.photobucke*****m/albums/u330/richdude212-2.jpg[/IMG]


    [IMG]https://i516.photobucke*****m/albums/u330/richdude212/leet.gif[/IMG]

    Get NX Cash For Completing Offers Here! (will redirect)


    Remember to press when people help you!
    Not bad for $14.99 a month...

  4. #3
    wertoskiller's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Fiore
    Posts
    231
    Reputation
    10
    Thanks
    31
    My Mood
    Amazed
    english u bob its an simple aimbot tut i remove it on 1 minute!!!

    and search for an script programm

  5. #4
    !~_Creedy_~!'s Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Photoshop CS4
    Posts
    798
    Reputation
    15
    Thanks
    156
    My Mood
    Cool
    dont trust it, it's a source now can you MAKE IT TO A .EXE so we can use

  6. #5
    wertoskiller's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Fiore
    Posts
    231
    Reputation
    10
    Thanks
    31
    My Mood
    Amazed
    how i can make it to an exe?

  7. #6
    Corndog's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Salem, NH
    Posts
    10,138
    Reputation
    526
    Thanks
    2,909
    lol...source code means its code...like this. this is source code.

    Code:
    // mad Lib Game.cpp : Defines the entry point for the console application.
    //
    
    #include "stdafx.h"
    
    
    int _tmain(int argc, _TCHAR* argv[])
    {
    	return 0;
    }
    #include <iostream>
    #include <string>
    using namespace std;
    
    int main(){
    
    	char selection;
    	string noun, place, sword, verb, noun2, verb2, adj, adj2, num, adj3, adverb, adj4, adj5, num2, motime, adj6, adj7, adj8, noun3, num3, num4;
    
    	cout << "Hello. Welcome to Connor's MadLib Game. Would you like to play? (y/n):";
    	cin >> selection;
    
    	if (selection != 'y'){
    		system("exit");
    	}
    	else {
    	cout << "Enter a Place: ";
    	cin >> place;
    	cout << "Enter a Noun: ";
    	cin >> noun;
    	cout << "Enter a Silly Word: ";
    	cin >> sword;
    	cout << "Enter a Verb: ";
    	cin >> verb;
    	cout << "Enter another Noun: ";
    	cin >> noun2;
    	cout << "Enter another Verb: ";
    	cin >> verb2;
    	cout << "Enter an Adjective: ";
    	cin >> adj;
    	cout << "Enter another Adjective: ";
    	cin >> adj2;
    	cout << "Enter a Number: ";
    	cin >> num;
    	cout << "Enter another Adjective: ";
    	cin >> adj3;
    	cout << "Enter an Adverb: ";
    	cin >> adverb;
    	cout << "Enter another Adjective: ";
    	cin >> adj4;
    	cout << "Enter another Adjective: ";
    	cin >> adj5;
    	cout << "Enter another Number: ";
    	cin >> num2;
    	cout << "Enter a Measurement of Time: ";
    	cin >> motime;
    	cout << "Enter another Adjective: ";
    	cin >> adj6;
    	cout << "Enter another Adjective: ";
    	cin >> adj7;
    	cout << "Enter another Adjective: ";
    	cin >> adj8;
    	cout << "Enter another Noun: ";
    	cin >> noun3;
    	cout << "Enter another Number: ";
    	cin >> num3;
    	cout << "Enter another Number: ";
    	cin >> num4;
    
    	cout << "Is your " << noun << " making a mess of your " << place << endl << "? Try " << sword << "! It will " << verb << " your whole " << noun2 << " and " << verb2 << " to unbelievable levels! Watch, as we demonstrate, the " << adj << " capabilities of this " << adj2 << " product! Everyone should have at least " << num << " of these!" << endl; 
    	cout << "To order, call the number on your screen. " << adj3 << " phone attendants will " << adverb << " take your request. " << adj4 << " and " << adj5 << " service will be yours! Call within the next " << num2 << " " << motime << ", and you will receive a " << adj6 << ", " << adj7 << ", "<< adj8 << " " << noun3 << " as a bonus, absolutely free for an additional value of " << num3 << " dollars, plus shipping and handling cost of " << num4 << " dollars. Act Now!!" << endl; 
    	}
    	system ("pause");
    	return 0;
    }

    thats simple source code for a C++ program (its a mad lib game).

    i am a beginner at c++...i made it.


    you compile source code using a compiler, that creates an .EXE file that you run.

  8. #7
    !~_Creedy_~!'s Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Photoshop CS4
    Posts
    798
    Reputation
    15
    Thanks
    156
    My Mood
    Cool
    LMAO you make the source code and dont know how to make to a executable file, wow this isn't yours, you leeched LIAR!

  9. #8
    Corndog's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Salem, NH
    Posts
    10,138
    Reputation
    526
    Thanks
    2,909
    i know...wat a choob.


    he also copied the hacks that i leeched, and posted them again (WITH A VIRUS SCAN THAT IS EVEN WORSE...somehow)

  10. #9
    Obama's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    The Black house
    Posts
    22,195
    Reputation
    870
    Thanks
    6,076
    My Mood
    Cool
    Stick "your" source code up ur arse

    /Close

  11. The Following 2 Users Say Thank You to Obama For This Useful Post:

    !~_Creedy_~! (07-27-2009),[MPGH]Disturbed (07-27-2009)

Similar Threads

  1. Aimbot Source Code
    By Augs in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 43
    Last Post: 06-07-2010, 09:13 PM
  2. [Source Code] Cross Fire Aimbot Source Code
    By lol~lol in forum CrossFire Hacks & Cheats
    Replies: 30
    Last Post: 02-20-2010, 12:38 PM
  3. [Source Code] Aimbot source code with video
    By maxius12 in forum CrossFire Hacks & Cheats
    Replies: 37
    Last Post: 02-18-2010, 06:07 PM
  4. [Source Code] Aimbot source code with video
    By maxius12 in forum CrossFire Hacks & Cheats
    Replies: 5
    Last Post: 02-18-2010, 04:47 PM
  5. Visual Basic Aimbot Source Code
    By whitten in forum Visual Basic Programming
    Replies: 19
    Last Post: 08-05-2009, 10:39 AM

Tags for this Thread