So i have seen comments and videos about people being able to get achivements and unlocks (Legendary items) by crashing right before the game ends.
So I made a small tool in C++ who can simulate a crash (Closes the process)
I'm trying to replicate this bug / glitch but have failed to do it so far, perhaps you guys can find smth else or replicate it.
here is the code:
Code:
// Crash Trigger Tool by samartan256
// https://elitepvpers.com
#include <iostream>
#include <Windows.h>
using namespace std;
bool menu = true;
bool exalor = true;
int main()
{
cout << "[WARHAMMER DARKTIDE: CARSH TRIGGER]\n\n";
while (menu) {
if (GetAsyncKeyState(VK_INSERT) & 1)
{
menu = !menu;
Sleep(100);
cout << "[+] Killing Process\n";
system("taskkill /IM Darktide.exe /F");
system("taskkill /IM Launcher.exe /F");
system("taskkill /IM start_protected_game.exe / F");
Beep(523, 500);
Sleep(5000);
return 0;
}
if (GetAsyncKeyState(VK_DELETE) & 1)
{
menu = !menu;
Sleep(100);
cout << "[+] TEST MESSAGE APP IS WORKING\n";
system("pause");
return 0;
}
}
}






