• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 22:29
CET 04:29
KST 12:29
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
[BSL21] Ro.16 Group Stage (C->B->A->D)1Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win1RSL Season 3: RO16 results & RO8 bracket13Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge2[TLMC] Fall/Winter 2025 Ladder Map Rotation14
StarCraft 2
General
Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win SC: Evo Complete - Ranked Ladder OPEN ALPHA Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge RSL Season 3: RO16 results & RO8 bracket RSL Season 3 - Playoffs Preview
Tourneys
RSL Revival: Season 3 $5,000+ WardiTV 2025 Championship StarCraft Evolution League (SC Evo Biweekly) Constellation Cup - Main Event - Stellar Fest 2025 RSL Offline Finals Dates + Ticket Sales!
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death
Brood War
General
Data analysis on 70 million replays 2v2 maps which are SC2 style with teams together? [BSL21] Ro.16 Group Stage (C->B->A->D) soO on: FanTaSy's Potential Return to StarCraft What happened to TvZ on Retro?
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Tie Breaker - Group B - Sun 21:00 CET [BSL21] RO16 Tie Breaker - Group A - Sat 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft Current Meta How to stay on top of macro? PvZ map balance
Other Games
General Games
Should offensive tower rushing be viable in RTS games? Nintendo Switch Thread Stormgate/Frost Giant Megathread Clair Obscur - Expedition 33 Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas
Community
General
YouTube Thread Artificial Intelligence Thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread US Politics Mega-thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
The Health Impact of Joining…
TrAiDoS
Dyadica Evangelium — Chapt…
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1310 users

[T]ip Speeding up the keyboard repeat rate

Forum Index > StarCraft 2 Strategy
Post a Reply
sixzeros
Profile Joined December 2010
72 Posts
Last Edited: 2011-02-05 18:49:41
February 05 2011 14:47 GMT
#1
A standard windows system limits the keyboard repeat rate to just 31 chars per second, this would mean that just holding your D key down for example will limit your production rate to 31 drones in a second.

In some top level replays I noticed that some players are able to produce multiple drones from multiple larvae within milliseconds of each other, whereas my replays had a noticeable delay between each drone even though I was at the max keyboard repeat rate. Could they really be pounding the keys at 100+ beats per second? Or was it some kind of gaming keyboard like a razer?

Which led me to investigate how we could speed up our keyboard repeat rate on a standard keyboard.

This AUTOHOTKEY script below tries to raise your keyboard repeat rate beyond the 31cps limit to 100cps


RepeatIt:

hyperFast:=false ;set to true if you want to put this into overdrive

if(lastHotkey!=""){
HotKey, %lastHotkey%,On
}
HotKey, %A_ThisHotKey%,Off
lastHotkey:=A_ThisHotKey
SendEvent,{%A_ThisHotKey%}
Sleep, 150 ;This is the delay in MS before the key starts to repeat
Loop
{
GetKeyState, Go, %A_ThisHotKey%,P
If (Go="D")
{
SendEvent {%A_ThisHotKey%}
if(hyperFast){
SendEvent {%A_ThisHotKey%}{%A_ThisHotKey%}{%A_ThisHotKey%}{%A_ThisHotKey%}
}
Sleep,10 ;Lower = Faster; Higher = Slower.
}
Else
Break
}
Hotkey,%A_ThisHotKey%,On
return

;you can add more keys here by placing the name of the key and two colons on a new line ->

u::
m::
a::
l::
d::
b::
e::
s::
z::
i::
r::
t::
v::
gosub RepeatIt
Hotkey,%A_ThisHotKey%,On
return


You'll need to go to the autohotkey main site, download and install autohotkey.

Once installed and running there will be a green [H] icon in your tray. Autohotkey also provides a free text editor sciTE which is a separate install and download to the main code. If sciTe is installed then you can just right click the autohotkey tray icon and select 'edit this script', and it will bring up the default code..

Just copy and paste the code above into the default code and save it out.

Restart autohotkey, by right clicking the green tray icon and select 'Reload this Script' and it should activate this code.

To test it, just open any text window, hold the the Q key say.. which should be at normal speed then hold down the D key and check the difference.

If you want to turn it off, select the green icon in your tray and just select 'exit'.

There may be problems with windows 7 permissions requiring you to put both starcraft and autohotkey into administrator mode so that they can work with each other. And the key repeat can be so fast outside of the game that typing in a forum for example is near impossible. lollllllllllllllllllllllllll
DiranMan
Profile Joined January 2011
25 Posts
February 05 2011 15:00 GMT
#2
I was looking for a way to increase my keyboard repeat rate just yesterday!
Very nice of you to find a way.
But please explain more (in details) where are we gona put this script and how to change back if we have too.
thank you very much in advance.
sixzeros
Profile Joined December 2010
72 Posts
February 05 2011 15:09 GMT
#3
Ill make a bit of an edit for it...
RainWhisper
Profile Joined May 2009
United Arab Emirates333 Posts
February 05 2011 15:18 GMT
#4
Omg, this is effin-tastic. Could really use end game , especially againt toss ifind myself alternating between spamming r so fast or just pressing and holding
Hi can i get one McGracken please?
Zarahtra
Profile Joined May 2010
Iceland4053 Posts
February 05 2011 15:57 GMT
#5
#1 off, isn't using 3rd party programs forbidden?

