From 7299eb98af151f2ef56716f26657a99facb06fd8 Mon Sep 17 00:00:00 2001 From: KaizerFox <29178963+KaizerFox@users.noreply.github.com> Date: Thu, 16 Sep 2021 17:13:48 -0400 Subject: [PATCH] Add files via upload --- uwuifier.ahk | 91 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 uwuifier.ahk diff --git a/uwuifier.ahk b/uwuifier.ahk new file mode 100644 index 0000000..74e12b9 --- /dev/null +++ b/uwuifier.ahk @@ -0,0 +1,91 @@ +#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. +; #Warn ; Enable warnings to assist with detecting common errors. +SendMode Input ; Recommended for new scripts due to its superior speed and reliability. +SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. + +messages = +( + uwu + owo + *meow* + *nya* + :P + xd + >.< + >///< + -\_- + @\_@ + q\_q + >w< + :3 + ;3 + e.e + qwp + pwq + ^w^ + ^-^ + O.O + z.z + >.< + v.v + :d + =.= + -.- + O\_O + O\_o + o\_O + u-u + O-O + -w- + xp + x3 + TwT + ;-; +) + +StringSplit, messlist, messages, `n,`r + +i := 0 + +Loop +{ + Input, LastKey, L1 V +} + +l::w ++l::W +r::w ++r::W +Pause::Suspend + +~Space:: +{ + nya := true + i := i + 1 + if (i = 5) + { + Random, Pickthis, 1, %messlist0% + thismess := messlist%PickThis% + SendInput {Raw}%thismess% + Send {{Text} } + i := 0 + } +} +return + +~n:: +{ + if (nya) && if (LastKey = " ") + { + Send {Text}y + nya := !nya + } +} + ++~n:: +{ + if (nya) && if (LastKey = " ") + { + Send {Text}Y + nya := !nya +} \ No newline at end of file