Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
See: https://www.kineticgames.co.uk/blog/phasmophobia-crimson-eye-v01101
"You can no longer rebind the left mouse click or Xbox A/ PlayStation X button to any keybind, this is to prevent the UI becoming unusable"
Imagine if, in a first person shooter, a dev just randomly rebound the primary fire key to right click for no reason, then made it unchangeable so left click is hardwired for using things and can't be rebound. Obviously not the same kind of game, but imagine the muscle memory and how much that would screw you up.
I dunno, I havent played long enough for it to have even crossed my mind that I could bind anything to left click, since left click is already used for things by default, and at least playing with the default binds, nothing seems to be actually broken, which is why I have a hard time understanding how that makes it "unplayable".
It is a weird change nonetheless though since it also didnt seem like that binding more things to left click actually broke anything, so feels like they tried to fix a problem that didnt exist? I dunno, again, not played enough to have noticed anything so what do I know.
I just could not accept that this was disabled by the last patch, so wrote a short script with the scripting language AutoHotkey to bypass this.
My script is simple, I assigned grabbing things to key "k". My script does following, when you click LMB it detects if the current active app is the Phamophobia.exe, and if this is true it sends LMB and k press at the same time, two buttons at the same time. So you can grab, but also click in menus. I tested it and it works great. The AutoHotkey script:
#SingleInstance force
#IfWinActive ahk_exe Phasmophobia.exe
LButton::
SendInput, k
SendInput, {LButton}
return
Thaht's it! "LButton" is the LMB Left Mosue Button.
If you have another letter assigned for grabbing, change the k in the script with your letter. l, o, g or whatever. OR leave the script as it is and change grabbing in Phasmophobia simply to k.
Copy the six script lines from above, open Editor/Notepad. Just open start menu and in search field search for editor or notepad.
Paste the copied code there. Save file, in the file save dialog, select under file types "all files", give your name and at the end file extension .ahk
I.e. myfilename.ahk or Phasmo_LMB.ahk
To run this script while gaming, you need the AutoHotkey Runtime. Go to google, search for AutoHotkey, go to the AutoHotkey Website (first google result), to downloads and then version 1.1. Not version 2, my script is written in 1.1. During install choose custom installation, then 32-bit unicode. May restart Windows.
Run your script with doubleclick, when it's running it should have a tray icon with a huge H. After gaming, you can close it with right click on the tray icon.
Don't forget to assign k for grabbing in Phasmophobia OR change the letter k in the script to your assignment in Phasmophobia.
Yes I did that with MMB :D Before I found a solution to use LMB again ^^
In other words; other players were rebinding LMB in stupid ways, causing their games to brick due to impossible controls.
This change is kind of a lose lose scenario for those who were using the feature properly, but speaking critically... I think the devs made the right call here in prioritizing soft lock prevention. Whether or not this was the correct way to go about this however is debatable.