Sokpop S07: Chatventures

Sokpop S07: Chatventures

Nedostatek hodnocení
AutoHotKey Script for Push-Up Challenge
Vytvořil: 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.
   
Ocenit
Přidat do oblíbených
Oblíbeno
Odebrat z oblíbených
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!
Počet komentářů: 3
Piper 29. kvě. 2024 v 22.11 
Oh...i just...did the push ups TwT
shadynorwegian 18. čvn. 2023 v 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. led. 2023 v 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?