Difference between revisions of "Friction"

From Sinden Lightgun
Jump to navigation Jump to search
 
(8 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[File:Friction-logo.png|500x94px|frameless]]
+
{{infobox
<br>
+
|title = Friction
 +
|logo = Friction-logo.png
 +
|category = Arcade Game
 +
|download =
 +
|developer = Friction Game Studios
 +
|license = Commercial
 +
|players = 1-2 Player
 +
|release = 2011
 +
|type = Rail shooter
 +
|titleshot =
 +
|gameplayshot = friction-gameplay.webp
 +
|gamename = Friction
 +
|notes =
 +
}}
 +
 
 
Friction is a Independent light gun game made by Friction game studios and was exclusive to the arcades.<br>
 
Friction is a Independent light gun game made by Friction game studios and was exclusive to the arcades.<br>
 
Well until now...
 
Well until now...
 +
 
==Setup Guide==
 
==Setup Guide==
Download the game files
 
 
Patch the game if required (details below) If you dont have the patch the VSIOboard file mentioned below will be missing some lines.
 
  
Open the VSIOboard file using a text editor.
+
* Download the game files
  
Edit the following lines and set which buttons you want for Quit, Service, coin and start buttons.
+
* Patch the game if required (details below) If you dont have the patch the VSIOboard file mentioned below will be missing some lines.
  
Be sure to delete the ; before each line!
+
* Open the VSIOBOARD.INI file using a text editor.
  
 +
* Edit the following lines and set which buttons you want for Quit, Service, coin and start buttons.
  
 +
Be sure to delete the ; before each line!<syntaxhighlight lang="ini">
 
Quit=Esc
 
Quit=Esc
  
Line 28: Line 42:
  
 
P2_Start=2
 
P2_Start=2
 +
</syntaxhighlight><br>
  
 +
*Also make sure the following lines have a ; before them:
 +
<syntaxhighlight lang="ini">
 +
;P2_Coin=XINPUT1_BACK
  
Also make sure the following lines have a ; before them:
+
;P2_Start=XINPUT1_START
 +
</syntaxhighlight>
 +
*Once finished save the file.
 +
===2 Player Setup===
 +
It is also advisable to install DemulShooter if you wish to run the game 2 player.
  
<nowiki>;</nowiki>P2_Coin=XINPUT1_BACK
+
Install DemulShooter as per the [[Demulshooter|DemulShooter page]] instructions and run the game with a batch file, to do that do the following:
  
<nowiki>;</nowiki>P2_Start=XINPUT1_START
+
Within the game folder right click in a blank space to bring up the menu and then highlight "new" then select "text document" this will create a new text file you can name as you wish.
  
 +
Load the new text document and then type the following command adjusting the drive/file path to suit:
 +
<syntaxhighlight lang="bat">
 +
Start C:\DEMULSHOOTER DIRECTORY\DemulShooter.exe -target=windows -rom=friction
  
Once finished save the file.
+
Start C:\FRICTION GAME DIRECTORY\Friction.exe
 +
</syntaxhighlight>
 +
Then simply go to "File" then "Save As", Give the file a name of your choosing but it MUST end with .bat
  
 +
e.g. gamename.bat
 +
<br>
  
It is also advisable to install demulshooter if you wish to run the game 2 player.
+
==== Sample AHK Script ====
 +
Alternatively, you can use an AutoHotKey (AHK) script to launch and close the game.<syntaxhighlight lang="ahk">
 +
#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.
  
Install demulshooter as per the demulshooter page instructions and run the game with a batch file, to do that do the following:
+
#SingleInstance Force
  
Within the game folder right click in a blank space to bring up the menu and then highlight "new" then select "text document" this will ceate a new text file you can name as you wish.
+
Run, D:\DemulShooter\DemulShooter.exe -target=windows -rom=friction, D:\DemulShooter
 
 
Load the new text document and then type the following command adjusting the drive/file path to suit:
 
  
Start C:\DEMULSHOOTER DIRECTORY\DemulShooter.exe -target=windows -rom=friction
+
sleep, 4000
 +
Run, D:\nomousy\nomousy.exe /hide
  
Start C:\FRICTION GAME DIRECTORY\Friction.exe
+
sleep, 1000
 +
Run, D:\Friction\Friction.exe, D:\Friction
  
Then simply go to "File" then "Save As", Give the file a name of your choosing but it MUST end with .bat
+
$Esc::
 +
    Process,Close,Friction.exe
 +
    Run,taskkill /im "Friction.exe" /F
 +
    Run, D:\nomousy\nomousy.exe
 +
    sleep, 500   
 +
    ExitApp
 +
return
 +
</syntaxhighlight>
  
Eg gamename.bat
 
  
 
== Remove Crosshairs ==
 
== Remove Crosshairs ==
Line 66: Line 106:
  
 
E.g. cursor1_old
 
E.g. cursor1_old
 +
