• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 00:57
CET 05:57
KST 13:57
  • 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
ByuL: The Forgotten Master of ZvT29Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
Weekly Cups (March 2-8): ByuN overcomes PvT block0GSL CK - New online series11BSL Season 224Vitality ends partnership with ONSYDE20Team Liquid Map Contest - Preparation Notice6
StarCraft 2
General
Weekly Cups (March 2-8): ByuN overcomes PvT block GSL CK - New online series Weekly Cups (Feb 23-Mar 1): herO doubles, 2v2 bonanza Vitality ends partnership with ONSYDE How do you think the 5.0.15 balance patch (Oct 2025) for StarCraft II has affected the game?
Tourneys
RSL Season 4 announced for March-April Sparkling Tuna Cup - Weekly Open Tournament PIG STY FESTIVAL 7.0! (19 Feb - 1 Mar) $5,000 WardiTV Winter Championship 2026 Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
BSL Season 22 BSL 22 Map Contest — Submissions OPEN to March 10 BGH Auto Balance -> http://bghmmr.eu/ battle.net problems ASL21 General Discussion
Tourneys
ASL Season 21 Qualifiers March 7-8 [Megathread] Daily Proleagues BWCL Season 64 Announcement [BSL22] Open Qualifier #1 - Sunday 21:00 CET
Strategy
Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Simple Questions, Simple Answers Zealot bombing is no longer popular?
Other Games
General Games
Nintendo Switch Thread PC Games Sales Thread Path of Exile No Man's Sky (PS4 and PC) Stormgate/Frost Giant Megathread
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
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 Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Mexico's Drug War Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Req][Books] Good Fantasy/SciFi books [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Cricket [SPORT] Formula 1 Discussion TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Gaming-Related Deaths
TrAiDoS
ONE GREAT AMERICAN MARINE…
XenOsky
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1795 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
00:00
OSC Elite Rising Star #18
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft266
RuFF_SC2 256
ProTech128
StarCraft: Brood War
GuemChi 2274
JulyZerg 1424
Shuttle 524
Snow 197
Noble 28
yabsab 13
Icarus 10
Dota 2
NeuroSwarm80
League of Legends
JimRising 661
Counter-Strike
Coldzera 1684
taco 606
m0e_tv185
Other Games
summit1g12184
WinterStarcraft451
C9.Mang0322
Mew2King153
Organizations
Other Games
gamesdonequick1702
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 12 non-featured ]
StarCraft 2
• practicex 72
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1267
Upcoming Events
Wardi Open
7h 3m
PiGosaur Monday
19h 3m
GSL
1d 5h
WardiTV Team League
1d 7h
The PondCast
2 days
WardiTV Team League
2 days
Replay Cast
2 days
Replay Cast
3 days
CranKy Ducklings
4 days
WardiTV Team League
4 days
[ Show More ]
uThermal 2v2 Circuit
4 days
BSL
4 days
Sparkling Tuna Cup
5 days
WardiTV Team League
5 days
BSL
5 days
Replay Cast
5 days
Replay Cast
6 days
Wardi Open
6 days
Monday Night Weeklies
6 days
Liquipedia Results

Completed

ASL Season 21: Qualifier #2
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
Spring Cup 2026
BSL Season 22
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

ASL Season 21
Acropolis #4 - TS6
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
Bellum Gens Elite Stara Zagora 2026
NationLESS Cup
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
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 © 2026 TLnet. All Rights Reserved.