Index
Would you like to react to this message? Create an account in a few clicks or log in to continue.

AHK Minecraft Script

3 posters

Go down

AHK Minecraft Script Empty AHK Minecraft Script

Post by Mr_Pleco 1/5/2011, 6:41 pm

Ctrl Q to toggle mining on and off (holds down left mouse button)
Shift to toggle crouch on and off

Code:

#NoEnv
SendMode Input
SetWorkingDir %A_ScriptDir%

; Toggle crouch
$Shift::
IfWinActive Minecraft
{
    if not crouching
    {
        Send {Shift down}
        crouching = 1
    } else {
        Send {Shift up}
        crouching = 0
    }
}
return

^q::
IfWinActive Minecraft
{
    if not clicking
    {
        click down
        clicking = 1
    } else {
        click up
        clicking = 0
    }
}
Mr_Pleco
Mr_Pleco
Grandmaster (2000 posts)
Grandmaster (2000 posts)


Back to top Go down

AHK Minecraft Script Empty Re: AHK Minecraft Script

Post by spiderspud 4/5/2011, 1:47 am

i use mousekeys, then i press the 0 and it holds down the button and i shift to mine.
spiderspud
spiderspud
Tier 4 (500 posts)
Tier 4 (500 posts)


Back to top Go down

AHK Minecraft Script Empty Re: AHK Minecraft Script

Post by Mr_Pleco 4/5/2011, 2:13 am

Ctrl Q toggles on mining and hitting it again toggles off mining. So you don't need to hold down anything...

SHIFT works the same way for crouching so you can built platforms and whatever.
Mr_Pleco
Mr_Pleco
Grandmaster (2000 posts)
Grandmaster (2000 posts)


Back to top Go down

AHK Minecraft Script Empty Re: AHK Minecraft Script

Post by Alex18 26/5/2011, 3:35 pm

How do i put this script into my minecraft?
Alex18
Alex18
Forum Addict (750 posts)
Forum Addict (750 posts)


Back to top Go down

AHK Minecraft Script Empty Re: AHK Minecraft Script

Post by Mr_Pleco 26/5/2011, 3:38 pm

Alex18 wrote:How do i put this script into my minecraft?

Download and install autohotkey: http://www.autohotkey.com/download/

Save the script in notepad as a .ahk file

Double click the script to run, you'll see a little green icon in your taskbar after you do.
Mr_Pleco
Mr_Pleco
Grandmaster (2000 posts)
Grandmaster (2000 posts)


Back to top Go down

AHK Minecraft Script Empty Re: AHK Minecraft Script

Post by Alex18 26/5/2011, 3:39 pm

Cheers Smile will be useful Smile
Alex18
Alex18
Forum Addict (750 posts)
Forum Addict (750 posts)


Back to top Go down

AHK Minecraft Script Empty Re: AHK Minecraft Script

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum