Difference between revisions of "Akuma Mortis Immortal"

From Sinden Lightgun
Jump to navigation Jump to search
m (Edited Heading/Layout)
m
 
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Ultra rare first person horror game developed by Gamewax and published by Taito to arcades in 2005. A mash up of House of the Dead and Evil Night styles, this is a classic point and shoot style light gun game with an interesting bullet charging mechanic. A bit rough around the edges, almost like a prototype build, but fully playable from start to finish.
+
{{infobox
 +
|title = Akuma Mortis Immortal
 +
|logo = Akuma Mortis Immortal-01.jpg
 +
|category = Arcade Game
 +
|platform = Taito F3 System
 +
|developer = Gamewax
 +
|players = 2 Player
 +
|release = January 2005
 +
|type = Lightgun
 +
|gameplayshot =Akuma Mortis Immortal - Gameplay 3.jpg
 +
|gamename = Akuma Mortis Immortal
 +
}}
  
== '''SETUP''' ==
+
Ultra rare first person horror game developed by Gamewax and published by Taito to arcades in 2005. A mash up of House of the Dead and Evil Night styles, this is a classic point and shoot style light gun game with an interesting bullet charging mechanic. A bit rough around the edges, almost like a prototype build, but fully playable from start to finish. Are you ready for the apocalypse?
Files - Download akuma-mortis-immortal.zip, akumacontrols.zip and extract.
+
==SETUP==
 +
'''Files''' - Download akuma-mortis-immortal.zip, akumacontrols.zip and extract.
  
* Delete ‘game.exe’ and rename ‘game.exe.patched’ to ‘game.exe’.
+
*Delete ‘game.exe’ and rename ‘game.exe.patched’ to ‘game.exe’.
* Copy/Replace from akumacontrols folder the ‘inpout23.dll’ file and add ‘msvcr100.dll’ file in the game folder to allow mouse/gun use.
+
*Copy/Replace from akumacontrols folder the ‘inpout23.dll’ file and add ‘msvcr100.dll’ file in the game folder to allow mouse/gun use.
* Set the game.exe to 60fps in you graphics card setting if the game runs too fast.
+
*Set the game.exe to 60fps in you graphics card setting if the game runs too fast.
* Set ‘game.exe’ in Properties-Compatibility to Windows XP SP2 if it doesn’t load (should default to WinXP).
+
*Set ‘game.exe’ in Properties-Compatibility to Windows XP SP2 if it doesn’t load (should default to WinXP).
  
Note – Press start before the movie intro or the game will freeze.
+
'''*Note''' – Press start before the movie intro or the game will freeze.
  
== '''CONTROLLS''' ==
+
==CONTROLLS==
* P1 Start: Q
+
*P1 Start: Q
* P2 Start: E
+
*P2 Start: E
* Coin: C (game should default to free play)
+
*Coin: C (game should default to free play)
* Tirgger P1 – Mouse Button 1
+
*Trigger P1 – Mouse Button 1
* Trigger P2 – Mouse Button 2 – Will need to flip trigger and reload in Sinden 2p gun settings.
+
*Trigger P2 – Mouse Button 2 – Will need to flip trigger and reload in Sinden 2p gun settings
* Test Menu: T / Navigation: A or S / Enter: Q – Can calibrate gun through the test menu, but is accurate with Sinden settings.
+
* Test Menu: T / Navigation: A or S / Enter: Q – Can calibrate gun through the test menu, but is accurate with Sinden settings
  
== '''SAMPLE AHK SCRIPT'''  ==
+
==SAMPLE AHK SCRIPT==
Sample Script to rebind start keys and add a proper escape/close function:
+
Sample script to rebind start keys and add a proper escape/close function:
Run, C:\akuma-mortis-immortal\game.exe
+
 
   (YOUR KEYBIND HERE FOR PLAYER 1 START)::q
+
<syntaxhighlight lang="ahk">
  (YOUR KEYBIND HERE FOR PLAYER 2 START)::e
+
#SingleInstance Force
  (YOUR KEYBIND HERE FOR COIN)::c
+
Run, C:\akuma-mortis-immortal\game.exe
 +
    
 +
YOUR KEYBIND HERE FOR PLAYER 1 START::q
 +
YOUR KEYBIND HERE FOR PLAYER 2 START::e
 +
YOUR KEYBIND HERE FOR COIN::c
 
   
 
   
Esc::
+
Esc::
 
   Process,Close,game.exe
 
   Process,Close,game.exe
 
   Run,taskkill /im "game.exe" /F
 
   Run,taskkill /im "game.exe" /F
 
   ExitApp
 
   ExitApp
  return
+
Return
 +
</syntaxhighlight>
 +
 
 +
[[Category:Arcade Games]]

Latest revision as of 20:08, 12 August 2025



Arcade Game
Hardware: Taito F3 System
Game info
Developer: Gamewax
Released: January 2005
Players: 2 Player
Type: Lightgun
Akuma Mortis Immortal - Gameplay 3.jpg

Ultra rare first person horror game developed by Gamewax and published by Taito to arcades in 2005. A mash up of House of the Dead and Evil Night styles, this is a classic point and shoot style light gun game with an interesting bullet charging mechanic. A bit rough around the edges, almost like a prototype build, but fully playable from start to finish. Are you ready for the apocalypse?

SETUP

Files - Download akuma-mortis-immortal.zip, akumacontrols.zip and extract.

  • Delete ‘game.exe’ and rename ‘game.exe.patched’ to ‘game.exe’.
  • Copy/Replace from akumacontrols folder the ‘inpout23.dll’ file and add ‘msvcr100.dll’ file in the game folder to allow mouse/gun use.
  • Set the game.exe to 60fps in you graphics card setting if the game runs too fast.
  • Set ‘game.exe’ in Properties-Compatibility to Windows XP SP2 if it doesn’t load (should default to WinXP).

*Note – Press start before the movie intro or the game will freeze.

CONTROLLS

  • P1 Start: Q
  • P2 Start: E
  • Coin: C (game should default to free play)
  • Trigger P1 – Mouse Button 1
  • Trigger P2 – Mouse Button 2 – Will need to flip trigger and reload in Sinden 2p gun settings
  • Test Menu: T / Navigation: A or S / Enter: Q – Can calibrate gun through the test menu, but is accurate with Sinden settings

SAMPLE AHK SCRIPT

Sample script to rebind start keys and add a proper escape/close function:

#SingleInstance Force
Run, C:\akuma-mortis-immortal\game.exe
  
YOUR KEYBIND HERE FOR PLAYER 1 START::q
YOUR KEYBIND HERE FOR PLAYER 2 START::e
YOUR KEYBIND HERE FOR COIN::c
 
Esc::
  Process,Close,game.exe
  Run,taskkill /im "game.exe" /F
  ExitApp
Return