Jump to content

Bounda

Active Members
  • Posts

    102
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Bounda's Achievements

Adventurer

Adventurer (3/7)

0

Reputation

  1. Thanks. The only reason it's in this resolution is because this computer basically sux until i get a new one.
  2. Are you in 640 by 480, its the only res it works in. /edit do you have custom keys? this uses the default ones.
  3. W00t good for people like me who don't feel like learning another programming language like lua, even though i will eventually get around to it (like i did for autoit)
  4. I love you. LOL not that way but ive been needing one of these for quite some time. /edit w00t 100 posts!
  5. Nope, i created this from nothing.
  6. I created this before i saw your post, besides, this isnt the thing i used it for.
  7. For those of you wanting to use this against Terrorists, here is a scrap. #include <Misc.au3> #include <array.au3> Global $on = 0;On/Off Variable Global $coords;Coords needed to click Hotkeyset("{F1}", "_power");On/Off Key Global $colorswitch = 0 While 1;Start Loop Sleep(50);Pause If $on = 1 Then If $colorswitch = 0 Then $colorswitch = 1 $coords = PixelSearch(60, 40, 600, 430, 0xBB0000, 5, 3);Search for ts in shadows If IsArray($coords) Then;Check if we found any MouseClick("Left", $coords[0], $coords[1] + 2, 2, 1);SHOOT! $colorswitch = 0 EndIf EndIf EndIf Sleep(100);Pause If $colorswitch = 1 Then If $on = 1 Then;Only search if its on. $colorswitch = 0 $coords = PixelSearch(60, 40, 600, 430, 0xFE0000, 5, 3);Search for ts If IsArray($coords) Then;Check if we found any MouseClick("Left", $coords[0], $coords[1] + 2, 2, 1);SHOOT! $colorswitch = 1 EndIf EndIf EndIf Wend Func _power();On/Off Function If $on = 1 Then $on = 0 Else $on = 1 EndIf EndFunc
  8. I already know a use for it Thankyou for contributing this script, ill be sure to use it soon By the way, your signature made me lol
  9. When it is set to 'on' it scans for and fires at Counter-Terrorist (only with the included models!) To turn on/off press F1 (off by default) I called this the GuideBot because it isn't really an aimbot and isn't perfect, you sorta have to add a few more shots along with the bot's to make it effective. Warnings and other crap.. I suggest you create a listen server (the text that says Create Server in the main screen) to use it. I havn't tested it in a public server, so even though its autoit, i dunno what to expect. I named it bikini.au3 just in case CS searches for a process that has aimbot in it's name. This is ONLY for terrorists right now, i will create a CT version soon too, i only created it so far to check if it works (and it does!) Models: http://www.megaupload.com/?d=YZLDUYY2 To use them place them in your steam/steamapps/youraccount/counter-strike source/cstrike/materials folder. Rename the old models folder if u have one. Source Code: #include <Misc.au3> #include <array.au3> Global $on = 0;On/Off Variable Global $coords;Coords needed to click Hotkeyset("{F1}", "_power");On/Off Key Global $colorswitch = 0 While 1;Start Loop Sleep(50);Pause If $on = 1 Then If $colorswitch = 0 Then $colorswitch = 1 $coords = PixelSearch(60, 40, 600, 430, 0x080A32, 5, 3);Search for cts in shadows If IsArray($coords) Then;Check if we found any MouseClick("Left", $coords[0], $coords[1] + 2, 2, 1);SHOOT! $colorswitch = 0 EndIf EndIf EndIf Sleep(100);Pause If $colorswitch = 1 Then If $on = 1 Then;Only search if its on. $colorswitch = 0 $coords = PixelSearch(60, 40, 600, 430, 0x0000FE, 70, 3);Search for cts If IsArray($coords) Then;Check if we found any MouseClick("Left", $coords[0], $coords[1] + 2, 2, 1);SHOOT! $colorswitch = 1 EndIf EndIf EndIf Wend Func _power();On/Off Function If $on = 1 Then $on = 0 Else $on = 1 EndIf EndFunc Please help me improve my code by giving updated and better code! /EDIT Make sure its in 640x480, otherwise youll have to change the pixelsearch area
  10. #include <Misc.au3> #include <array.au3> Global $on = 0 Global $coords Hotkeyset("{F1}", "_power") While 1 Sleep(500) If $on = 1 Then $coords = PixelSearch(10, 10, 640, 480, 0x0000FE, 20, 3) If IsArray($coords) Then MouseClick("Left", $coords[0], $coords[1], 1, 0) EndIf EndIf Wend Func _power() If $on = 1 Then $on = 0 Else $on = 1 EndIf EndFunc Func _exit() exit(0) EndFunc Help would be appreciated!
  11. zomgz i needed dis soo much
  12. *DOWNLOADS* so wat is this? i bring my mouse over a color, hit shift+# and then whenever i hit the number, i am brought to the first occurence of that color?
  13. i know but it used to and now it doesnt and idk wtf i did lol
  14. whenever i save a file, i have to manually type .au3 because theres nothing to select in the dropdown box.. help plz
×
×
  • Create New...