2024-06-03 19:29:42 +02:00
# SOUND VOLTEX EXCEED GEAR
2024-06-05 19:09:36 +02:00
< img src = "/img/sdvx6/exceedgear.png" >
2024-06-03 19:29:42 +02:00
!!! danger "Please make sure you downloaded your data from an appropriate source.< br > This guide is unable to troubleshoot any problems related to bad or poorly managed data."
---
### Nemsys & Valkyrie modes
2024-08-11 12:08:37 +02:00
!!! warning "Valkyrie mode requires a 120hz capable monitor, or to have patched your `.dll` with `Valkyrie Mode 60hz` ."
2024-06-03 19:29:42 +02:00
!!! tip ""
2024-08-11 12:08:37 +02:00
To make use of the Valkyrie Mode (Subscreen, 120FPS, S-CRITICAL..) you need to go to the `contents\prop` folder and edit the `ea3-config.xml` file.
2024-06-03 19:29:42 +02:00
We're interested in these lines:
```xml
< soft >
< model __type = "str" > KFC< / model >
< dest __type = "str" > J< / dest >
< spec __type = "str" > G< / spec >
< rev __type = "str" > A< / rev >
< ext __type = "str" > 2024052100< / ext >
< / soft >
```
This is the line that determines if the game will run in Nemsys (60 FPS) or Valkyrie (120 FPS) mode.
```xml
2024-08-11 12:08:37 +02:00
< spec __type = "str" > G< / spec >
2024-06-03 19:29:42 +02:00
```
2024-08-11 12:08:37 +02:00
Use:
2024-08-11 12:11:40 +02:00
- ^^`F`^^ for Nemsys
2024-08-11 12:08:37 +02:00
- ^^`G`^^ for Valkyrie
2024-06-03 19:29:42 +02:00
---
### Changing the game's language
!!! tip ""
Go to the `contents\prop` folder and edit the `ea3-config.xml` file.
We're interested in these lines:
```xml
< soft >
< model __type = "str" > KFC< / model >
< dest __type = "str" > J< / dest >
< spec __type = "str" > G< / spec >
< rev __type = "str" > A< / rev >
< ext __type = "str" > 2024052100< / ext >
< / soft >
```
This is the line that determines which region, and therefore which language the game will use.
```xml
< dest __type = "str" > J< / dest >
```
2024-08-11 12:08:37 +02:00
Use:
2024-08-11 12:11:40 +02:00
- ^^`J`^^ for Japan (Japanese)
- ^^`K`^^ for Korea (Korean + some censored jackets)
- ^^`A`^^ for Asia/Australia (English)
- ^^`U`^^ for America (English + some censoring in recent versions)
2024-08-11 12:08:37 +02:00
- ^^`Y`^^ for Indonesia
2024-06-03 19:29:42 +02:00
---
### More about ea3-config.xml
!!! tip ""
The `ea3-config.xml` file is located inside the `prop` folder.
Below is an explanation on what different sections of this file do.
The following lines change the PCBID and HARDID that your system reports to your e-amusement server.
There is ^^**no need to manually change this**^^ as `spice2x` will do it for us.
```xml
< pcbid __type = "str" > 00010203040506070809< / pcbid >
< hardid __type = "str" > 00010203040506070809< / hardid >
```
The following line determines what version of the game you are running.
^^**You should never change this**^^. It should always say `KFC` .
```xml
< model __type = "str" > KFC< / model >
```
^^**You should never change this**^^. It should always say `A` for Exceed Gear.
```xml
< rev __type = "str" > A< / rev >
```
The following line determines your datecode.
^^**Always keep it up to date**^^ with your game's current version.
```xml
< ext __type = "str" > 2024052100< / ext >
```
2024-06-05 19:09:36 +02:00
The following line determine what remote service URL `spice2x` is supposed to connect to.
2024-06-03 19:29:42 +02:00
There is ^^**no need to manually change this**^^ as `spice2x` will do it for us.
2024-06-05 19:09:36 +02:00
2024-06-03 19:29:42 +02:00
```xml
2024-06-05 19:09:36 +02:00
< services __type = "str" > http://localhost:8083< / services >
2024-06-03 19:29:42 +02:00
```