forked from Dniel97/segatools
improved all segatools.ini
configs
This commit is contained in:
parent
56e971c6a4
commit
e40e1dffe3
47
dist/carol/segatools.ini
vendored
47
dist/carol/segatools.ini
vendored
@ -1,23 +1,56 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
; Insert the path to the game Option directory here (contains Axxx directories)
|
; Insert the path to the game Option directory here (contains MOV1, PAR0,
|
||||||
|
; PAR1, RES0 and RES1 directories)
|
||||||
option=
|
option=
|
||||||
; Create an empty directory somewhere and insert the path here.
|
; Create an empty directory somewhere and insert the path here.
|
||||||
; This directory may be shared between multiple SEGA games.
|
; This directory may be shared between multiple SEGA games.
|
||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aime]
|
||||||
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
|
; reader.
|
||||||
|
enable=1
|
||||||
|
aimePath=DEVICE\aime.txt
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
default=127.0.0.1
|
default=127.0.0.1
|
||||||
|
|
||||||
[netenv]
|
[netenv]
|
||||||
; Simulate an ideal LAN environment.
|
; Simulate an ideal LAN environment. This may interfere with head-to-head play.
|
||||||
|
; Chunithm is extremely picky about its LAN environment, so leaving this
|
||||||
|
; setting enabled is strongly recommended.
|
||||||
enable=1
|
enable=1
|
||||||
|
; The final octet of the local host's IP address on the virtualized subnet (so,
|
||||||
|
; if the keychip subnet is `192.168.32.0` and this value is set to `11`, then the
|
||||||
|
; local host's virtualized LAN IP is `192.168.32.11`).
|
||||||
|
addrSuffix=11
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[gpio]
|
[gpio]
|
||||||
|
; Emulated Nu DIP switch for Distribution Server setting.
|
||||||
|
;
|
||||||
|
; If multiple machines are present on the same LAN then set this to 1 on
|
||||||
|
; exactly one machine and set this to 0 on all others.
|
||||||
dipsw1=1
|
dipsw1=1
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
@ -26,6 +59,10 @@ dipsw1=1
|
|||||||
; that subnet must start with 192.168.
|
; that subnet must start with 192.168.
|
||||||
subnet=192.168.126.0
|
subnet=192.168.126.0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Misc. hooks settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[gfx]
|
[gfx]
|
||||||
; Force the game to run windowed.
|
; Force the game to run windowed.
|
||||||
windowed=1
|
windowed=1
|
||||||
@ -34,6 +71,10 @@ framed=1
|
|||||||
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
||||||
monitor=0
|
monitor=0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aimeio]
|
[aimeio]
|
||||||
; To use a custom card reader IO DLL enter its path here.
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
; Leave empty if you want to use Segatools built-in keyboard input.
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
@ -57,4 +98,4 @@ test=0x70
|
|||||||
; Service button virtual-key code. Default is the F2 key.
|
; Service button virtual-key code. Default is the F2 key.
|
||||||
service=0x71
|
service=0x71
|
||||||
; Keyboard button to increment coin counter. Default is the F3 key.
|
; Keyboard button to increment coin counter. Default is the F3 key.
|
||||||
coin=0x72
|
coin=0x72
|
||||||
|
34
dist/chuni/segatools.ini
vendored
34
dist/chuni/segatools.ini
vendored
@ -1,3 +1,7 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
@ -8,6 +12,20 @@ option=
|
|||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aime]
|
||||||
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
|
; reader.
|
||||||
|
enable=1
|
||||||
|
aimePath=DEVICE\aime.txt
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -23,12 +41,20 @@ enable=1
|
|||||||
; local host's virtualized LAN IP is `192.168.32.11`).
|
; local host's virtualized LAN IP is `192.168.32.11`).
|
||||||
addrSuffix=11
|
addrSuffix=11
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
; that subnet must start with 192.168.
|
; that subnet must start with 192.168.
|
||||||
subnet=192.168.139.0
|
subnet=192.168.139.0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Misc. hooks settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[gfx]
|
[gfx]
|
||||||
; Force the game to run windowed.
|
; Force the game to run windowed.
|
||||||
windowed=1
|
windowed=1
|
||||||
@ -37,6 +63,10 @@ framed=1
|
|||||||
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
||||||
monitor=0
|
monitor=0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aimeio]
|
[aimeio]
|
||||||
; To use a custom card reader IO DLL enter its path here.
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
; Leave empty if you want to use Segatools built-in keyboard input.
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
@ -47,6 +77,10 @@ path=
|
|||||||
; Leave empty if you want to use Segatools built-in keyboard input.
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
path=
|
path=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; LED settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[led15093]
|
[led15093]
|
||||||
; Enable emulation of the 15093-06 controlled lights, which handle the air tower
|
; Enable emulation of the 15093-06 controlled lights, which handle the air tower
|
||||||
; RGBs and the rear LED panel (billboard) on the cabinet.
|
; RGBs and the rear LED panel (billboard) on the cabinet.
|
||||||
|
36
dist/chusan/segatools.ini
vendored
36
dist/chusan/segatools.ini
vendored
@ -1,3 +1,7 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
@ -8,6 +12,10 @@ option=
|
|||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
; reader.
|
; reader.
|
||||||
@ -21,10 +29,9 @@ aimePath=DEVICE\aime.txt
|
|||||||
; GP1232A02A FUTABA assembly.
|
; GP1232A02A FUTABA assembly.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
[aimeio]
|
; -----------------------------------------------------------------------------
|
||||||
; Uncomment this if you have custom (x64) aime implementation.
|
; Network settings
|
||||||
; Leave empty if you want to use Segatools built-in keyboard input.
|
; -----------------------------------------------------------------------------
|
||||||
;path=
|
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
@ -41,6 +48,10 @@ enable=1
|
|||||||
; local host's virtualized LAN IP is `192.168.32.11`).
|
; local host's virtualized LAN IP is `192.168.32.11`).
|
||||||
addrSuffix=11
|
addrSuffix=11
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
@ -65,6 +76,10 @@ dipsw2=1
|
|||||||
; the LED 837-15093-06 COM port and the AiMe reder hardware generation as well.
|
; the LED 837-15093-06 COM port and the AiMe reder hardware generation as well.
|
||||||
dipsw3=1
|
dipsw3=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Misc. hooks settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[gfx]
|
[gfx]
|
||||||
; Force the game to run windowed.
|
; Force the game to run windowed.
|
||||||
windowed=1
|
windowed=1
|
||||||
@ -73,6 +88,15 @@ framed=0
|
|||||||
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
||||||
monitor=0
|
monitor=0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aimeio]
|
||||||
|
; To use a custom card reader IO DLL (x64) enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
[chuniio]
|
[chuniio]
|
||||||
; Uncomment this if you have custom chuniio implementation comprised of a single 32bit DLL.
|
; Uncomment this if you have custom chuniio implementation comprised of a single 32bit DLL.
|
||||||
; (will use chu2to3 engine internally)
|
; (will use chu2to3 engine internally)
|
||||||
@ -83,6 +107,10 @@ monitor=0
|
|||||||
;path32=
|
;path32=
|
||||||
;path64=
|
;path64=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; LED settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[led15093]
|
[led15093]
|
||||||
; Enable emulation of the 15093-06 controlled lights, which handle the air tower
|
; Enable emulation of the 15093-06 controlled lights, which handle the air tower
|
||||||
; RGBs and the rear LED panel (billboard) on the cabinet.
|
; RGBs and the rear LED panel (billboard) on the cabinet.
|
||||||
|
28
dist/cm/segatools.ini
vendored
28
dist/cm/segatools.ini
vendored
@ -1,3 +1,7 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
@ -8,6 +12,10 @@ option=
|
|||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
; reader.
|
; reader.
|
||||||
@ -19,6 +27,10 @@ aimePath=DEVICE\aime.txt
|
|||||||
; GP1232A02A FUTABA assembly.
|
; GP1232A02A FUTABA assembly.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -30,6 +42,10 @@ default=127.0.0.1
|
|||||||
; setting enabled is recommended.
|
; setting enabled is recommended.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
@ -44,10 +60,22 @@ enable=1
|
|||||||
; this to 0 on exactly one machine and set this to 1 on all others.
|
; this to 0 on exactly one machine and set this to 1 on all others.
|
||||||
dipsw1=0
|
dipsw1=0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Misc. hooks settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[touch]
|
[touch]
|
||||||
; Enable/Disable WinTouch emulation
|
; Enable/Disable WinTouch emulation
|
||||||
enable=0
|
enable=0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aimeio]
|
||||||
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
; Input settings
|
; Input settings
|
||||||
|
86
dist/cxb/segatools.ini
vendored
86
dist/cxb/segatools.ini
vendored
@ -1,3 +1,7 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Make sure theses are full paths and not relative or you will have a bad time
|
; Make sure theses are full paths and not relative or you will have a bad time
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
@ -9,6 +13,27 @@ option=
|
|||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aime]
|
||||||
|
; Aime reader emulation
|
||||||
|
; CXB is stupid, so we have to make the paths go back one
|
||||||
|
enable=1
|
||||||
|
aimePath=../DEVICE/aime.txt
|
||||||
|
felicaPath=../DEVICE/felica.txt
|
||||||
|
|
||||||
|
[led]
|
||||||
|
; Emulation for the LED board. Currently it's just dummy responses,
|
||||||
|
; but if somebody wants to make their keyboard or whatever light
|
||||||
|
; up with the game they can
|
||||||
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -20,6 +45,10 @@ default=127.0.0.1
|
|||||||
; setting enabled is strongly recommended.
|
; setting enabled is strongly recommended.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
@ -29,21 +58,6 @@ billingCa=../DEVICE/ca.crt
|
|||||||
billingPub=../DEVICE/billing.pub
|
billingPub=../DEVICE/billing.pub
|
||||||
billingType=2
|
billingType=2
|
||||||
|
|
||||||
[gfx]
|
|
||||||
; Force the game to run windowed.
|
|
||||||
windowed=1
|
|
||||||
; Add a frame to the game window if running windowed.
|
|
||||||
framed=1
|
|
||||||
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
|
||||||
monitor=0
|
|
||||||
|
|
||||||
[aime]
|
|
||||||
; Aime reader emulation
|
|
||||||
; CXB is stupid, so we have to make the paths go back one
|
|
||||||
enable=1
|
|
||||||
aimePath=../DEVICE/aime.txt
|
|
||||||
felicaPath=../DEVICE/felica.txt
|
|
||||||
|
|
||||||
[eeprom]
|
[eeprom]
|
||||||
; See above
|
; See above
|
||||||
path=../DEVICE/eeprom.bin
|
path=../DEVICE/eeprom.bin
|
||||||
@ -52,11 +66,43 @@ path=../DEVICE/eeprom.bin
|
|||||||
; See above
|
; See above
|
||||||
path=../DEVICE/sram.bin
|
path=../DEVICE/sram.bin
|
||||||
|
|
||||||
[led]
|
; -----------------------------------------------------------------------------
|
||||||
; Emulation for the LED board. Currently it's just dummy responses,
|
; Misc. hooks settings
|
||||||
; but if somebody wants to make their keyboard or whatever light
|
; -----------------------------------------------------------------------------
|
||||||
; up with the game they can
|
|
||||||
enable=1
|
[gfx]
|
||||||
|
; Force the game to run windowed.
|
||||||
|
windowed=1
|
||||||
|
; Add a frame to the game window if running windowed.
|
||||||
|
framed=1
|
||||||
|
; Select the monitor to run the game on. (Fullscreen only, 0 =primary screen)
|
||||||
|
monitor=0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aimeio]
|
||||||
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
|
[cxbio]
|
||||||
|
; To use a custom crossbeats REV. DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Input settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
; Keyboard bindings are specified as hexadecimal (prefixed with 0x) or decimal
|
||||||
|
; (not prefixed with 0x) virtual-key codes, a list of which can be found here:
|
||||||
|
;
|
||||||
|
; https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
|
||||||
|
;
|
||||||
|
; This is, admittedly, not the most user-friendly configuration method in the
|
||||||
|
; world. An improved solution will be provided later.
|
||||||
|
|
||||||
[revio]
|
[revio]
|
||||||
; Enable emulation of the rev IO board
|
; Enable emulation of the rev IO board
|
||||||
|
34
dist/diva/segatools.ini
vendored
34
dist/diva/segatools.ini
vendored
@ -1,3 +1,7 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
@ -8,12 +12,20 @@ option=
|
|||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
; reader.
|
; reader.
|
||||||
enable=1
|
enable=1
|
||||||
aimePath=DEVICE\aime.txt
|
aimePath=DEVICE\aime.txt
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -25,7 +37,15 @@ default=127.0.0.1
|
|||||||
; setting enabled is strongly recommended.
|
; setting enabled is strongly recommended.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[gpio]
|
[gpio]
|
||||||
|
; Emulated Nu DIP switch for Distribution Server setting.
|
||||||
|
;
|
||||||
|
; If multiple machines are present on the same LAN then set this to 1 on
|
||||||
|
; exactly one machine and set this to 0 on all others.
|
||||||
dipsw1=1
|
dipsw1=1
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
@ -34,6 +54,20 @@ dipsw1=1
|
|||||||
; that subnet must start with 192.168.
|
; that subnet must start with 192.168.
|
||||||
subnet=192.168.78.0
|
subnet=192.168.78.0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aimeio]
|
||||||
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
|
[divaio]
|
||||||
|
; To use a custom Project DIVA Arcade IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in gamepad/wheel input.
|
||||||
|
path=
|
||||||
|
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
; Input settings
|
; Input settings
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
|
93
dist/fgo/segatools.ini
vendored
93
dist/fgo/segatools.ini
vendored
@ -1,3 +1,7 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
@ -8,6 +12,10 @@ option=
|
|||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
; reader.
|
; reader.
|
||||||
@ -19,6 +27,26 @@ aimePath=DEVICE\aime.txt
|
|||||||
; GP1232A02A FUTABA assembly.
|
; GP1232A02A FUTABA assembly.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
[deckReader]
|
||||||
|
; 837-15345 RFID deck reader emulation setting.
|
||||||
|
enable=1
|
||||||
|
|
||||||
|
[ftdi]
|
||||||
|
; FTDI serial to usb adapter emulation for CABINET LED.
|
||||||
|
enable=1
|
||||||
|
; COM port number where the LED board is connected to.
|
||||||
|
portNo=17
|
||||||
|
|
||||||
|
[led15093]
|
||||||
|
; 837-15093-06 LED board emulation setting.
|
||||||
|
enable=1
|
||||||
|
; COM port number for the LED board. Has to be the same as the FTDI port.
|
||||||
|
portNo=17
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -34,12 +62,29 @@ enable=1
|
|||||||
; local host's virtualized LAN IP is `192.168.32.11`).
|
; local host's virtualized LAN IP is `192.168.32.11`).
|
||||||
addrSuffix=11
|
addrSuffix=11
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
; that subnet must start with 192.168.
|
; that subnet must start with 192.168.
|
||||||
subnet=192.168.167.0
|
subnet=192.168.167.0
|
||||||
|
|
||||||
|
[gpio]
|
||||||
|
; ALLS DIP switches.
|
||||||
|
enable=1
|
||||||
|
|
||||||
|
; Enable freeplay mode. This will disable the coin slot and set the game to
|
||||||
|
; freeplay. Keep in mind that some game modes (e.g. Freedom/Time Modes) will not
|
||||||
|
; allow you to start a game in freeplay mode.
|
||||||
|
freeplay=0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Misc. hook settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[touch]
|
[touch]
|
||||||
; WinTouch emulation setting.
|
; WinTouch emulation setting.
|
||||||
enable=1
|
enable=1
|
||||||
@ -56,21 +101,19 @@ printerOutPath="DEVICE\print"
|
|||||||
; Rotate all printed images by 180 degrees.
|
; Rotate all printed images by 180 degrees.
|
||||||
rotate180=1
|
rotate180=1
|
||||||
|
|
||||||
[deckReader]
|
; -----------------------------------------------------------------------------
|
||||||
; 837-15345 RFID deck reader emulation setting.
|
; Custom IO settings
|
||||||
enable=1
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[ftdi]
|
[aimeio]
|
||||||
; FTDI serial to usb adapter emulation for CABINET LED.
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
enable=1
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
; COM port number where the LED board is connected to.
|
path=
|
||||||
portNo=17
|
|
||||||
|
|
||||||
[led15093]
|
[fgoio]
|
||||||
; 837-15093-06 LED board emulation setting.
|
; To use a custom Fate/Grand Order Arcade IO DLL enter its path here.
|
||||||
enable=1
|
; Leave empty if you want to use Segatools built-in gamepad input.
|
||||||
; COM port number for the LED board. Has to be the same as the FTDI port.
|
path=
|
||||||
portNo=17
|
|
||||||
|
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
; Input settings
|
; Input settings
|
||||||
@ -92,3 +135,27 @@ test=0x31
|
|||||||
service=0x32
|
service=0x32
|
||||||
; Keyboard button to increment coin counter. Default is the 3 key.
|
; Keyboard button to increment coin counter. Default is the 3 key.
|
||||||
coin=0x33
|
coin=0x33
|
||||||
|
|
||||||
|
; .·:'''''''''''''''''''''''''''''''''''''''''''''':·.
|
||||||
|
; : : ______ / \ [] : :
|
||||||
|
; : : | | _____ \ / Coin : :
|
||||||
|
; : : |______| { (0) } /--\ Attack. : :
|
||||||
|
; : : DECK \ / / \ : :
|
||||||
|
; : : | | > < : :
|
||||||
|
; : : | | \ / ___ : :
|
||||||
|
; : : | | \--/ | | : :
|
||||||
|
; : : JOY Noble. | | : :
|
||||||
|
; : : |___| : :
|
||||||
|
; : : AIME. : :
|
||||||
|
; '·:..............................................:·'
|
||||||
|
;
|
||||||
|
; Only XInput is currently supported.
|
||||||
|
|
||||||
|
; Controller Button
|
||||||
|
; -------------------------------------------------------
|
||||||
|
; Left Stick Joystick
|
||||||
|
; Left Stick Click Reset Camera
|
||||||
|
; Left Trigger Dash
|
||||||
|
; Left Shoulder Switch Target
|
||||||
|
; A/B Attack
|
||||||
|
; X/Y Noble Phantasm
|
||||||
|
40
dist/idac/segatools.ini
vendored
40
dist/idac/segatools.ini
vendored
@ -1,18 +1,30 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
; Insert the path to the game Option directory here (contains OPxx directories)
|
; Insert the path to the game Option directory here (contains MVxx directories)
|
||||||
option=
|
option=
|
||||||
; Create an empty directory somewhere and insert the path here.
|
; Create an empty directory somewhere and insert the path here.
|
||||||
; This directory may be shared between multiple SEGA games.
|
; This directory may be shared between multiple SEGA games.
|
||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Controls emulation of the Aime card reader assembly.
|
; Controls emulation of the Aime card reader assembly.
|
||||||
enable=1
|
enable=1
|
||||||
aimePath=DEVICE\aime.txt
|
aimePath=DEVICE\aime.txt
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -24,6 +36,10 @@ default=127.0.0.1
|
|||||||
; setting enabled is recommended.
|
; setting enabled is recommended.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
@ -59,13 +75,17 @@ dipsw3=0
|
|||||||
dipsw4=0
|
dipsw4=0
|
||||||
dipsw5=0
|
dipsw5=0
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aimeio]
|
[aimeio]
|
||||||
; To use a custom card reader IO DLL enter its path here.
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
; Leave empty if you want to use Segatools built-in keyboard input.
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
path=
|
path=
|
||||||
|
|
||||||
[idacio]
|
[idacio]
|
||||||
; To use a custom Initial D The Arcade IO DLL enter its path here.
|
; To use a custom Initial D THE ARCADE IO DLL enter its path here.
|
||||||
; Leave empty if you want to use Segatools built-in gamepad/wheel input.
|
; Leave empty if you want to use Segatools built-in gamepad/wheel input.
|
||||||
path=
|
path=
|
||||||
|
|
||||||
@ -106,6 +126,22 @@ mode=xinput
|
|||||||
restrict=128
|
restrict=128
|
||||||
|
|
||||||
[xinput]
|
[xinput]
|
||||||
|
; XInput bindings
|
||||||
|
;
|
||||||
|
; Left Stick Steering
|
||||||
|
; Right Stick (Steering) when "singleStickSteering" is disabled
|
||||||
|
; Left Trigger Brake
|
||||||
|
; Right Trigger Accelerator
|
||||||
|
; Left Stick Click Left (used for Time Up)
|
||||||
|
; Right Stick Click Right (used for Time Up)
|
||||||
|
; Left Shoulder Shift Down
|
||||||
|
; Right Shoulder Shift Up
|
||||||
|
; Start/A Start
|
||||||
|
; Back/B View Change
|
||||||
|
; X Shift Up
|
||||||
|
; Y Shift Down
|
||||||
|
; D-Pad D-Pad
|
||||||
|
|
||||||
; Left and right thumbsticks are mapped to left and right dpad buttons.
|
; Left and right thumbsticks are mapped to left and right dpad buttons.
|
||||||
; Press both thumbsticks to trigger "Time Up" and exit the course.
|
; Press both thumbsticks to trigger "Time Up" and exit the course.
|
||||||
; Automatically reset the simulated shifter to Neutral when XInput Start is
|
; Automatically reset the simulated shifter to Neutral when XInput Start is
|
||||||
|
66
dist/idz/segatools.ini
vendored
66
dist/idz/segatools.ini
vendored
@ -1,3 +1,7 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
@ -8,6 +12,10 @@ option=
|
|||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Controls emulation of the Aime card reader assembly.
|
; Controls emulation of the Aime card reader assembly.
|
||||||
enable=1
|
enable=1
|
||||||
@ -16,19 +24,15 @@ aimePath=DEVICE\aime.txt
|
|||||||
felicaGen=0
|
felicaGen=0
|
||||||
aimeGen=1
|
aimeGen=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
default=127.0.0.1
|
default=127.0.0.1
|
||||||
|
|
||||||
[ds]
|
|
||||||
; Region code on the emulated AMEX board DS EEPROM.
|
|
||||||
; 1: Japan
|
|
||||||
; 4: Export (some UI elements in English)
|
|
||||||
;
|
|
||||||
; NOTE: Changing this setting causes a factory reset.
|
|
||||||
region=4
|
|
||||||
|
|
||||||
[netenv]
|
[netenv]
|
||||||
; Simulate an ideal LAN environment. This may interfere with head-to-head play.
|
; Simulate an ideal LAN environment. This may interfere with head-to-head play.
|
||||||
; SEGA games are somewhat picky about their LAN environment, so leaving this
|
; SEGA games are somewhat picky about their LAN environment, so leaving this
|
||||||
@ -40,12 +44,35 @@ enable=1
|
|||||||
; Needed for in store battle, one needs to set it to 12.
|
; Needed for in store battle, one needs to set it to 12.
|
||||||
;addrSuffix=12
|
;addrSuffix=12
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
; that subnet must start with 192.168.
|
; that subnet must start with 192.168.
|
||||||
subnet=192.168.158.0
|
subnet=192.168.158.0
|
||||||
|
|
||||||
|
[ds]
|
||||||
|
; Region code on the emulated AMEX board DS EEPROM.
|
||||||
|
; 1: Japan
|
||||||
|
; 4: Export (some UI elements in English)
|
||||||
|
;
|
||||||
|
; NOTE: Changing this setting causes a factory reset.
|
||||||
|
region=4
|
||||||
|
|
||||||
|
[gpio]
|
||||||
|
; Emulated Nu DIP switch for Distribution Server setting.
|
||||||
|
;
|
||||||
|
; If multiple machines are present on the same LAN then set this to 1 on
|
||||||
|
; exactly one machine and set this to 0 on all others.
|
||||||
|
dipsw1=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Misc. hooks settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[gfx]
|
[gfx]
|
||||||
; Enables the graphics hook. This is required for some Initial D Zero versions
|
; Enables the graphics hook. This is required for some Initial D Zero versions
|
||||||
; for example v1.31 and v2.11 to run properly in fullscreen.
|
; for example v1.31 and v2.11 to run properly in fullscreen.
|
||||||
@ -57,12 +84,9 @@ framed=1
|
|||||||
; Select the monitor to run the game on. (Fullscreen only, 0=primary screen)
|
; Select the monitor to run the game on. (Fullscreen only, 0=primary screen)
|
||||||
monitor=0
|
monitor=0
|
||||||
|
|
||||||
[gpio]
|
; -----------------------------------------------------------------------------
|
||||||
; Emulated Nu DIP switch for Distribution Server setting.
|
; Custom IO settings
|
||||||
;
|
; -----------------------------------------------------------------------------
|
||||||
; If multiple machines are present on the same LAN then set this to 1 on
|
|
||||||
; exactly one machine and set this to 0 on all others.
|
|
||||||
dipsw1=1
|
|
||||||
|
|
||||||
[aimeio]
|
[aimeio]
|
||||||
; To use a custom card reader IO DLL enter its path here.
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
@ -111,6 +135,20 @@ mode=xinput
|
|||||||
restrict=97
|
restrict=97
|
||||||
|
|
||||||
[xinput]
|
[xinput]
|
||||||
|
; XInput bindings
|
||||||
|
;
|
||||||
|
; Left Stick Steering
|
||||||
|
; Right Stick (Steering) when "singleStickSteering" is disabled
|
||||||
|
; Left Trigger Brake
|
||||||
|
; Right Trigger Accelerator
|
||||||
|
; Left Shoulder Shift Down
|
||||||
|
; Right Shoulder Shift Up
|
||||||
|
; Start/A Start
|
||||||
|
; Back/B View Change
|
||||||
|
; X Shift Up
|
||||||
|
; Y Shift Down
|
||||||
|
; D-Pad D-Pad
|
||||||
|
|
||||||
; Automatically reset the simulated shifter to Neutral when XInput Start is
|
; Automatically reset the simulated shifter to Neutral when XInput Start is
|
||||||
; pressed (e.g. when navigating menus between races).
|
; pressed (e.g. when navigating menus between races).
|
||||||
autoNeutral=1
|
autoNeutral=1
|
||||||
|
36
dist/mai2/segatools.ini
vendored
36
dist/mai2/segatools.ini
vendored
@ -1,13 +1,21 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
; Insert the path to the game Option directory here (contains Axxx, Bxxx directories)
|
; Insert the path to the game Option directory here (contains Axxx directories)
|
||||||
option=
|
option=
|
||||||
; Create an empty directory somewhere and insert the path here.
|
; Create an empty directory somewhere and insert the path here.
|
||||||
; This directory may be shared between multiple SEGA games.
|
; This directory may be shared between multiple SEGA games.
|
||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
; reader.
|
; reader.
|
||||||
@ -19,6 +27,10 @@ aimePath=DEVICE\aime.txt
|
|||||||
; GP1232A02A FUTABA assembly.
|
; GP1232A02A FUTABA assembly.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -29,6 +41,14 @@ default=127.0.0.1
|
|||||||
; SEGA games are somewhat picky about its LAN environment, so leaving this
|
; SEGA games are somewhat picky about its LAN environment, so leaving this
|
||||||
; setting enabled is recommended.
|
; setting enabled is recommended.
|
||||||
enable=1
|
enable=1
|
||||||
|
; The final octet of the local host's IP address on the virtualized subnet (so,
|
||||||
|
; if the keychip subnet is `192.168.32.0` and this value is set to `11`, then the
|
||||||
|
; local host's virtualized LAN IP is `192.168.32.11`).
|
||||||
|
addrSuffix=11
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
@ -49,6 +69,20 @@ freeplay=0
|
|||||||
; this to 1 on exactly one machine and set this to 0 on all others.
|
; this to 1 on exactly one machine and set this to 0 on all others.
|
||||||
dipsw1=1
|
dipsw1=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aimeio]
|
||||||
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
|
[mai2io]
|
||||||
|
; To use a custom maimai DX IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
; Input settings
|
; Input settings
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
|
71
dist/mercury/segatools.ini
vendored
71
dist/mercury/segatools.ini
vendored
@ -1,11 +1,20 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=amfs
|
amfs=
|
||||||
|
; Insert the path to the game Option directory here (contains Axxx directories)
|
||||||
|
option=
|
||||||
; Create an empty directory somewhere and insert the path here.
|
; Create an empty directory somewhere and insert the path here.
|
||||||
; This directory may be shared between multiple SEGA games.
|
; This directory may be shared between multiple SEGA games.
|
||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=appdata
|
appdata=
|
||||||
option=option
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
@ -18,6 +27,10 @@ aimePath=DEVICE\aime.txt
|
|||||||
; GP1232A02A FUTABA assembly.
|
; GP1232A02A FUTABA assembly.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -28,6 +41,14 @@ default=127.0.0.1
|
|||||||
; SEGA games are somewhat picky about their LAN environment, so leaving this
|
; SEGA games are somewhat picky about their LAN environment, so leaving this
|
||||||
; setting enabled is recommended.
|
; setting enabled is recommended.
|
||||||
enable=1
|
enable=1
|
||||||
|
; The final octet of the local host's IP address on the virtualized subnet (so,
|
||||||
|
; if the keychip subnet is `192.168.32.0` and this value is set to `11`, then the
|
||||||
|
; local host's virtualized LAN IP is `192.168.32.11`).
|
||||||
|
addrSuffix=11
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
@ -35,9 +56,6 @@ enable=1
|
|||||||
; that subnet must start with 192.168.
|
; that subnet must start with 192.168.
|
||||||
subnet=192.168.174.0
|
subnet=192.168.174.0
|
||||||
|
|
||||||
[gfx]
|
|
||||||
enable=1
|
|
||||||
|
|
||||||
[gpio]
|
[gpio]
|
||||||
; ALLS DIP switches.
|
; ALLS DIP switches.
|
||||||
enable=1
|
enable=1
|
||||||
@ -51,6 +69,35 @@ freeplay=0
|
|||||||
; this to 1 on exactly one machine and set this to 0 on all others.
|
; this to 1 on exactly one machine and set this to 0 on all others.
|
||||||
dipsw1=1
|
dipsw1=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Misc. hook settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[gfx]
|
||||||
|
enable=1
|
||||||
|
|
||||||
|
; Hooks related to the touch boards
|
||||||
|
[touch]
|
||||||
|
enable=1
|
||||||
|
|
||||||
|
; Hooks related to the LED board (codenamed Elisabeth)
|
||||||
|
[elisabeth]
|
||||||
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aimeio]
|
||||||
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
|
[mercuryio]
|
||||||
|
; To use a custom WACCA IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
; Input settings
|
; Input settings
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
@ -75,15 +122,3 @@ coin=0x72
|
|||||||
volup=0x26
|
volup=0x26
|
||||||
; Volume down virtual-key code. Default is the "DOWN" key.
|
; Volume down virtual-key code. Default is the "DOWN" key.
|
||||||
voldown=0x28
|
voldown=0x28
|
||||||
|
|
||||||
; Hooks related to the touch boards
|
|
||||||
[touch]
|
|
||||||
enable=1
|
|
||||||
|
|
||||||
; Hooks related to the LED board (codenamed Elisabeth)
|
|
||||||
[elisabeth]
|
|
||||||
enable=1
|
|
||||||
|
|
||||||
;[mercuryio]
|
|
||||||
; Use mercuryio.dll
|
|
||||||
;path=mercuryio.dll
|
|
||||||
|
52
dist/mu3/segatools.ini
vendored
52
dist/mu3/segatools.ini
vendored
@ -1,3 +1,7 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
@ -8,6 +12,10 @@ option=
|
|||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=
|
appdata=
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
; reader.
|
; reader.
|
||||||
@ -19,6 +27,10 @@ aimePath=DEVICE\aime.txt
|
|||||||
; GP1232A02A FUTABA assembly.
|
; GP1232A02A FUTABA assembly.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -30,6 +42,10 @@ default=127.0.0.1
|
|||||||
; setting enabled is recommended.
|
; setting enabled is recommended.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
; If you disable netenv then you must set this to your LAN's IP subnet, and
|
||||||
@ -49,12 +65,26 @@ freeplay=0
|
|||||||
; this to 1 on exactly one machine and set this to 0 on all others.
|
; this to 1 on exactly one machine and set this to 0 on all others.
|
||||||
dipsw1=1
|
dipsw1=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Misc. hook settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[gfx]
|
[gfx]
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
[led15093]
|
; -----------------------------------------------------------------------------
|
||||||
; 837-15093-06 LED board emulation setting.
|
; Custom IO settings
|
||||||
enable=1
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
[aimeio]
|
||||||
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
|
path=
|
||||||
|
|
||||||
|
[fgoio]
|
||||||
|
; To use a custom O.N.G.E.K.I. IO DLL enter its path here.
|
||||||
|
; Leave empty if you want to use Segatools built-in keyboard/gamepad input.
|
||||||
|
path=
|
||||||
|
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
; Input settings
|
; Input settings
|
||||||
@ -79,6 +109,22 @@ coin=0x72
|
|||||||
; Set "1" to enable mouse lever emulation, "0" to use XInput
|
; Set "1" to enable mouse lever emulation, "0" to use XInput
|
||||||
mouse=1
|
mouse=1
|
||||||
|
|
||||||
|
; XInput input bindings
|
||||||
|
;
|
||||||
|
; Left Stick Lever
|
||||||
|
; Left Trigger Lever (move to the left)
|
||||||
|
; Right Trigger Lever (move to the right)
|
||||||
|
; Left Left red button
|
||||||
|
; Up Left green button
|
||||||
|
; Right Left blue button
|
||||||
|
; Left Shoulder Left side button
|
||||||
|
; Right Shoulder Right side button
|
||||||
|
; X Right red button
|
||||||
|
; Y Right green button
|
||||||
|
; A Right blue button
|
||||||
|
; Back Left menu button
|
||||||
|
; Start Right menu button
|
||||||
|
|
||||||
; Keyboard input bindings
|
; Keyboard input bindings
|
||||||
left1=0x41 ; A
|
left1=0x41 ; A
|
||||||
left2=0x53 ; S
|
left2=0x53 ; S
|
||||||
|
56
dist/swdc/segatools.ini
vendored
56
dist/swdc/segatools.ini
vendored
@ -1,13 +1,21 @@
|
|||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Path settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[vfs]
|
[vfs]
|
||||||
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
; Insert the path to the game AMFS directory here (contains ICF1 and ICF2)
|
||||||
amfs=
|
amfs=
|
||||||
; Insert the path to the game Option directory here (contains OPxx directories)
|
; Insert the path to the game Option directory here (contains Axxx directories)
|
||||||
option=
|
option=
|
||||||
; Create an empty directory somewhere and insert the path here.
|
; Create an empty directory somewhere and insert the path here.
|
||||||
; This directory may be shared between multiple SEGA games.
|
; This directory may be shared between multiple SEGA games.
|
||||||
; NOTE: This has nothing to do with Windows %APPDATA%.
|
; NOTE: This has nothing to do with Windows %APPDATA%.
|
||||||
appdata=appdata
|
appdata=appdata
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Device settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aime]
|
[aime]
|
||||||
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
; Enable Aime card reader assembly emulation. Disable to use a real SEGA Aime
|
||||||
; reader.
|
; reader.
|
||||||
@ -19,6 +27,10 @@ aimePath=DEVICE\aime.txt
|
|||||||
; GP1232A02A FUTABA assembly.
|
; GP1232A02A FUTABA assembly.
|
||||||
enable=1
|
enable=1
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Network settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[dns]
|
[dns]
|
||||||
; Insert the hostname or IP address of the server you wish to use here.
|
; Insert the hostname or IP address of the server you wish to use here.
|
||||||
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
; Note that 127.0.0.1, localhost etc are specifically rejected.
|
||||||
@ -34,12 +46,29 @@ enable=1
|
|||||||
; local host's virtualized LAN IP is `192.168.32.11`).
|
; local host's virtualized LAN IP is `192.168.32.11`).
|
||||||
addrSuffix=11
|
addrSuffix=11
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Board settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[keychip]
|
[keychip]
|
||||||
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
; The /24 LAN subnet that the emulated keychip will tell the game to expect.
|
||||||
; You must set this to your LAN's IP subnet, and that subnet must start with 192.168,
|
; You must set this to your LAN's IP subnet, and that subnet must start with 192.168,
|
||||||
; in order to find the MAIN cabinet.
|
; in order to find the MAIN cabinet.
|
||||||
subnet=192.168.160.0
|
subnet=192.168.160.0
|
||||||
|
|
||||||
|
[gpio]
|
||||||
|
; ALLS DIP switches.
|
||||||
|
enable=1
|
||||||
|
|
||||||
|
; Enable freeplay mode. This will disable the coin slot and set the game to
|
||||||
|
; freeplay. Keep in mind that some game modes (e.g. Freedom/Time Modes) will not
|
||||||
|
; allow you to start a game in freeplay mode.
|
||||||
|
freeplay=0´
|
||||||
|
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
; Custom IO settings
|
||||||
|
; -----------------------------------------------------------------------------
|
||||||
|
|
||||||
[aimeio]
|
[aimeio]
|
||||||
; To use a custom card reader IO DLL enter its path here.
|
; To use a custom card reader IO DLL enter its path here.
|
||||||
; Leave empty if you want to use Segatools built-in keyboard input.
|
; Leave empty if you want to use Segatools built-in keyboard input.
|
||||||
@ -50,15 +79,6 @@ path=
|
|||||||
; Leave empty if you want to use Segatools built-in gamepad/wheel input.
|
; Leave empty if you want to use Segatools built-in gamepad/wheel input.
|
||||||
path=
|
path=
|
||||||
|
|
||||||
[gpio]
|
|
||||||
; ALLS DIP switches.
|
|
||||||
enable=1
|
|
||||||
|
|
||||||
; Enable freeplay mode. This will disable the coin slot and set the game to
|
|
||||||
; freeplay. Keep in mind that some game modes (e.g. Freedom/Time Modes) will not
|
|
||||||
; allow you to start a game in freeplay mode.
|
|
||||||
freeplay=0
|
|
||||||
|
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
; Input settings
|
; Input settings
|
||||||
; -----------------------------------------------------------------------------
|
; -----------------------------------------------------------------------------
|
||||||
@ -96,6 +116,22 @@ mode=xinput
|
|||||||
restrict=128
|
restrict=128
|
||||||
|
|
||||||
[xinput]
|
[xinput]
|
||||||
|
; XInput bindings
|
||||||
|
;
|
||||||
|
; Left Stick Steering
|
||||||
|
; Right Stick (Steering) when "singleStickSteering" is disabled
|
||||||
|
; Left Trigger Brake
|
||||||
|
; Right Trigger Accelerator
|
||||||
|
; Left Shoulder Left Paddle
|
||||||
|
; Right Shoulder Right Paddle
|
||||||
|
; Start Start
|
||||||
|
; Back View Change
|
||||||
|
; A Green (Wheel)
|
||||||
|
; B Red (Wheel)
|
||||||
|
; X Blue (Wheel)
|
||||||
|
; Y Yellow (Wheel)
|
||||||
|
; D-Pad D-Pad
|
||||||
|
|
||||||
; Use the left thumbstick for steering instead of both on XInput Controllers.
|
; Use the left thumbstick for steering instead of both on XInput Controllers.
|
||||||
; Not recommended as it will not give you the precision needed for this game.
|
; Not recommended as it will not give you the precision needed for this game.
|
||||||
singleStickSteering=1
|
singleStickSteering=1
|
||||||
|
@ -67,11 +67,11 @@ HRESULT fgo_io_poll(void)
|
|||||||
fgo_gamebtn |= FGO_IO_GAMEBTN_TARGET;
|
fgo_gamebtn |= FGO_IO_GAMEBTN_TARGET;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xb & XINPUT_GAMEPAD_A) {
|
if (xb & XINPUT_GAMEPAD_A || xb & XINPUT_GAMEPAD_B) {
|
||||||
fgo_gamebtn |= FGO_IO_GAMEBTN_ATTACK;
|
fgo_gamebtn |= FGO_IO_GAMEBTN_ATTACK;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (xb & XINPUT_GAMEPAD_Y) {
|
if (xb & XINPUT_GAMEPAD_Y || xb & XINPUT_GAMEPAD_X) {
|
||||||
fgo_gamebtn |= FGO_IO_GAMEBTN_NOBLE_PHANTASHM;
|
fgo_gamebtn |= FGO_IO_GAMEBTN_NOBLE_PHANTASHM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -283,7 +283,7 @@ Enable keychip emulation. Disable to use a real keychip.
|
|||||||
Default: `A69E-01A88888888`
|
Default: `A69E-01A88888888`
|
||||||
|
|
||||||
Keychip serial number. Keychip serials observed in the wild follow this
|
Keychip serial number. Keychip serials observed in the wild follow this
|
||||||
pattern: `A6xE-01Ayyyyyyyy`.
|
pattern: `A\d{2}(E01|X20)[ABCDU]\d{8}`.
|
||||||
|
|
||||||
### `gameId`
|
### `gameId`
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user