• We just launched and are currently in beta. Join us as we build and grow the community.

Apex Legends - Rapidfire (AHK)

Annoying

Gif Whisperer
Divine
A Rep
0
0
0
Rep
0
A Vouches
0
0
0
Vouches
0
Posts
56
Likes
39
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 400 XP
Hi,
I just wanted to share my own small macro for Apex Legends. I believe this is unbannable, but you still use at own risk.
Hotkeys:
CAPS: Switches the rapid fire on/off (Only for weapons in slot 1)
F1-F7: (Sends messages in-game, see GUI for more info)
F8: Delays a left-click for 30 sec (I use it to delay my ready press to go for a quick smoke)
The GUI that starts with the macro is always on-top, and I usually put it on my second screen to help me remember the hotkeys.
Code:
#SingleInstance Force
say(text) {
oldclip = Clipboard
Clipboard := text
Send {enter}
sleep 25
Send {Ctrl Down}v{Ctrl Up}
sleep 25
Send {enter}
Clipboard := oldclip
}
Gui,+AlwaysOnTop
Gui, Font, s13
Gui, Add, Text, x10 y10 w450 cBlack, F1: Please revive, I'm safe
Gui, Add, Text, x10 y30 w450 cBlack, F2: Push Back! Another Squad!
Gui, Add, Text, x10 y50 w450 cBlack, F3: Need ammo! Please!!
Gui, Add, Text, x10 y70 w450 cBlack, F4: Need health! Anyone got?
Gui, Add, Text, x10 y90 w450 cBlack, F5: Need shield! Anyone got cells or fuel?
Gui, Add, Text, x10 y110 w450 cBlack, F6: Need backup ASAP!
Gui, Add, Text, x10 y130 w450 cBlack, F7: Stick with the team! Don't go out on any solo missions!
Gui, Add, Text, x10 y150 w450 cRed, F8: Delayed Ready
Gui, Add, Text, x10 y170 w450 cRed, F12: Stänger av Apex
Gui, Add, Text, x10 y190 w450 cRed, CAPS: Toggle Auto-left-click
Gui,Show,w460 h220 Center
return
maintoggle = 0
toggle = 0
prevslot = 0
F1::
say("Please revive, I'm safe")
return
F2::
say("Push Back! Another Squad!")
return
F3::
say("Need ammo! Please!!")
return
F4::
say("Need health! Anyone got?")
return
F5::
say("Need shield! Anyone got cells or fuel?")
return
F6::
say("Need backup ASAP!")
return
F7::
say("Stick with the team! Don't go out on any solo missions!")
return
#IfWinActive ahk_class Respawn001
; Toggles the left-click spammer on/off
*~$CapsLock::
if (!maintoggle) {
	maintoggle = 1
	togge = 1
	SoundBeep, 950, 300
}
else {
	maintoggle = 0
	toggle = 0
	SoundBeep, 350, 300
}
return
; Kills the game
*~!$F12::
run, %comspec% /c taskkill /f /im r5apex.exe,,hide
return
; Toggles script for slot 1
*~$1::
prevslot = 1
if (!toggle) {
	if (maintoggle) {
		toggle = 1
	}
}
return
; Toggles off script for key i
*~$i::
if (toggle) {
	toggle = 0
}
else if (prevslot = 1) {
	if (maintoggle) {
		toggle = 1
	}
}
return
; Toggles off script for key g
*~$g::
if (toggle) {
	toggle = 0
}
return
; Toggles off script for key tab
*~$Tab::
if (toggle) {
	toggle = 0
}
else if (prevslot = 1) {
	if (maintoggle) {
		toggle = 1
	}
}
return
; Toggles off script for key 2
*~$2::
prevslot = 2
if (toggle) {
	toggle = 0
}
return
; Toggles off script for key 3
*~$3::
prevslot = 3
if (toggle) {
	toggle = 0
}
return
; Toggles off script for key 4
*~$4::
prevslot = 4
if (toggle) {
	toggle = 0
}
return
#IfWinActive ahk_class Respawn001
*~$LButton::
if (toggle) {
	Loop
	{
		
		If GetKeyState("LButton", "P")
		{
			If GetKeyState("ctrl", "P")
			{
				Send {ctrl down}{LButton}
			}
			else {
				Send {ctrl up}{LButton}
			}
			
			Sleep 50 ;  milliseconds
		}
		else
		{
			Exit
		}
	}
}
return
#IfWinActive ahk_class Respawn001
*~$F8::
SoundBeep, 1200, 150
Sleep 30000
Send {LButton}
return
 

436,452

314,393

314,402

Top