Improved IMVU censor bypasser (AHK)

mrrobot
by mrrobot · 6 posts
7 months ago in Other
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:
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 7 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 months 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.
Posted 1 week ago
@mrrobot


Thank you
Posted 1 week ago
wonderfull work .. i wish i was this bright or talented. hope im smart anuff to use it.
Posted 4 days ago
Thank you, a great tool, I just have to get used to it and learn how to use it correctly, if anyone has updated the script please share it here, I would love to use it

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