Switch off sonic radar has been suggested as a fix. To hide the Sonic Radar, press the right Ctrl + 0. Apr 10, 2016 Default crosshairs are a mandatory download for anyone using the Recursion Crosshair Overlay, meaning that a needlessly large collection of crosshair images would place an excessive burden on anyone with slow internet download speeds, metered connections, limited free hard drive space, and other restrictions. Software, Game Maker Examples, Clickteam Fusion Extensions & Miscellaneous Programming Stuff.
Crosshair Download Png
Crosshair Overlay Software
- ; By evilc@evilc.com
- ; Instructions:
- ; Will ONLY work in WINDOWED mode
- ; 1) Run app to overlay crosshair to and make it active
- ; 2) Hit WIN+Insert to designate that as app to overlay to
- ; 3) Crosshair will appear but probably in wrong place
- ; 4) Use WIN+Arrow keys to move crosshair to right place
- ; Crosshair will ONLY appear while designated app is active
- ; Settings saved to INI file so you only have to set up once
- ; This is NOT a hack, it merely creates a transparent window
- ; Custom crosshairs can be used, edit ch.gif and edit size vars below
- ch_x = 78 ; X size of ch.gif
- ; DO NOT EDIT BELOW HERE UNLESS YOU KNOW WHAT YOU ARE DOING!
- ;
- ; Remove .ahk and .exe from filename to get name for INI file
- StringReplace, ScriptName, ScriptName, .ahk, All
- WinGetPos, winx, winy, winw, winh, ahk_class %progclass%
- ; PosX and PosY hold offset of cursor within window (From centre)
- PosY := 0
- ; Read vals from INI file
- IniRead, PosX, %ScriptName%.ini, Main, PosX, %PosX%
- IniRead, PosY, %ScriptName%.ini, Main, PosY, %PosY%
- IniRead, progclass, %ScriptName%.ini, Main, progclass, %progclass%
- ; Calculate offsets
- Gui, Add, Picture, w%ch_x% h%ch_y% AltSubmit, TaMortarReticle.png
- GoSub, showch
- WinSet, TransColor, White, %A_ScriptName%
- GoSub, hidech
- ; MAIN LOOP
- ;
- ; HOTKEYS
- PosY -= 1
- IniWrite, %PosY%, %ScriptName%.ini, Main, PosY
- PosY += 1
- IniWrite, %PosY%, %ScriptName%.ini, Main, PosY
- PosX -= 1
- IniWrite, %PosX%, %ScriptName%.ini, Main, PosX
- PosX += 1
- IniWrite, %PosX%, %ScriptName%.ini, Main, PosX
- WinGetActiveTitle, wint
- IniWrite, %progclass%, %ScriptName%.ini, Main, progclass
- ; Shows the crosshair
- GoSub, offsetch
- return
- ; Hides the crosshair
- Gui, Cancel
- offsetch:
- chy := 501
- IfWinActive, ahk_class %progclass%
- ; Check to see if window moved
- WinGetPos, winx, winy, winw, winh, ahk_class %progclass%
- GoSub, showch
- else
- GoSub, hidech
- return
Comments are closed.