Jump to content

Cheat software detected?!

Go to solution Solved by Tan3l6,
4 minutes ago, PowerPCFan said:

AutoHotKey

Probably the cause.

There's a mention of it in the Steam page: https://steamcommunity.com/app/2073850/discussions/0/4133808627030993013/

Before you ask: I do not have any cheat software installed on my computer and I am 100% against any form of cheating or hacking in games. 

**Read edit at the bottom of this post

 

So I downloaded The Finals for the first time, because I heard it was fun and wanted to try it. 

I got this message: 

image.thumb.png.8e7d7fccbfa68e4eb2a8586dcd84be37.png

 

The message reads: 

 

Fatal Error
Cheat software was detected. This is a violation of our code of conduct, continued use will lead to account suspension or other action in accordance with our user terms.

 

These are my background apps in my tray: 

image.png.ebadf281f3eafa7dad4258e21a0b114e.png

 

The only things I could think of that would do this is RTSS, my AutoHotKey macros for my keyboard, or Overwolf, but I can't really disable any of those...

 

Does anyone else have these problems and is one of these apps known to cause this issue? 

 

Edit: closing AutoHotkey fixed the issue but this is really annoying because I have tons of macros for changing volume, opening apps, sleep mode, changing audio output, and changing monitor brightness. Is there any way to bypass this so I can still have my ahk script running but not trigger the anticheat? What's weird is that The Finals uses Easy Anti Cheat (as far as I know) which is also used in Fortnite and Apex Legends, which I have no problems with. 

hi

Link to comment
https://linustechtips.com/topic/1570356-cheat-software-detected/
Share on other sites

Link to post
Share on other sites

15 minutes ago, PowerPCFan said:

Is there any way to bypass this so I can still have my ahk script running but not trigger the anticheat?

Maybe use another solution like a Stream Deck? I'd imagine there would be riots if a game developer decided those are cheat devices.

 

We can't help you sidestep anti-cheat here though.

I sold my soul for ProSupport.

Link to post
Share on other sites

19 minutes ago, PowerPCFan said:

closing AutoHotkey fixed the issue but this is really annoying because I have tons of macros for changing volume, opening apps, sleep mode, changing audio output, and changing monitor brightness. Is there any way to bypass this so I can still have my ahk script running but not trigger the anticheat? What's weird is that The Finals uses Easy Anti Cheat (as far as I know) which is also used in Fortnite and Apex Legends, which I have no problems with. 

blame the anticheat developers that blacklisted the app

gaming system: Intel core I9 12900ks / biostar Z690A valkyrie / 4x8gb corsair Vengeance @3333Mhz ram / RX 7900XTX pulse gpu / Thermalright peerless assassin 140 /Coolermaster Qube 500 case / Be Quiet Dark Power Pro 12 1500w power supply

 

laptop: Dell xps 9510, 3.5k OLED, i7 11800h, rtx 3050 ti, 2x16gb DDR4 @ 3200Mhz, 1TB main drive, 2TB add in ssd

Link to post
Share on other sites

12 minutes ago, PowerPCFan said:

Read my edits, it was the cause

Don't forget to mark Tan's comment as solution

 

As for how to minimize the impact this has, you can replace the launcher shortcut with a cmd file that kills AHK, launches the game (there is a way to launch a program and not continue until the program "finishes" which it will when you close the game), then launch AHK and exit

5950X/4090FE primary rig  |  1920X/1070Ti Unraid for dockers  |  200TB TrueNAS w/ 1:1 backup

Link to post
Share on other sites

11 minutes ago, Needfuldoer said:

Maybe use another solution like a Stream Deck? I'd imagine there would be riots if a game developer decided those are cheat devices.

 

We can't help you sidestep anti-cheat here though.

8 minutes ago, ki8aras said:

blame the anticheat developers that blacklisted the app

7 minutes ago, OddOod said:

Don't forget to mark Tan's comment as solution

 

As for how to minimize the impact this has, you can replace the launcher shortcut with a cmd file that kills AHK, launches the game (there is a way to launch a program and not continue until the program "finishes" which it will when you close the game), then launch AHK and exit

Yeah it's just kinda annoying that they would blacklist an app that isn't just for cheating. 

 

Another problem - my RTSS performance overlay isn't showing, any ideas??

hi

Link to post
Share on other sites

11 minutes ago, OddOod said:

Don't forget to mark Tan's comment as solution

 

As for how to minimize the impact this has, you can replace the launcher shortcut with a cmd file that kills AHK, launches the game (there is a way to launch a program and not continue until the program "finishes" which it will when you close the game), then launch AHK and exit

Can you share a file that would do this? The code for a script in a pastebin is good enough for me

hi

Link to post
Share on other sites

2 minutes ago, PowerPCFan said:

Yeah it's just kinda annoying that they would blacklist an app that isn't just for cheating. 

 

Another problem - my RTSS performance overlay isn't showing, any ideas??

