Hello guys. I made these really bad scripts a little while back. So these are they keys you have to press to activate random shit. In order to run this, you will need to have the button Enter, to activate chat. This won't work without it. Shift + F = You go Nexus. Shift + V = You go Vault. Shift + R = You go Realm. Numpad4 = Says Oryx in chat. Numpad7 = Says Queen in chat. F1 = Says He lives and reigns and conquers the world. F2 = Runs /pause ingame. Shift + F2 = Spams Oryx 15 times in chat in a matter of seconds (Aprox 0,5-1 second) Me using the script for vault. https://gyazo.com/83b09cd84c586c0b54c7d6afbd1c971a Me using the script for realm. https://gyazo.com/1f07d520124da43d556b71c8faf91e19 Me using the script for nexus. https://gyazo.com/d99d45b86d41ed97d5dae17a49e9246c Me spamming using the scripts for text and using pause script. https://gyazo.com/dd89cef7d0bc64fa2dea9ea5ab7c1ee2 These gifs are to show the speed of the scripts.



;This checks for a certain app, suspends hotkeys if the app isn't open and unsuspends hotkeys if it is open.
Suspend on
GroupAdd rotmg, Adobe Flash Player 1 ;Checks for flash player 10-20
GroupAdd rotmg, Adobe Flash Player 2 ;Checks for flash player 20-30
GroupAdd rotmg, Nilly's Realm ;Checks for nilly's website
WinNotActive()
WinActive()
{
Suspend Off
WinWaitNotActive ahk_group rotmg
{
WinNotActive()
}
}
WinNotActive()
{
Suspend on
WinWaitActive ahk_group rotmg
{
WinActive()
}
}
#SingleInstance
;GuiStartup
;-----------
guiState = 2
screenWidth := A_ScreenWidth/100
screenHeight := A_ScreenHeight/100
Gui, Destroy
Gui, Add, Text, x60, On
Gui, Color, Green
Gui, +AlwaysOnTop
Gui,Show,% "NoActivate" "x" . screenWidth*90 . "y" screenHeight*88 "w" . 130 "h" . 20,
;CheckForApp
;------------
Suspend on
GroupAdd rotmg, Adobe Flash Player 1 ;Checks for flash player 10-20
GroupAdd rotmg, Adobe Flash Player 2 ;Checks for flash player 20-30
GroupAdd rotmg, Nilly's Realm ;Checks for nilly's website
WinNotActive()
WinActive()
{
Suspend Off
WinWaitNotActive ahk_group rotmg
{
WinNotActive()
}
}
WinNotActive()
{
Suspend on
WinWaitActive ahk_group rotmg
{
WinActive()
}
}
return
;Gui
;----
GuiOn:
guiState = 2
screenWidth := A_ScreenWidth/100
screenHeight := A_ScreenHeight/100
Gui, Destroy
Gui, Add, Text, x60, On
Gui, Color, Green
Gui, +AlwaysOnTop
Gui,Show,% "NoActivate" "x" . screenWidth*90 . "y" screenHeight*88 "w" . 130 "h" . 20,
return
GuiOff:
guiState = 1
screenWidth := A_ScreenWidth/100
screenHeight := A_ScreenHeight/100
Gui, Destroy
Gui, Add, Text, x60, Off
Gui, Color, Red
Gui, +AlwaysOnTop
Gui,Show,% "NoActivate" "x" . screenWidth*90 . "y" screenHeight*88 "w" . 130 "h" . 20,
return
;Hotkeys
;--------
r::
if (guiState > 1){
clipboard:="/nexus"
Send {Enter}^v{Enter}
}
else {
clipboard:="r"
Send ^v
}
return
Numpad0::
if (guiState < 2){
goto GuiOn
}
if (guiState > 1){
goto GuiOff
}
return
Numpad1::
if (guiState > 1){
clipboard:="/mall potion of defense 20"
Send {Enter}^v{Enter}
}
else return
return
Numpad2::
if (guiState > 1){
clipboard:="/mall potion of vitality 23"
Send {Enter}^v{Enter}
}
else return
return
Numpad3::
if (guiState > 1){
clipboard:="/mall potion of attack 10"
Send {Enter}^v{Enter}
}
else return
return
Numpad4::
if (guiState > 1){
clipboard:="/mall potion of dexterity 25"
Send {Enter}^v{Enter}
}
else return
return
Numpad5::
if (guiState > 1){
clipboard:="/mall potion of speed 10"
Send {Enter}^v{Enter}
}
else return
return
Numpad6::
if (guiState > 1){
clipboard:="/mall potion of wisdom 15"
Send {Enter}^v{Enter}
}
else return
return
Numpad7::
if (guiState > 1){
clipboard:="/mall potion of life 70"
Send {Enter}^v{Enter}
}
else return
return
Numpad8::
if (guiState > 1){
clipboard:="/mall potion of mana 80"
Send {Enter}^v{Enter}
}
else return
return
;Exit
;-----
Esc::
ExitApp