Difference between revisions of "Point Blank X"
Jump to navigation
Jump to search
| (2 intermediate revisions by the same user not shown) | |||
| Line 11: | Line 11: | ||
|gameplayshot = Point Blank X Gameplay.jpg |
|gameplayshot = Point Blank X Gameplay.jpg |
||
|gamename = Point Blank X |
|gamename = Point Blank X |
||
|note = |
|note =[[Demulshooter | Requires Demulshooter]] |
||
}}<big> |
}}<big> |
||
{{Controls |
{{Controls |
||
| Line 33: | Line 33: | ||
* Copy the content of DemulShooter's \Unity\PointBlankX\ directory to the main game folder, where the PBX100-2-NA-MPR0-A63.exe file is located. |
* Copy the content of DemulShooter's \Unity\PointBlankX\ directory to the main game folder, where the PBX100-2-NA-MPR0-A63.exe file is located. |
||
** Edit the newly copied Setting.ini file (located in PBX100-2-NA-MPR0-A63_Data\ subdirectory of the game) to your needs. Available options and values are written in the ini file. Here is a sample Settings.ini set to english with PBX Logo |
** Edit the newly copied Setting.ini file (located in PBX100-2-NA-MPR0-A63_Data\ subdirectory of the game) to your needs. Available options and values are written in the ini file. Here is a sample Settings.ini set to english with PBX Logo |
||
| ⚫ | |||
<syntaxhighlight> |
|||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
BACKUP_PATH ./NVRAM/ # Backup save location |
|||
| ⚫ | |||
LANGUAGE en-US, ja-JP,zh-CN,ko-KR,es-ES,pt-BR,th-TH,ru-RU,id-ID # language at the first is default |
LANGUAGE en-US, ja-JP,zh-CN,ko-KR,es-ES,pt-BR,th-TH,ru-RU,id-ID # language at the first is default |
||
LOGO PBX # Logo at the first is default. Choices are : PBX, GBX, GBX-CH, GBX-JP |
LOGO PBX # Logo at the first is default. Choices are : PBX, GBX, GBX-CH, GBX-JP |
||
</pre> |
|||
</syntaxhighlight> |
|||
*You can also edit the PBX_BepInEx_DemulShooter_Plugin.ini file located in the BepInEx\plugins\ subdirectory to edit some game display settings (resolution + fullscreen mode). |
*You can also edit the PBX_BepInEx_DemulShooter_Plugin.ini file located in the BepInEx\plugins\ subdirectory to edit some game display settings (resolution + fullscreen mode). |
||
*Run the game. |
*Run the game. |
||
*Run DemulShooter for this game using the command: < |
*Run DemulShooter for this game using the command: <code>DemulShooter.exe -target=es4 -rom=pblankx</code> |
||
**Additionally, crosshairs can be turned off with the -nocrosshair command. |
**Additionally, crosshairs can be turned off with the -nocrosshair command. |
||
== Sample AHK Script == |
== Sample AHK Script == |
||
| Line 77: | Line 75: | ||
[[Category: Arcade_Games]] |
[[Category: Arcade_Games]] |
||
[[Category: PC_Based_Arcade_Games]] |
[[Category: PC_Based_Arcade_Games]] |
||
{{edit protected}} |
|||
Latest revision as of 18:28, 7 August 2024
Point Blank X is the 4th game in the series combining stages from all previous games (and some new) in a stunning HD presentation. Players are faced with various levels and challenges that test their speed, accuracy, and reflexes.
Setup Guide
Point Blank X can be set up with 2 different methods, this guide will cover the Demulshooter process, Teknoparrot is also an option.
Installation
- Download Demulshooter from GitHub
- Follow the DemulShooter wiki and configure your lightguns.
- Copy the content of DemulShooter's \Unity\PointBlankX\ directory to the main game folder, where the PBX100-2-NA-MPR0-A63.exe file is located.
- Edit the newly copied Setting.ini file (located in PBX100-2-NA-MPR0-A63_Data\ subdirectory of the game) to your needs. Available options and values are written in the ini file. Here is a sample Settings.ini set to english with PBX Logo
CONTROLLER 1 # 0=BNUsio 1=Simulated GUNPORT 2 # COM port for Gun board TICKET 0 # 0=Disabled, 1=Enabled MAIN_PATH ./NVRAM/ # Main save location BACKUP_PATH ./NVRAM/ # Backup save location LANGUAGE en-US, ja-JP,zh-CN,ko-KR,es-ES,pt-BR,th-TH,ru-RU,id-ID # language at the first is default LOGO PBX # Logo at the first is default. Choices are : PBX, GBX, GBX-CH, GBX-JP
- You can also edit the PBX_BepInEx_DemulShooter_Plugin.ini file located in the BepInEx\plugins\ subdirectory to edit some game display settings (resolution + fullscreen mode).
- Run the game.
- Run DemulShooter for this game using the command:
DemulShooter.exe -target=es4 -rom=pblankx- Additionally, crosshairs can be turned off with the -nocrosshair command.
Sample AHK Script
Run DemulShooter.exe as Administrator if you have issues with it hooking. The DemulShooter icon in the system tray should be green.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance Force
RUN, "G:\Roms\arcade pc\Point Blank X\PBX100-2-NA-MPR0-A63.exe"
Sleep, 5000
RUN, "C:\SINDEN\DemulShooter\DemulShooter.exe" -target=es4 -rom=pblankx -nocrosshair , C:\SINDEN\DemulShooter\
Esc::
Process,Close,PBX100-2-NA-MPR0-A63.exe
Run,taskkill /im "PBX100-2-NA-MPR0-A63.exe" /F
ExitApp
return