Major Mayhem

From Sinden Lightgun
Jump to navigation Jump to search



Windows Game
Download: Steam
License: Commercial
Game info
Developer: Rocket Jump
Released: 24 Feb, 2014
Players: 1 Player
Type: Rail shooter
Major Mayhem banner.png
Major Mayhem gameplay.jpg
Note: Nomousy to hide the mouse

Major Mayhem is an Arcade-style cover shooter inspired by Time Crisis, Metal Slug, and 80's action heroes! He's got an itchy trigger finger, some scratchy stubble, and a fondness for shooting dudes in the face. Run and gun your way through gorgeous 3D environments as you embark on a mission to rescue your kidnapped girlfriend from the Forces of Evil. Guns, grenades, and an assortment of other tools of destruction are at your disposal, and you'll need every last one of 'em. So what are you waiting for, Major Mayhem? The future of the Free World -- and your love life -- hangs in the balance.

It plays really well with a lightgun and is a cheap family-friendly game to have some fun on.

Setup Guide

Purchase and download it from Steam

On first run set your resolution and graphics quality settings.

Then select the Input Tab and bind your controls as you see fit but leave fire and jump buttons set as Left and Right mouse respectively.

If you wish you can turn the crosshairs off in the options, But to hide the mouse cursor you will need to use nomousy and run the game from a script.

To use nomousy just extract the files from the download bellow into a folder on your hard drive then setup a AHK script to launch it along with the game example bellow.

Dowload Nomousy

Example AHK script to run the nomousy and the game:

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
#SingleInstance force

Run, C:\NO MOUSY INSTALL FOLDER\nomousy.exe /hide
sleep 1000
Run, C:\MAJOR MAYHEM STEAM DIRECTORY\MajorMayhem.exe
sleep 2000
Send, {Enter}

ESC::   
Process,Close,MajorMayhem.exe   
sleep, 500   
Run,taskkill /im "MajorMayhem.exe " /F   
sleep, 500     
Run, C:\NO MOUSY INSTALL FOLDER\nomousy.exe   
ExitApp
return