<br>
  
 
== To Enable Gore ==
 
== To Enable Gore ==
Line 72: Line 113:
 
Inside the folder you will find a gore and no_gore folder.
 
Inside the folder you will find a gore and no_gore folder.
  
Change the no-gore folder name to somthing different, You can just put original infront if you like so you know what it was originally e.g. change the name to original_no_gore.
+
Change the no-gore folder name to something different, You can just put original in front if you like so you know what it was originally e.g. change the name to original_no_gore.
  
 
Change the gore folder name to no_gore.
 
Change the gore folder name to no_gore.
 +
<br>
  
==Patch==
+
==Ducon Patch==
 
Depending where you obtain the game you may need to install Ducon's patch.
 
Depending where you obtain the game you may need to install Ducon's patch.
  
 
If required download Ducon's V3 patch from [https://cdn.discordapp.com/attachments/416104934476349442/698284848065806396/VSIOBOARD-v3.7z Discord] and copy the files into your games main directory if its not installed already.
 
If required download Ducon's V3 patch from [https://cdn.discordapp.com/attachments/416104934476349442/698284848065806396/VSIOBOARD-v3.7z Discord] and copy the files into your games main directory if its not installed already.
 +
<br>
  
 
==Resolution Changer==
 
==Resolution Changer==
You can change the resolution of the game using a resolution changer from [https://www.mediafire.com/file/4ybrmoszy310vu2/Friction_ResChanger.zip/file Mediafire].
+
You can change the resolution of the game by using a resolution changer from [https://mega.nz/file/3uQ3gBYD#1jL4zqGpdtJd-l1qb2FGMfZZl2aAOUVtqkXtcjI94T4 Mega.nz].
  
 
[[Category: Arcade_Games]]
 
[[Category: Arcade_Games]]
 
[[Category: PC_Based_Arcade_Games]]
 
[[Category: PC_Based_Arcade_Games]]

Latest revision as of 04:52, 2 January 2024



Arcade Game
License: Commercial
Game info
Developer: Friction Game Studios
Released: 2011
Players: 1-2 Player
Type: Rail shooter
Friction-gameplay.webp

Friction is a Independent light gun game made by Friction game studios and was exclusive to the arcades.
Well until now...

Setup Guide

  • Download the game files
  • Patch the game if required (details below) If you dont have the patch the VSIOboard file mentioned below will be missing some lines.
  • Open the VSIOBOARD.INI file using a text editor.
  • Edit the following lines and set which buttons you want for Quit, Service, coin and start buttons.

Be sure to delete the ; before each line!

Quit=Esc

Service=F1

Service_Coin=F2

P1_Coin=5

P1_Start=1

P2_Coin=6

P2_Start=2


  • Also make sure the following lines have a ; before them:
;P2_Coin=XINPUT1_BACK

;P2_Start=XINPUT1_START
  • Once finished save the file.

2 Player Setup

It is also advisable to install DemulShooter if you wish to run the game 2 player.

Install DemulShooter as per the DemulShooter page instructions and run the game with a batch file, to do that do the following:

Within the game folder right click in a blank space to bring up the menu and then highlight "new" then select "text document" this will create a new text file you can name as you wish.

Load the new text document and then type the following command adjusting the drive/file path to suit:

Start C:\DEMULSHOOTER DIRECTORY\DemulShooter.exe -target=windows -rom=friction

Start C:\FRICTION GAME DIRECTORY\Friction.exe

Then simply go to "File" then "Save As", Give the file a name of your choosing but it MUST end with .bat

e.g. gamename.bat

Sample AHK Script

Alternatively, you can use an AutoHotKey (AHK) script to launch and close the game.

#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, D:\DemulShooter\DemulShooter.exe -target=windows -rom=friction, D:\DemulShooter

sleep, 4000
Run, D:\nomousy\nomousy.exe /hide

sleep, 1000
Run, D:\Friction\Friction.exe, D:\Friction

$Esc::
    Process,Close,Friction.exe
    Run,taskkill /im "Friction.exe" /F
    Run, D:\nomousy\nomousy.exe
    sleep, 500    
    ExitApp
return


Remove Crosshairs

To remove crosshairs navigate to the games main directory and open the reshade-shaders folder.

Open Textures Folder.

Rename the 2 crosshair files inside this folder, You can just put old after the file name.

E.g. cursor1_old

To Enable Gore

Go to the games main directory and open the Base folder.

Inside the folder you will find a gore and no_gore folder.

Change the no-gore folder name to something different, You can just put original in front if you like so you know what it was originally e.g. change the name to original_no_gore.

Change the gore folder name to no_gore.

Ducon Patch

Depending where you obtain the game you may need to install Ducon's patch.

If required download Ducon's V3 patch from Discord and copy the files into your games main directory if its not installed already.

Resolution Changer

You can change the resolution of the game by using a resolution changer from Mega.nz.