Setaria the Demon Realm - device integration

Does anyone know how to play this mod in Japanese?
Or does anyone know how to edit the data.win?

If you mean about editing the data.win text to switch from english to japanese then I’m confused as the game by default is in japanese. The mod only does gameplay and device integration stuff.

You can change language in the game’s settings.

1 Like

I could never use Intiface, so I made my own script with xtoy:

1 Like

I’ve added a “dash” function to the game, on the left shift key with some invincibility frames that consume bullets. This makes the gameplay more dynamic even if the game becomes easier.
You need the double jump (so you can’t sequence break the start) and 4 bullets.

Using UndertaleModTool, you have to add 2 variables in gml_Object_oPlayer_Step_1:
dash = 1
dashdelay = 30

Then you can add those lines of code after line 191 of gml_Object_oPlayer_Step_0 :
/* Start of code /
if (keyboard_check(vk_shift) && dashdelay > 0 && oGun.bullet > 3)
{
if (dash > 0)
{
walk_spd = 36
oGun.bullet -= 4
muteki_flg = 1 // Invincibilityflag
muteki_count = 10 // Invincibility frames
dash = 0
}
walk_spd–
dashdelay–
}
else
{
walk_spd = 5.5
if (!keyboard_check(vk_shift)) // enables dashing after releasing the shift key
{
dash = 1
dash_muteki = 1
dashdelay = 30
}
}
/
End of code */

1 Like

are there instructions on how to use this?

The Xtoy Script you mean?
You either load the script or save it to your script and load it to your dashboard.
Then add Bluetooth devices with the “+” sign at the top right and test it to make sure it works.
Then you link the script to the added device by clicking on the electric plug symbol on the script window to link an output to a device.

Start the game, then click the controller symbol labeled “Process Monitor”.
You will be asked to add a chrome extension and download a software as seen in this guide : Process Monitor | XToys Guide
Once the process monitor starts working, the symbol will be green and you will see floating point values for Shield, Pleasure and Bullets

1 Like