Posted 7 months ago
·
Author
this AHK is pretty simple, doesn't really need much explaining how it works. Works by adding a whitespace after each character. Feel free to improve upon this AHK script and fix any issues it may have.
To enable the script, Press right control. If you need to search rooms or products, Press right control again.
Code Preview:
To enable the script, Press right control. If you need to search rooms or products, Press right control again.
Code Preview:
#NoEnv
;warn
#MaxHotkeysPerInterval 99000000
#HotkeyInterval 99000000
ListLines Off
SendMode input
SetWorkingDir %A_ScriptDir%
#SingleInstance Force
#InstallKeybdHook
;#include %A_ScriptDir%/lib
detecthiddenwindows on
HotstringsEnabled := 0 ; Initialize variable to enable hotstrings
#If HotstringsEnabled ; Only active when HotstringsEnabled is true
:*b0:a::
:*b0:b::
:*b0:c::
:*b0:d::
:*b0:e::
:*b0:f::
:*b0:g::
:*b0:h::
:*b0:i::
:*b0:j::
:*b0:k::
:*b0:l::
:*b0:m::
:*b0:n::
:*b0:o::
:*b0:p::
:*b0:q::
:*b0:r::
:*b0:s::
:*b0:t::
:*b0:u::
:*b0:v::
:*b0:w::
:*b0:x::
:*b0:y::
:*b0:z::
#If
; Toggle hotstrings on and off with Right Control key
RCtrl::
HotstringsEnabled := !HotstringsEnabled
Tooltip, % "(Right Ctrl) Censorship Bypass " . (HotstringsEnabled ? "✅ enabled. Disable to search rooms" : "❎ disabled.")
SetTimer, RemoveTooltip, 3000
return
RemoveTooltip:
Tooltip
return
; Simulate pressing Backspace three times when Backspace key is pressed
~Backspace::
if (HotstringsEnabled)
SendInput {Backspace}