Sokpop S07: Chatventures

Sokpop S07: Chatventures

Ei tarpeeksi arvosteluja
AutoHotKey Script for Push-Up Challenge
Tekijältä 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.
   
Palkinto
Lisää suosikkeihin
Lisätty suosikkeihin
Poista suosikeista
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 kommenttia
Piper 29.5.2024 klo 22.11 
Oh...i just...did the push ups TwT
shadynorwegian 18.6.2023 klo 6.47 
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.1.2023 klo 9.12 
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?