#2 wouldn't you be totally boned when you want to produce like 10 sets of lings and 10 drones? I don't know the exact time that it takes me to press a button, but I'm guessing it takes me more than 0.01s, so going to 100 repeats a sec would prob make 2 of stuff when I wanted to make 1...
AndyG
Profile Joined July 2010
United States22 Posts
February 05 2011 16:00 GMT
#6
On February 06 2011 00:57 Zarahtra wrote:
#1 off, isn't using 3rd party programs forbidden?

#2 wouldn't you be totally boned when you want to produce like 10 sets of lings and 10 drones? I don't know the exact time that it takes me to press a button, but I'm guessing it takes me more than 0.01s, so going to 100 repeats a sec would prob make 2 of stuff when I wanted to make 1...



"Sleep, 150 ;This is the delay in MS before the key starts to repeat"

^^^There has to be a distinct "hold" on the key before it begins to repeat.
ChickenLips
Profile Blog Joined May 2010
2912 Posts
February 05 2011 16:09 GMT
#7
im testing it atm

works pretty well but i dont ttttthink ()it has a significaant impact
❤Ƹ̵̡Ӝ̵̨̄Ʒ✿
Somnolence
Profile Joined August 2010
Lithuania127 Posts
February 05 2011 16:14 GMT
#8
On February 06 2011 00:57 Zarahtra wrote:
#1 off, isn't using 3rd party programs forbidden?


Yep, didn''t keyboard macros got some people banned already?
sixzeros
Profile Joined December 2010
72 Posts
February 05 2011 17:18 GMT
#9
I doubt that running software to get a faster mouse or keyboard driver is going to get you banned, but if you start to get silly and start making multi key sequences then yeah, you're asking to get banned.

Questions of morality, good sportsmanship and fairness aside, I think this particular idea falls under the category of say, a faster mouse (razer 3000dpi), a faster keyboard (razer mauraders 1000hz polling), a faster video system (software acceleration via Riva Tuner), a faster processor through software overclocking.

All that being said, there must be some kind of absolute key input limit built into starcraft anyway, so it is possible that there is only a 31 keys per second limit or possibly that you are limited to your actual video frame rate (fps).
DiranMan
Profile Joined January 2011
25 Posts
February 06 2011 23:27 GMT
#10
I copyed the script and got error on "HotKey, %A_ThisHotKey%,Off"
can you just post the script maybe in a different way so it works?
codewarrior
Profile Joined April 2010
United States52 Posts
February 06 2011 23:29 GMT
#11
Can't you just change this with the "Repeat Delay" and "Repeat Rate" settings in the Windows Control Panel??
In1t4themoney
Profile Joined April 2010
Germany77 Posts
Last Edited: 2011-02-06 23:34:49
February 06 2011 23:34 GMT
#12
If someone finds a windows glitch or setting which overrides the actual max-repeat-speed on windows and not this 3rd party program which will obviously be considered as a CHEAT let us know..
asdfghjkl
In1t4themoney
Profile Joined April 2010
Germany77 Posts
Last Edited: 2011-02-06 23:57:40
February 06 2011 23:46 GMT
#13
I did some quick research:

1. Open regedit
2. HKEY_CURRENT_USER->Control Panel->Keyboard
3. Change Keyboardspeed to whatever you like


...Max is usually 31.. I tested it with 100 but I'm not quite sure if it worked..
If you set it to ultra slow (like 3) it works.


edit: 31 is considered to be maximum.
asdfghjkl
Xanbatou
Profile Blog Joined February 2010
United States805 Posts
February 07 2011 02:37 GMT
#14
Yeah, I'd be pretty interested in this if someone finds a way of doing this without using a third-party program.
Please log in or register to reply.
Live Events Refresh
OSC
23:00
OSC Elite Rising Star #17
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nathanias 140
StarCraft: Brood War
Britney 15920
Calm 2440
Nal_rA 1435
Artosis 610
ggaemo 47
Noble 45
Icarus 0
Dota 2
monkeys_forever185
NeuroSwarm110
LuMiX0
League of Legends
JimRising 722
Trikslyr46
Super Smash Bros
hungrybox1255
C9.Mang0458
Other Games
summit1g9340
WinterStarcraft404
Maynarde147
missharvey41
RuFF_SC231
fpsfer 2
Organizations
Other Games
gamesdonequick1152
Dota 2
PGL Dota 2 - Main Stream338
Other Games
BasetradeTV130
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• davetesta78
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• RayReign 12
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota22031
League of Legends
• Doublelift4400
• Rush202
Upcoming Events
Wardi Open
8h 31m
PiGosaur Cup
21h 31m
Replay Cast
1d 5h
Wardi Open
1d 8h
OSC
1d 9h
Tenacious Turtle Tussle
1d 20h
The PondCast
2 days
Replay Cast
2 days
OSC
3 days
LAN Event
3 days
[ Show More ]
Replay Cast
3 days
Replay Cast
4 days
Sparkling Tuna Cup
5 days
Replay Cast
5 days
Wardi Open
6 days
Replay Cast
6 days
Liquipedia Results

Completed

SOOP Univ League 2025
RSL Revival: Season 3
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
META Madness #9
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.