Improved IMVU censor bypasser (AHK)

mrrobot
by mrrobot · 3 posts
6 months ago in Other
Posted 6 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:
Code
#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 B​ypass " . (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}
Posted 5 months ago
I am sorry I'm new I don't know much about the scripting and things. Does this script prevent vu from searching or looking into the bm rooms after it has been published ?
Posted 2 weeks ago · Author
@DracLoveU

it just disables imvu's censorship, while keeping what you're typing looking relatively normal. no weird symbols. Also no need to put your text through a text generator to bypass their censorship, as it bypasses it as you type.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Sign in

Already have an account? Sign in here

SIGN IN NOW

Create an account

Sign up for a new account in our community. It's easy!

REGISTER A NEW ACCOUNT