Kawaii Deathu Desu – Easily Grind Souls

Kawaii Deathu Desu – Easily Grind Souls 1 - steamlists.com
Kawaii Deathu Desu – Easily Grind Souls 1 - steamlists.com

Table of Contents

How to grind souls using AutoHotKey
 
 

Introduction

Here is a simple script I made to easily grind this game.
 
The script will automatically press A & D button repeatedly with the spacebar so you can leave the game open and it will automatically restart the stage.
 
 
 

Content

Firstly you need to have AutoHotKey which you can download it here https://www.autohotkey.com/ – [autohotkey.com] 
 
After that, just copy this code and paste it on notepad. rename it to something with .ahk as the extension. Double click to open the script and you’re ready to go.
 
 
Numpad 0 = Run the script
 
Numpad 1 = Pause/Unpause the script
 
Numpad 2 = Close the script
 
 

Numpad0::
loop
{
 SendInput {A}
 Sleep 60
 SendInput {D}
 Sleep 60
 SendInput {Space}
 Sleep 60
}
return

Numpad1::Pause
Numpad2::ExitApp

 
 
For some characters (Suu / Mary), there is a delay in their special skill that makes this script not useful. In this case, just change the code “Sleep 60” to “Sleep 120”.
 
 
I suggest Endless stage 6 (China) for the fastest soul grind. With max level character, I can get max of 3500 souls per run.
 
I have tested the script on all hard stages and it can easily earn you 3 skulls tokens.
 
 
This is all about Kawaii Deathu Desu – Easily Grind Souls; I hope you enjoy reading the Guide! If you feel like we should add more information or we forget/mistake, please let us know via commenting below, also you can check the original article here, and thanks! See you soon!
 
 


Be the first to comment

Leave a Reply

Your email address will not be published.


*