View Solution

Pacifist

Pacifist0
2 guidesOffline Mode - These achievements require play in game modes that do not necessitate a connection to any online services.Single Player - These achievements can be obtained by a single player.
MuckPieMuckPie528,323
30 Jul 2021 05 Aug 2021 05 Aug 2021
0 0 2
This achievement requires you to play for an hour in one session without killing anybody. This means "active" play meaning you can't just leave the game open in the background or go AFK. I created a simple AHK script that will spawn a chosen item and then delete it (and also press the arrow keys and click for good measure) which will repeat infinitely until the script is stopped.

Download here - https://drive.google.com/file/d/1k7wJ6hWyMVzVbiNR4nvUDTshZTA...
or copy+paste the below code
---------------------------------------
#MaxThreadsPerHotkey 3
s::
#MaxThreadsPerHotkey 1
if KeepRunning {
KeepRunning := false
return
}
KeepRunning := true
Loop {
Send {q}
Sleep 500
Send {Up}
Sleep 500
Send {e}
Sleep 500
Send {z}
Send {z}
Send {z}
Send {Down}
Sleep 500
Click
if not KeepRunning
break
}
KeepRunning := false
return
---------------------------------------
TL;DR

- Download and start script
- Open People Playground
- Enter a room (I recommend Default)
- Pick any item except for a person (a person being spawned in is not required for achievement)
- Press 's' to activate and deactivate script
- Let it run for an hour
ZardizosDoesn't work... I tried 17 times and never worked. Plus its super shitty because every time I press "S" on my keyboard and its goes "ezzzzq ezzzzq " and even when i delete the script it still does it.
Posted by Zardizos on 05 Dec 21 at 22:29
MuckPieDid you end the process as well?
Posted by MuckPie on 14 Dec 21 at 19:38