• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 11:13
CEST 17:13
KST 00:13
  • 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
TL.net Map Contest #21: Voting7[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Weekly Cups (Oct 6-12): Four star herO65.0.15 Patch Balance Hotfix (2025-10-8)80Weekly Cups (Sept 29-Oct 5): MaxPax triples up3PartinG joins SteamerZone, returns to SC2 competition325.0.15 Balance Patch Notes (Live version)119
StarCraft 2
General
Revisiting the game after10 years and wow it's bad Ladder Impersonation (only maybe) 5.0.15 Patch Balance Hotfix (2025-10-8) TL.net Map Contest #21: Voting How to Block Australia, Brazil, Singapore Servers
Tourneys
WardiTV Mondays RSL Offline Finals Dates + Ticket Sales! SC4ALL $6,000 Open LAN in Philadelphia Crank Gathers Season 2: SC II Pro Teams LiuLi Cup - September 2025 Tournaments
Strategy
Custom Maps
External Content
Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers Mutation # 492 Get Out More
Brood War
General
BW General Discussion Question regarding recent ASL Bisu vs Larva game [Interview] Grrrr... 2024 Pros React To: BarrackS + FlaSh Coaching vs SnOw BW caster Sayle
Tourneys
[ASL20] Semifinal B SC4ALL $1,500 Open Bracket LAN [Megathread] Daily Proleagues [ASL20] Semifinal A
Strategy
Current Meta Relatively freeroll strategies BW - ajfirecracker Strategy & Training Siegecraft - a new perspective
Other Games
General Games
Dawn of War IV Stormgate/Frost Giant Megathread Nintendo Switch Thread ZeroSpace Megathread Path of Exile
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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
SPIRED by.ASL Mafia {211640} TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Men's Fashion Thread Sex and weight loss
Fan Clubs
The herO Fan Club! The Happy Fan Club!
Media & Entertainment
[Manga] One Piece Series you have seen recently... Anime Discussion Thread Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Rocket League: Traits, Abili…
TrAiDoS
Inbreeding: Why Do We Do It…
Peanutsc
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1229 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
Wardi Open
11:00
WardiTV Mondays #56
ByuN vs Clem
WardiTV1334
TKL 356
IndyStarCraft 213
Rex151
CranKy Ducklings93
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
TKL 350
LamboSC2 215
IndyStarCraft 213
Rex 138
StarCraft: Brood War
Britney 42480
Calm 6190
Rain 4003
Bisu 3503
Horang2 1247
Shuttle 874
Jaedong 863
Light 671
Soma 634
actioN 579
[ Show more ]
Snow 414
sSak 225
Soulkey 204
Mini 198
firebathero 193
Leta 186
hero 171
Hyun 158
ggaemo 149
Aegong 95
Sharp 76
Zeus 76
sorry 76
Killer 75
ZerO 66
Sea.KH 58
sas.Sziky 57
Movie 53
ToSsGirL 49
JYJ48
Mong 34
Free 33
Rush 18
Terrorterran 12
Noble 9
Dota 2
Gorgc7456
qojqva3074
XcaliburYe399
Other Games
B2W.Neo721
Lowko389
DeMusliM350
crisheroes252
Liquid`VortiX155
Skadoodle136
KnowMe112
QueenE52
Trikslyr25
ZerO(Twitch)11
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Nemesis7695
• Jankos2262
• TFBlade752
Upcoming Events
3D!Clan Event
48m
CranKy Ducklings
18h 48m
Safe House 2
1d 1h
Sparkling Tuna Cup
1d 18h
Safe House 2
2 days
Monday Night Weeklies
3 days
Tenacious Turtle Tussle
5 days
The PondCast
5 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
CranK Gathers Season 2: SC II Pro Teams
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
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.