what api is the game running on? if i remember correctly rtss only works for dx11/dx12 (?)

gaming system: Intel core I9 12900ks / biostar Z690A valkyrie / 4x8gb corsair Vengeance @3333Mhz ram / RX 7900XTX pulse gpu / Thermalright peerless assassin 140 /Coolermaster Qube 500 case / Be Quiet Dark Power Pro 12 1500w power supply

 

laptop: Dell xps 9510, 3.5k OLED, i7 11800h, rtx 3050 ti, 2x16gb DDR4 @ 3200Mhz, 1TB main drive, 2TB add in ssd

Link to post
Share on other sites

5 minutes ago, PowerPCFan said:

Can you share a file that would do this? The code for a script in a pastebin is good enough for me

Not sure where you have AHK and TheFinals executables stored, but this should work

@echo off
taskkill /f /im autohotkey.exe

echo Launching The Finals...
"path\to\TheFinals.exe"

echo Waiting for The Finals to launch...
timeout /t 5

echo Launching AutoHotkey...
start "" "path\to\AutoHotkey.exe" 


 

5950X/4090FE primary rig  |  1920X/1070Ti Unraid for dockers  |  200TB TrueNAS w/ 1:1 backup

Link to post
Share on other sites

5 minutes ago, OddOod said:

Not sure where you have AHK and TheFinals executables stored, but this should work

@echo off
taskkill /f /im autohotkey.exe

echo Launching The Finals...
"path\to\TheFinals.exe"

echo Waiting for The Finals to launch...
timeout /t 5

echo Launching AutoHotkey...
start "" "path\to\AutoHotkey.exe" 


 

so would the AHK path be the path to my "macropad.ahk" file? 

hi

Link to post
Share on other sites

14 minutes ago, OddOod said:

Not sure where you have AHK and TheFinals executables stored, but this should work

@echo off
taskkill /f /im autohotkey.exe

echo Launching The Finals...
"path\to\TheFinals.exe"

echo Waiting for The Finals to launch...
timeout /t 5

echo Launching AutoHotkey...
start "" "path\to\AutoHotkey.exe" 


 

This is a dangerous solution that may cause OP to get banned. I doubt the anti-cheat only looks for suspected apps once at launch. If it detects it mid-game, bam, they're done. As far as I can tell, this code won't wait for the .exe to close, but instead only wait the 5 seconds.

Primary Gaming Rig:

Ryzen 5 5600 CPU, Gigabyte B450 I AORUS PRO WIFI mITX motherboard, PNY XLR8 16GB (2x8GB) DDR4-3200 CL16 RAM, Mushkin PILOT 500GB SSD (boot), Corsair Force 3 480GB SSD (games), XFX RX 5700 8GB GPU, Fractal Design Node 202 HTPC Case, Corsair SF 450 W 80+ Gold SFX PSU, Windows 11 Pro, Dell S2719DGF 27.0" 2560x1440 155 Hz Monitor, Corsair K68 RGB Wired Gaming Keyboard (MX Brown), Logitech G900 CHAOS SPECTRUM Wireless Mouse, Logitech G533 Headset

 

HTPC/Gaming Rig:

Ryzen 7 3700X CPU, ASRock B450M Pro4 mATX Motherboard, ADATA XPG GAMMIX D20 16GB (2x8GB) DDR4-3200 CL16 RAM, Mushkin PILOT 1TB SSD (boot), 2x Seagate BarraCuda 1 TB 3.5" HDD (data), Seagate BarraCuda 4 TB 3.5" HDD (DVR), PowerColor RX VEGA 56 8GB GPU, Fractal Design Node 804 mATX Case, Cooler Master MasterWatt 550 W 80+ Bronze Semi-modular ATX PSU, Silverstone SST-SOB02 Blu-Ray Writer, Windows 11 Pro, Logitech K400 Plus Keyboard, Corsair K63 Lapboard Combo (MX Red w/Blue LED), Logitech G603 Wireless Mouse, Kingston HyperX Cloud Stinger Headset, HAUPPAUGE WinTV-quadHD TV Tuner, Samsung 65RU9000 TV

Link to post
Share on other sites

3 minutes ago, Kid.Lazer said:

This is a dangerous solution that may cause OP to get banned. I doubt the anti-cheat only looks for suspected apps once at launch. If it detects it mid-game, bam, they're done.

That's why I use just the raw file path for the game, the script will wait for the game to exit before continuing. Conversely, `start "" "path to exe"` will launch a program and continue

 

5950X/4090FE primary rig  |  1920X/1070Ti Unraid for dockers  |  200TB TrueNAS w/ 1:1 backup

Link to post
Share on other sites

5 minutes ago, Kid.Lazer said:

This is a dangerous solution that may cause OP to get banned. I doubt the anti-cheat only looks for suspected apps once at launch. If it detects it mid-game, bam, they're done. As far as I can tell, this code won't wait for the .exe to close, but instead only wait the 5 seconds.

 

