How not to break your mouse while unlocking the DOOM 3 BFG Edition achievement called « Killing time ».
How to Get the Achievement
Killing time
Score 25000 on Super Turbo Turkey Puncher 3 in DOOM 3 or RoE
Do you know what macros are? Il’s time to learn it because macroses can make your life much easier. How much-routined tasks in your computer work could be done without effort if you make them work automatically! Par exemple, unlock one very boring routine achievement in Doom 3.
The goal is simple to say: just punch the chicken, et toi’ll receive the points. Mais 250000? Try to calculate the necessary time and necessary counts of the left mouse button clicking yourself. It would be much easier if we had the script which is simulating clicking this by itself.
I prefer AutoHotkey. Il’s free and open-source, so you can easily go to Auto Hotkeys et téléchargez-le. Alors, bien sûr, you need to install it. Bien, now the script written in the corresponding language can be run on your PC.
Donc, what script do we need to have? It should wait until we start it by pressing a special key (let it be Home). Alors, it should simulate the left mouse button pressing until another special key (let it be End) is pressed, then stop working.
So we will get something like this:
KeyWait, Maison, D ; first we are waiting for Home key pressed Loop ; and then we start the loop { envoyer, {Bouton L} ; we simulate left mouse button pressing sleep, 100 ; and do it each 100 miliseconds if GetKeyState("Fin") ; but if End key was pressing break ; we will stop the script working }
Save this text in any file with .ahk extension, then run it.
Run the game, load the first level and come to the slot machine, il’s in the dining room. Move the cursor to the turkey and start the script by pressing the Home key. The punching will start automatically, and you can leave your game place to make a break for yourself. When the necessary points will be achieved and « Killing time » sera débloqué, just stop the script with the End key.
Que’s'asseoir! Scripting is easy and useful. When you master this toolkit, you will be able to automate lots of other computer tasks, more serious than unlocking an achievement in the game.
C'est tout ce que nous partageons aujourd'hui pour ce guide. Ce guide a été initialement créé et rédigé par yuri2. Si nous ne parvenons pas à mettre à jour ce guide, vous pouvez trouver la dernière mise à jour en suivant ceci lien.