• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 21:31
CEST 03:31
KST 10:31
  • 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
Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway13
Community News
WardiTV TL Team Map Contest #5 Tournaments0SC4ALL $6,000 Open LAN in Philadelphia7Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues29LiuLi Cup - September 2025 Tournaments3Weekly Cups (August 25-31): Clem's Last Straw?39
StarCraft 2
General
Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues #1: Maru - Greatest Players of All Time Team Liquid Map Contest #21 - Presented by Monster Energy Classic Games #3: Rogue vs Serral at BlizzCon What happened to Singapore/Brazil servers?
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series WardiTV TL Team Map Contest #5 Tournaments Sparkling Tuna Cup - Weekly Open Tournament SC4ALL $6,000 Open LAN in Philadelphia
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
Pros React To: SoulKey's 5-Peat Challenge BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion ASL20 General Discussion BSL Team Wars - Bonyth, Dewalt, Hawk & Sziky teams
Tourneys
[IPSL] ISPL Season 1 Winter Qualis and Info! Is there English video for group selection for ASL [ASL20] Ro16 Group B [ASL20] Ro16 Group A
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Borderlands 3 Nintendo Switch Thread Path of Exile General RTS Discussion Thread
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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Canadian Politics Mega-thread Russo-Ukrainian War Thread The Big Programming Thread Things Aren’t Peaceful in Palestine
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
The Personality of a Spender…
TrAiDoS
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1283 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
Next event in 8h 29m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
NeuroSwarm 186
RuFF_SC2 118
Livibee 82
StarCraft: Brood War
Artosis 787
sSak 309
NaDa 27
Icarus 3
Dota 2
monkeys_forever761
LuMiX1
League of Legends
JimRising 425
Counter-Strike
fl0m1668
Super Smash Bros
hungrybox521
Other Games
FrodaN1523
C9.Mang0256
Maynarde132
WinterStarcraft34
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Berry_CruncH75
• davetesta31
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• RayReign 5
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Doublelift4832
Other Games
• Scarra1515
Upcoming Events
Afreeca Starleague
8h 29m
Snow vs Sharp
Jaedong vs Mini
Wardi Open
9h 29m
OSC
22h 29m
Sparkling Tuna Cup
1d 8h
Afreeca Starleague
1d 8h
Light vs Speed
Larva vs Soma
PiGosaur Monday
1d 22h
LiuLi Cup
2 days
RSL Revival
3 days
Maru vs Reynor
Cure vs TriGGeR
The PondCast
3 days
RSL Revival
4 days
Zoun vs Classic
[ Show More ]
Korean StarCraft League
5 days
RSL Revival
5 days
[BSL 2025] Weekly
5 days
BSL Team Wars
5 days
RSL Revival
6 days
Online Event
6 days
Liquipedia Results

Completed

BSL 20 Team Wars
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

2025 Chongqing Offline CUP
BSL Polish World Championship 2025
IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 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.