2 minutes ago, OddOod said:

That's why I use just the raw file path for the game, the script will wait for the game to exit before continuing. Conversely, `start "" "path to exe"` will launch a program and continue

 

so it is or isn't safe?? I don't really need the macros in-game, if that helps

hi

Link to post
Share on other sites

11 minutes ago, PowerPCFan said:

so would the AHK path be the path to my "macropad.ahk" file? 

No, just whatever AHK version you run. For me it would be "C:\Program Files\AutoHotkey\v2\AutoHotkey64.exe"
Though I'm not that familiar with AHK so you might have to add another line that activates(?) the macropad? I'd play around with it using "notepad.exe" instead of The FInals path

5950X/4090FE primary rig  |  1920X/1070Ti Unraid for dockers  |  200TB TrueNAS w/ 1:1 backup

Link to post
Share on other sites

Just now, OddOod said:

No, just whatever AHK version you run. For me it would be "C:\Program Files\AutoHotkey\v2\AutoHotkey64.exe"
Though I'm not that familiar with AHK so you might have to add another line that activates(?) the macropad? I'd play around with it using "notepad.exe" instead of The FInals path

Well opening the EXE does nothing, you need to open the .ahk file which automatically runs via the AutoHotkey Launcher app. 

hi

Link to post
Share on other sites

Just now, PowerPCFan said:

don't really need the macros in-game

Good, because according to their TOS that would be cheating. 

 

 

1 minute ago, PowerPCFan said:

so it is or isn't safe?

It should be safe, but I 1000% recommend looking up each command (google is your friend, I like SS64 for CMD command reference) to be confident that I'm not trying to compromise your computer. And I 100% recommend doing some testing to make sure it works correctly

5950X/4090FE primary rig  |  1920X/1070Ti Unraid for dockers  |  200TB TrueNAS w/ 1:1 backup

Link to post
Share on other sites

1 minute ago, OddOod said:

Good, because according to their TOS that would be cheating. 

 

 

It should be safe, but I 1000% recommend looking up each command (google is your friend, I like SS64 for CMD command reference) to be confident that I'm not trying to compromise your computer. And I 100% recommend doing some testing to make sure it works correctly

Alright, thanks!!

hi

Link to post
Share on other sites

1 hour ago, OddOod said:

Not sure where you have AHK and TheFinals executables stored, but this should work

@echo off
taskkill /f /im autohotkey.exe

echo Launching The Finals...
"path\to\TheFinals.exe"

echo Waiting for The Finals to launch...
timeout /t 5

echo Launching AutoHotkey...
start "" "path\to\AutoHotkey.exe" 


 

I eventually decided on this, which kills AHK when I open The Finals:

 

@echo off
taskkill /f /im AutoHotkeyU64.exe

echo Launching The Finals...
"C:\Users\Charlie\Documents\THE FINALS.url"

 

And I put a shortcut to my AHK script on my desktop so when I close the game I can just run the shortcut. Not ideal but it works good for me. 

Edit: i don't have the game installed to my documents folder, that's just a shortcut 😄

hi

Link to post
Share on other sites

1 hour ago, PowerPCFan said:

Yeah it's just kinda annoying that they would blacklist an app that isn't just for cheating.

But totally sensible, as there is no way for them to tell if you are using it to cheat or not.

ASUS B650E-F GAMING WIFI + R7 7800X3D + 2x Corsair Vengeance 32GB DDR5-6000 CL30-36-36-76  + ASUS RTX 4090 TUF Gaming OC

Router:  Intel N100 (pfSense) Backup: GL.iNet GL-X3000/ Spitz AX Switches: Netgear MS510TXUP, MS510TXPP, GS110EMX
WiFi6: Zyxel NWA210AX (1.7Gbit peak at 160Mhz) WiFi5: Ubiquiti NanoHD OpenWRT (~500Mbit at 80Mhz)
ISPs: Zen Full Fibre 900 (~930Mbit down, 115Mbit up) + Three 5G (~1200Mbit down, 115Mbit up, variable)
Upgrading Laptop/Desktop CNVIo WiFi 5 cards to PCIe WiFi6e/7

Link to post
Share on other sites

19 hours ago, BrandonLatzig said:

Edit: I am stupid, I apologize, please forgive

No, you were ignorant, which is vastly superior. Ignorance can be cured with an open mind which you clearly have. When you discover you're wrong, thank the corrector instead of asking for forgiveness, it will make both of you happier. 

5950X/4090FE primary rig  |  1920X/1070Ti Unraid for dockers  |  200TB TrueNAS w/ 1:1 backup

Link to post
Share on other sites

19 hours ago, PowerPCFan said:

I eventually decided on this

This is a really nice, safe middleground. And hey! you learned a bit of programming/automation, not a bad response to an error message

5950X/4090FE primary rig  |  1920X/1070Ti Unraid for dockers  |  200TB TrueNAS w/ 1:1 backup

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×