Difference between revisions of "Death Live"
Jump to navigation
Jump to search
(Created page with "Death Live is a free indie game for Windows that supports 1 Player via Mouse/Lightgun ==Trailer== <youtube>https://www.youtube.com/watch?v=mm15stI3YbE</youtube> <br> <br> ==V...") |
|||
Line 3: | Line 3: | ||
==Trailer== | ==Trailer== | ||
<youtube>https://www.youtube.com/watch?v=mm15stI3YbE</youtube> | <youtube>https://www.youtube.com/watch?v=mm15stI3YbE</youtube> | ||
− | |||
<br> | <br> | ||
==Video Setup Guide== | ==Video Setup Guide== | ||
<youtube>https://youtu.be/RbE_XgkTQ58</youtube> | <youtube>https://youtu.be/RbE_XgkTQ58</youtube> | ||
− | |||
− | |||
− | |||
==Download== | ==Download== | ||
− | Download [https://sachay.itch.io/death-live | + | Download [https://sachay.itch.io/death-live from itch.io]. |
− | |||
− | |||
==Croshair Removal== | ==Croshair Removal== | ||
Line 50: | Line 44: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | |||
<br> | <br> | ||
[[Category:Indie Games]] | [[Category:Indie Games]] |
Revision as of 11:17, 7 December 2022
Death Live is a free indie game for Windows that supports 1 Player via Mouse/Lightgun
Trailer
Video Setup Guide
Download
Download from itch.io.
Croshair Removal
Replace the file sharedassets0.assets in the folder DeathLive_Data with download file below to remove the crosshairs. Download this one
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