Sokpop S07: Chatventures

Sokpop S07: Chatventures

Not enough ratings
AutoHotKey Script for Push-Up Challenge
By Getty Images
This guide contains an AutoHotKey script that automatically enters the necessary chat command, allowing you to complete the push-up quest without getting arthritis.
   
Award
Favorite
Favorited
Unfavorite
Explanation
If you haven't encountered the push-up quest, you soon will. This requires you to type the words "push up" in chat one thousand(!) times. I didn't want to do that, so I made this AHK script.

AutoHotKey is a program that allows the user to make keyboard and input macros ranging from simple to complex. Needless to say, you'll need it installed for this guide.
The Script
As I mentioned above, getting a script to work is easy. Below is a script that will print "push up" to chat every ~1s while CTRL is held.
~Ctrl:: While GetKeyState("Ctrl","P") { Send, push up sleep, 50 Send, {Enter} sleep 1000 } Return
Just copy that text, put it in notepad, and save as "push up.ahk" or whatever you want as long as it ends in .ahk. Hold down CTRL for about 10 minutes and you'll have yourself +3 strength and a new emote!
3 Comments
Piper 29 May, 2024 @ 10:11pm 
Oh...i just...did the push ups TwT
shadynorwegian 18 Jun, 2023 @ 6:47am 
well, I messed about a bit, and changed the sleep 1000 to a sleep 300. any faster, and it would mess up typing a lot, but maybe increase the sleep 50 to a sleep 100. just give the pc a bit more time to finish the words
Diredevil 21 Jan, 2023 @ 9:12am 
So i copied it and its running but if i hold ctrl it stutters and doesnt write all of it before sending... how do i fix that?