Difference between revisions of "Death Live"

From Sinden Lightgun
Jump to navigation Jump to search
 
(3 intermediate revisions by 2 users not shown)
Line 11: Line 11:
 
|players = 1 Player
 
|players = 1 Player
 
|titleshot =
 
|titleshot =
|gameplayshot = Dead_containment_gameplay.png
+
|gameplayshot = Death_live_gameplay.png
 +
|gamename = Death Live
 
|note = Death Live is a student game made in 8 months by 7 people.
 
|note = Death Live is a student game made in 8 months by 7 people.
 
}}
 
}}
 
{{Controls
 
{{Controls
|shoot =  
+
|shoot = Left mouse
|reload =  
+
|reload = R
|grenade =  
+
|grenade = Right mouse
 
|menuLabel =  
 
|menuLabel =  
 
|menu =  
 
|menu =  
Line 43: Line 44:
 
Replace the file sharedassets0.assets in the folder '''DeathLive_Data''' with download file below to remove the crosshairs.
 
Replace the file sharedassets0.assets in the folder '''DeathLive_Data''' with download file below to remove the crosshairs.
  
Download this file from [https://mega.nz/file/WYdlzSAC#Y0-OUtQIi65lFMZmPGLDJRP5Ef6G6JhBhvFNtX0m58A Mega.nz]
+
Download this file from [https://mega.nz/file/juwi3ARA#s9UxCIoJd8TYWAxgiBlzgD2oKiB6DAHX9OJPhtVhJ4U Mega.nz]
  
 
==Button Remap Script==
 
==Button Remap Script==

Latest revision as of 17:12, 2 October 2023

Death Live is a free indie game for Windows that supports 1 Player via Mouse/Lightgun



Indie game Itchio game
Download: Itch.io
Game info
Developer: The Pangoblin Game Studio, ETPA Game Design School
Released: 2020
Players: 1 Player
Type: Rail Shooter
Death live gameplay.png
Note: Death Live is a student game made in 8 months by 7 people.


Default Controls
Shoot (trigger): Left mouse
Reload: R
Grenade: Right mouse

Trailer


Setup Guide

Download and extract the game files.

If you wish to remove the crosshairs use the below patch and overwrite the sharedassets0.assets in the folder DeathLive_Data.

You can also use the below AHK script to rebind the reload and bomb keys.

If you dont know how to use AHK check out the AHK page for more details.

Download

Download from itch.io.

Crosshair Removal

Replace the file sharedassets0.assets in the folder DeathLive_Data with download file below to remove the crosshairs.

Download this file from Mega.nz

Button Remap Script

Use the script below to remap reload and bomb to the Sinden Right button and UP (or the buttons of your choice):

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

; ORIGINAL SCRIPT BY ninja2bceen
; Place in the same folder as the game executable
; Right button : Reload || Up button: Bomb

Run, %A_ScriptDir%\DeathLive.exe

#IfWinActive ahk_exe DeathLive.exe
Sleep, 3000
send {NumLock}{NumpadMult}{NumLock}
Return 

RButton::r	
UP::RBUTTON	
return

ESC::				  ;FOR EXITING THE GAME
    Process,Close,DeathLive.exe
    Run,taskkill /im "DeathLive.exe" /F
    ExitApp