Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KaizerFox authored Sep 16, 2021
1 parent d7d61f2 commit 7299eb9
Showing 1 changed file with 91 additions and 0 deletions.
91 changes: 91 additions & 0 deletions uwuifier.ahk
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 7299eb9

Please sign in to comment.