AutoHotkey Community

It is currently May 27th, 2012, 12:57 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 27 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: September 27th, 2011, 10:40 am 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
Rapid fire with text-to-speech (to announce mouse delay, help etc) for fullscreen. Also has a cross-hair, and no-recoil.

http://www.autohotkey.net/~magestickown ... idFire.ahk

Help (commands - in order of appearance):
    Application:
    CTRL + SHIFT + S: Temporarily suspends the application
    CTRL + SHIFT + E: Exits the application
    ALT + SHIFT + S: Toggles TTS (text-to-speech)
    CTRL + SHIFT + U: Checks for updates
    CTRL + SHIFT + RButton: Toggle right mouse button for rapid fire
    CTRL + SHIFT + LButton: Toggle left mouse button for rapid fire

    Mouse delay settings:
    CTRL + SHIFT + D: Says the current mouse delay through TTS.
    CTRL + SHIFT + UP: Increases the mouse delay.
    CTRL + SHIFT + DOWN: Decreases the mouse delay.

    Burst settings:
    CTRL + SHIFT + B: Toggles burst fire.
    ALT + SHIFT + B: Says the current burst amount
    ALT + SHIFT + UP: Increases the burst amount by one
    ALT + SHIFT + DOWN: Decreases the burst amount by one

    No recoil settings:
    CTRL + SHIFT + N: Toggles no recoil mode
    CTRL + SHIFT + M: Says the no recoil amount (idk what to call it lol)
    WIN KEY + SHIFT + UP: Increases the no recoil amount
    WIN KEY + SHIFT + DOWN: Decreases the no recoil amount

    Crosshair settings:
    CTRL + SHIFT + C: Toggles the crosshair
    WIN KEY + SHIFT + C: Opens the "change color" dialog.

    Misc. commands:
    CTRL + SHIFT + H: Help


I'm not saying it's any better than any one elses, I'm just posting it because I'm proud of myself :)

Low memory version:

Code:
enabled = true
F6::
if(enabled == "true") {
   enabled = false
} else {
   enabled = true
}
return

#if enabled == "true"
LButton::
   Loop {
      SetMouseDelay 30
      Click
      If(GetKeyState("LButton", "P")=0)
         break
   }


Last edited by xxOrpheus on October 25th, 2011, 8:50 pm, edited 35 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 27th, 2011, 12:49 pm 
Magestickown wrote:
I started AHK just tonight
Wow! It seems you are super fast learner! 8) Welcome to the forum.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: September 28th, 2011, 12:08 am 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
Anonymous wrote:
Magestickown wrote:
I started AHK just tonight
Wow! It seems you are super fast learner! 8) Welcome to the forum.

Thanks! You're not the first person to tell me that lol


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 28th, 2011, 12:16 am 
Offline

Joined: December 26th, 2010, 7:40 pm
Posts: 4172
Location: Awesometown, USA
Note: It is super easy to do COM in the current official AHK build (AHK_L)
You can get it on the top of the downloads page.
I can post code later, or you can look around the forums/rosettcode.

_________________
Autofire, AutoClick, Toggle, SpamWindow Control Tools
Recommended: AutoHotkey_L


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 28th, 2011, 1:43 am 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
nimda wrote:
Note: It is super easy to do COM in the current official AHK build (AHK_L)
You can get it on the top of the downloads page.
I can post code later, or you can look around the forums/rosettcode.

Am interested! Please post
EDIT:
Nevermind, I think I got it. Check OP for update.

In other news:
Updated, check OP.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 28th, 2011, 2:10 am 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
Updated, added burst fire. Not efficient, if you could point me in the direction of a better way, please do. :D


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 28th, 2011, 5:59 am 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
Updated:

    More efficient burst fire
    Fixed text-to-speech halt (temp..)
    Cleaned up code


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 28th, 2011, 8:17 pm 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
I wanna try to make an aim-bot to implement in this - Should I even consider it?

EDIT:

Updated:
    Fixed text-to-speech (Thanks Elgin!)
    Added comments for easier understanding
    Cleaned code up some more
    BASIC BASIC BASIC aimer (omg don't use until it's done it's hideous)


EDIT 2:

Sorry for quad post - Just really eager to keep this thread alive


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: September 30th, 2011, 9:34 am 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
updated heavily - consider it :D


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 1st, 2011, 7:21 am 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
Updated to v1.40.

Includes:

Crosshair
Crosshair color adjustment


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 3rd, 2011, 6:41 am 
Offline

Joined: February 19th, 2010, 6:11 pm
Posts: 150
Location: California
what games does this work for, and how do you prevent recoil. I am currious


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 4th, 2011, 3:13 pm 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
KooKsTeR wrote:
what games does this work for, and how do you prevent recoil. I am currious


Pretty much any game

games I've test it on that it works:
Red Faction
Halo 1 & 2
Any CoD
Left 4 Dead
Half Life

The anti-recoil just moves your mouse down while you're shooting, nothing special.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 8th, 2011, 11:46 pm 
Offline

Joined: September 13th, 2011, 7:16 pm
Posts: 13
I hope you get banned from the games you play using this :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 16th, 2011, 8:00 pm 
Offline

Joined: September 27th, 2011, 8:34 am
Posts: 124
Location: Canada, British Columbia
hyper_ wrote:
I hope you get banned from the games you play using this :)
]

Lol I only use it on single player :o

Just making it as a learning experience.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: February 2nd, 2012, 7:02 pm 
Offline

Joined: February 2nd, 2012, 6:01 pm
Posts: 1
Location: Sverige
pls help dont know how to use pls:(


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 27 posts ]  Go to page 1, 2  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bon, sks and 23 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group