Madbullets

From Sinden Lightgun
Revision as of 20:29, 30 January 2023 by Thatman84 (talk | contribs)
Jump to navigation Jump to search



Steam game
Download: Steam
License: Commercial
Game info
Developer: isTom Games Kft
Released: 10 Jun, 2016
Players: 1 Player
Type: Rail shooter
Madbullets title.jpg
Madbullets gameplay.jpg
Note: Requires patch

Game description: Mad Bullets, the wackiest shooter is here to put your reflexes and laughing muscles to an intensive test. You can forget about boring stories, complicated controls and irritating tutorials, and jump right into a mind blowing, high-speed action.

Setup Guide.

Mad Bullets requires no special setup and will work out of the box with the Sinden Lightgun.

However you can not easily turn off the cross hair.

To do so you have to replace the crosshair image file in the games directory as detailed bellow.

Problems

Sinden border does not work (depends on individual system)

Check the Reshade page

Select API: OpenGL

Remove the Crosshairs

To remove the crosshairs do the following:

  • Download a replacement cursor, I use this one: No Cursor
  • Navigate to your mad bullets game directory for instance: C:\Program Files (x86)\SteamLibrary\steamapps\common\MadBullets\bin_x86
  • Locate the cursor.cur file and rename it (this is so you can easily restore it if you need to)
  • Move your new cursor file into the folder and make sure its called cursor.cur.

That's it! Now the next time you load the game you will have no crosshair :)

Sample AHK Script

#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 %comspec% /c START steam://rungameid/452860

sleep, 2000
Send {Enter}     ;Send Enter to bypass resolution selection pop-up

$Esc::  
    Process,Close,Launcher.exe
    Run,taskkill /im "Launcher.exe" /F
    Process,Close,game.exe
    Run,taskkill /im "game.exe" /F
    sleep, 500
    ExitApp
return