How to install spin tires


Spintires - Supported software - PlayOnLinux

You are here

Informations

Creator Message
privetic
Warning

This installer is a beta script. It means that it might not work as expected

Informations

Platforms:
Downloads: 8025
Wine: 2.22

Feedbacks

1 0

Description

A simulator based on off-roading trucks driving. It is using Havok 3D engine and the graphics are very nice. 2014.

Wikipedia. Appdb.winehq.org Steam

Source code

#!/bin/bash
 # Date : (2014-08-08 19:33)
 # Last revision : (2014-08-08 21:56)
 # Wine version used : 2.22, 2.12-staging (PlayOnLinux) 
 # Distribution used to test : Linux Mint 18.1 x64
 # Author : lahtis
 # Licence : Retail
 #
 # CHANGELOG
 # [lahtis] (2014-08-08 21:56)
 # Initial script.
 # [Dadu042] (2020-01-16 22:30)
 # Wine 2.12-staging -> 2.22
 
 [ "$PLAYONLINUX" = "" ] && exit 0 
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Spintires"
 PREFIX="Spintires"
 EDITOR="Oovee"
 GAME_URL="http://www.spintires.com"
 AUTHOR="lahtis"
 WORKING_WINE_VERSION="2.22"
 GAME_VMS="1024"
 STEAM_ID="263280"
 
 # Starting the script
 POL_GetSetupImages "http://files. playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 
 # Starting debugging API
 POL_Debug_Init
 
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
 # Check Kernel ptrace
 if [ -e "/proc/sys/kernel/yama/ptrace_scope" ]; then
 PTRACE_CHECK=`cat /proc/sys/kernel/yama/ptrace_scope`
 if [ "$PTRACE_CHECK" != 0 ]; then
 POL_Debug_message "$(eval_gettext 'The game will fail to launch until you set /proc/sys/kernel/yama/ptrace_scope to 0')" "$TITLE"
 fi
 fi
 
 # Setting prefix path
 POL_Wine_SelectPrefix "$PREFIX"
 
 # Downloading wine if necessary and creating prefix
 POL_System_SetArch "x86"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
 # Fix pulseaudio issue
 which pulseaudio && Set_OS "winxp"
 
 # Asking about memory size of graphic card
 POL_SetupWindow_VMS $GAME_VMS
 
 # Downloading and install directx9
 POL_Call POL_Install_directx9 
 
 # Downloading and install vcrun2010
 POL_Call POL_Install_vcrun2010 # Fix game issue
 
 # Downloading and install quartz
 POL_Call POL_Install_quartz # Fix game issue
 
 # Choose between DOWNLOAD for demo version or Digital Download version in Steam
 POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM"
 
 # This DOWNLOADER install only Free beta version for testing purpose 
 if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then
 
 POL_System_TmpCreate "$PREFIX"
 
 # Download and install the game
 cd "$POL_System_TmpDir"
 POL_Download "http://oovee. chicsystems.net/SpinTiresInstall_060613.zip"
 unzip "SpinTiresInstall_060613.zip"
 POL_SetupWindow_wait "Unzip in progress." "Unzip progress"
 POL_Wine start /unix "$POL_System_TmpDir/SpinTiresInstall_June060613.msi"
 POL_Wine_WaitExit "$TITLE"
 
 POL_System_TmpDelete
 
 POL_Shortcut 'SpinTires.exe' "SpinTires - demo"
 
 POL_SetupWindow_Close
 
 else
 # Installing mandatory dependencies
 POL_Call POL_Install_steam
 
 # Mandatory pre-install fix for steam
 POL_Call POL_Install_steam_flags "$STEAM_ID"
 
 # Shortcut done before install for steam version
 POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;"
 
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
 POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
 
 POL_SetupWindow_Close
 fi 
 exit 0

Contributions

Filters:

Updates and commentsOnly updatesOnly commentsAll languagesOnly my language

Contribute

Member Message
Dadu042 Thursday 16 January 2020 at 22:25
Dadu042
Information

This update has been approved by the team.

Differences

@@ -1,11 +1,17 @@ #!/bin/bash
 # Date : (2014-08-08 19:33)
 # Last revision : (2014-08-08 21:56)
 -# Wine version used : 2.12-staging (PlayOnLinux) 
 +# Wine version used : 2.22, 2.12-staging (PlayOnLinux) 
 # Distribution used to test : Linux Mint 18.1 x64
 # Author : lahtis
 # Licence : Retail
 - 
 +#
 +# CHANGELOG
 +# [lahtis] (2014-08-08 21:56)
 +# Initial script.
 +# [Dadu042] (2020-01-16 22:30)
 +# Wine 2.12-staging -> 2.22
 +
 [ "$PLAYONLINUX" = "" ] && exit 0 
 source "$PLAYONLINUX/lib/sources"
 
 @@ -14,7 +20,7 @@ EDITOR="Oovee"
 GAME_URL="http://www.spintires.com"
 AUTHOR="lahtis"
 -WORKING_WINE_VERSION="2.12-staging"
 +WORKING_WINE_VERSION="2.22"
 GAME_VMS="1024"
 STEAM_ID="263280"
 
 

New source code

#!/bin/bash
 # Date : (2014-08-08 19:33)
 # Last revision : (2014-08-08 21:56)
 # Wine version used : 2. 22, 2.12-staging (PlayOnLinux) 
 # Distribution used to test : Linux Mint 18.1 x64
 # Author : lahtis
 # Licence : Retail
 #
 # CHANGELOG
 # [lahtis] (2014-08-08 21:56)
 # Initial script.
 # [Dadu042] (2020-01-16 22:30)
 # Wine 2.12-staging -> 2.22
 
 [ "$PLAYONLINUX" = "" ] && exit 0 
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Spintires"
 PREFIX="Spintires"
 EDITOR="Oovee"
 GAME_URL="http://www.spintires.com"
 AUTHOR="lahtis"
 WORKING_WINE_VERSION="2.22"
 GAME_VMS="1024"
 STEAM_ID="263280"
 
 # Starting the script
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 
 # Starting debugging API
 POL_Debug_Init
 
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
 # Check Kernel ptrace
 if [ -e "/proc/sys/kernel/yama/ptrace_scope" ]; then
 PTRACE_CHECK=`cat /proc/sys/kernel/yama/ptrace_scope`
 if [ "$PTRACE_CHECK" != 0 ]; then
 POL_Debug_message "$(eval_gettext 'The game will fail to launch until you set /proc/sys/kernel/yama/ptrace_scope to 0')" "$TITLE"
 fi
 fi
 
 # Setting prefix path
 POL_Wine_SelectPrefix "$PREFIX"
 
 # Downloading wine if necessary and creating prefix
 POL_System_SetArch "x86"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
 # Fix pulseaudio issue
 which pulseaudio && Set_OS "winxp"
 
 # Asking about memory size of graphic card
 POL_SetupWindow_VMS $GAME_VMS
 
 # Downloading and install directx9
 POL_Call POL_Install_directx9 
 
 # Downloading and install vcrun2010
 POL_Call POL_Install_vcrun2010 # Fix game issue
 
 # Downloading and install quartz
 POL_Call POL_Install_quartz # Fix game issue
 
 # Choose between DOWNLOAD for demo version or Digital Download version in Steam
 POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM"
 
 # This DOWNLOADER install only Free beta version for testing purpose 
 if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then
 
 POL_System_TmpCreate "$PREFIX"
 
 # Download and install the game
 cd "$POL_System_TmpDir"
 POL_Download "http://oovee. chicsystems.net/SpinTiresInstall_060613.zip"
 unzip "SpinTiresInstall_060613.zip"
 POL_SetupWindow_wait "Unzip in progress." "Unzip progress"
 POL_Wine start /unix "$POL_System_TmpDir/SpinTiresInstall_June060613.msi"
 POL_Wine_WaitExit "$TITLE"
 
 POL_System_TmpDelete
 
 POL_Shortcut 'SpinTires.exe' "SpinTires - demo"
 
 POL_SetupWindow_Close
 
 else
 # Installing mandatory dependencies
 POL_Call POL_Install_steam
 
 # Mandatory pre-install fix for steam
 POL_Call POL_Install_steam_flags "$STEAM_ID"
 
 # Shortcut done before install for steam version
 POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;"
 
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
 POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
 
 POL_SetupWindow_Close
 fi 
 exit 0

Replies

szp Wednesday 27 September 2017 at 10:44
szp
Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Recent steam kept crashing on wine 1.7.22 while updating. (https://www.playonlinux.com/en/topic-15336.html)
So I tried what was recommended for Civ4, that is, switching to wine 2.12-staging. I have some font rendering issues (a pixel or two are missing on the right side of characters), minor graphics glitches, but nothing serious.
I tried modifying the attached script accordingly but be warned that I did not test it.
 

Differences

@@ -1,8 +1,8 @@ #!/bin/bash
 # Date : (2014-08-08 19:33)
 # Last revision : (2014-08-08 21:56)
 -# Wine version used : 1.7.22 (PlayOnLinux) 
 -# Distribution used to test : Ubuntu 12.04 x64
 +# Wine version used : 2.12-staging (PlayOnLinux) 
 +# Distribution used to test : Linux Mint 18.1 x64
 # Author : lahtis
 # Licence : Retail
 
 @@ -14,7 +14,7 @@ EDITOR="Oovee"
 GAME_URL="http://www. spintires.com"
 AUTHOR="lahtis"
 -WORKING_WINE_VERSION="1.7.22"
 +WORKING_WINE_VERSION="2.12-staging"
 GAME_VMS="1024"
 STEAM_ID="263280"
 
 

New source code

#!/bin/bash
 # Date : (2014-08-08 19:33)
 # Last revision : (2014-08-08 21:56)
 # Wine version used : 2.12-staging (PlayOnLinux) 
 # Distribution used to test : Linux Mint 18.1 x64
 # Author : lahtis
 # Licence : Retail
 
 [ "$PLAYONLINUX" = "" ] && exit 0 
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Spintires"
 PREFIX="Spintires"
 EDITOR="Oovee"
 GAME_URL="http://www.spintires.com"
 AUTHOR="lahtis"
 WORKING_WINE_VERSION="2.12-staging"
 GAME_VMS="1024"
 STEAM_ID="263280"
 
 # Starting the script
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 
 # Starting debugging API
 POL_Debug_Init
 
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
 # Check Kernel ptrace
 if [ -e "/proc/sys/kernel/yama/ptrace_scope" ]; then
 PTRACE_CHECK=`cat /proc/sys/kernel/yama/ptrace_scope`
 if [ "$PTRACE_CHECK" != 0 ]; then
 POL_Debug_message "$(eval_gettext 'The game will fail to launch until you set /proc/sys/kernel/yama/ptrace_scope to 0')" "$TITLE"
 fi
 fi
 
 # Setting prefix path
 POL_Wine_SelectPrefix "$PREFIX"
 
 # Downloading wine if necessary and creating prefix
 POL_System_SetArch "x86"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
 # Fix pulseaudio issue
 which pulseaudio && Set_OS "winxp"
 
 # Asking about memory size of graphic card
 POL_SetupWindow_VMS $GAME_VMS
 
 # Downloading and install directx9
 POL_Call POL_Install_directx9 
 
 # Downloading and install vcrun2010
 POL_Call POL_Install_vcrun2010 # Fix game issue
 
 # Downloading and install quartz
 POL_Call POL_Install_quartz # Fix game issue
 
 # Choose between DOWNLOAD for demo version or Digital Download version in Steam
 POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM"
 
 # This DOWNLOADER install only Free beta version for testing purpose 
 if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then
 
 POL_System_TmpCreate "$PREFIX"
 
 # Download and install the game
 cd "$POL_System_TmpDir"
 POL_Download "http://oovee. chicsystems.net/SpinTiresInstall_060613.zip"
 unzip "SpinTiresInstall_060613.zip"
 POL_SetupWindow_wait "Unzip in progress." "Unzip progress"
 POL_Wine start /unix "$POL_System_TmpDir/SpinTiresInstall_June060613.msi"
 POL_Wine_WaitExit "$TITLE"
 
 POL_System_TmpDelete
 
 POL_Shortcut 'SpinTires.exe' "SpinTires - demo"
 
 POL_SetupWindow_Close
 
 else
 # Installing mandatory dependencies
 POL_Call POL_Install_steam
 
 # Mandatory pre-install fix for steam
 POL_Call POL_Install_steam_flags "$STEAM_ID"
 
 # Shortcut done before install for steam version
 POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;"
 
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
 POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
 
 POL_SetupWindow_Close
 fi 
 exit 0

Replies

lahtis Friday 8 August 2014 at 21:02
lahtis
Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

@@ -0,0 +1,98 @@ +#!/bin/bash
 +# Date : (2014-08-08 19:33)
 +# Last revision : (2014-08-08 21:56)
 +# Wine version used : 1.7.22 (PlayOnLinux) 
 +# Distribution used to test : Ubuntu 12.04 x64
 +# Author : lahtis
 +# Licence : Retail
 + 
 +[ "$PLAYONLINUX" = "" ] && exit 0 
 +source "$PLAYONLINUX/lib/sources"
 + 
 +TITLE="Spintires"
 +PREFIX="Spintires"
 +EDITOR="Oovee"
 +GAME_URL="http://www.spintires.com"
 +AUTHOR="lahtis"
 +WORKING_WINE_VERSION="1.7.22"
 +GAME_VMS="1024"
 +STEAM_ID="263280"
 + 
 +# Starting the script
 +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 +POL_SetupWindow_Init
 + 
 +# Starting debugging API
 +POL_Debug_Init
 +
 +# Presentation
 +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 +
 +# Check Kernel ptrace
 +if [ -e "/proc/sys/kernel/yama/ptrace_scope" ]; then
 + PTRACE_CHECK=`cat /proc/sys/kernel/yama/ptrace_scope`
 + if [ "$PTRACE_CHECK" != 0 ]; then
 + POL_Debug_message "$(eval_gettext 'The game will fail to launch until you set /proc/sys/kernel/yama/ptrace_scope to 0')" "$TITLE"
 + fi
 +fi
 + 
 +# Setting prefix path
 +POL_Wine_SelectPrefix "$PREFIX"
 + 
 +# Downloading wine if necessary and creating prefix
 +POL_System_SetArch "x86"
 +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 +
 +# Fix pulseaudio issue
 +which pulseaudio && Set_OS "winxp"
 + 
 +# Asking about memory size of graphic card
 +POL_SetupWindow_VMS $GAME_VMS
 +
 +# Downloading and install directx9
 +POL_Call POL_Install_directx9 
 +
 +# Downloading and install vcrun2010
 +POL_Call POL_Install_vcrun2010 # Fix game issue
 +
 +# Downloading and install quartz
 +POL_Call POL_Install_quartz # Fix game issue
 + 
 +# Choose between DOWNLOAD for demo version or Digital Download version in Steam
 +POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM"
 +
 +# This DOWNLOADER install only Free beta version for testing purpose 
 +if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then
 +
 +POL_System_TmpCreate "$PREFIX"
 +
 +# Download and install the game
 +cd "$POL_System_TmpDir"
 +POL_Download "http://oovee. chicsystems.net/SpinTiresInstall_060613.zip"
 +unzip "SpinTiresInstall_060613.zip"
 +POL_SetupWindow_wait "Unzip in progress." "Unzip progress"
 +POL_Wine start /unix "$POL_System_TmpDir/SpinTiresInstall_June060613.msi"
 +POL_Wine_WaitExit "$TITLE"
 + 
 +POL_System_TmpDelete
 + 
 +POL_Shortcut 'SpinTires.exe' "SpinTires - demo"
 + 
 +POL_SetupWindow_Close
 +
 +else
 +# Installing mandatory dependencies
 +POL_Call POL_Install_steam
 +
 +# Mandatory pre-install fix for steam
 +POL_Call POL_Install_steam_flags "$STEAM_ID"
 + 
 +# Shortcut done before install for steam version
 +POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;"
 +
 +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
 + POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
 +
 +POL_SetupWindow_Close
 +fi 
 +exit 0 \ No newline at end of file 

New source code

#!/bin/bash
 # Date : (2014-08-08 19:33)
 # Last revision : (2014-08-08 21:56)
 # Wine version used : 1. 7.22 (PlayOnLinux) 
 # Distribution used to test : Ubuntu 12.04 x64
 # Author : lahtis
 # Licence : Retail
 
 [ "$PLAYONLINUX" = "" ] && exit 0 
 source "$PLAYONLINUX/lib/sources"
 
 TITLE="Spintires"
 PREFIX="Spintires"
 EDITOR="Oovee"
 GAME_URL="http://www.spintires.com"
 AUTHOR="lahtis"
 WORKING_WINE_VERSION="1.7.22"
 GAME_VMS="1024"
 STEAM_ID="263280"
 
 # Starting the script
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"
 POL_SetupWindow_Init
 
 # Starting debugging API
 POL_Debug_Init
 
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
 # Check Kernel ptrace
 if [ -e "/proc/sys/kernel/yama/ptrace_scope" ]; then
 PTRACE_CHECK=`cat /proc/sys/kernel/yama/ptrace_scope`
 if [ "$PTRACE_CHECK" != 0 ]; then
 POL_Debug_message "$(eval_gettext 'The game will fail to launch until you set /proc/sys/kernel/yama/ptrace_scope to 0')" "$TITLE"
 fi
 fi
 
 # Setting prefix path
 POL_Wine_SelectPrefix "$PREFIX"
 
 # Downloading wine if necessary and creating prefix
 POL_System_SetArch "x86"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
 # Fix pulseaudio issue
 which pulseaudio && Set_OS "winxp"
 
 # Asking about memory size of graphic card
 POL_SetupWindow_VMS $GAME_VMS
 
 # Downloading and install directx9
 POL_Call POL_Install_directx9 
 
 # Downloading and install vcrun2010
 POL_Call POL_Install_vcrun2010 # Fix game issue
 
 # Downloading and install quartz
 POL_Call POL_Install_quartz # Fix game issue
 
 # Choose between DOWNLOAD for demo version or Digital Download version in Steam
 POL_SetupWindow_InstallMethod "DOWNLOAD,STEAM"
 
 # This DOWNLOADER install only Free beta version for testing purpose 
 if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then
 
 POL_System_TmpCreate "$PREFIX"
 
 # Download and install the game
 cd "$POL_System_TmpDir"
 POL_Download "http://oovee. chicsystems.net/SpinTiresInstall_060613.zip"
 unzip "SpinTiresInstall_060613.zip"
 POL_SetupWindow_wait "Unzip in progress." "Unzip progress"
 POL_Wine start /unix "$POL_System_TmpDir/SpinTiresInstall_June060613.msi"
 POL_Wine_WaitExit "$TITLE"
 
 POL_System_TmpDelete
 
 POL_Shortcut 'SpinTires.exe' "SpinTires - demo"
 
 POL_SetupWindow_Close
 
 else
 # Installing mandatory dependencies
 POL_Call POL_Install_steam
 
 # Mandatory pre-install fix for steam
 POL_Call POL_Install_steam_flags "$STEAM_ID"
 
 # Shortcut done before install for steam version
 POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID" "Game;"
 
 cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
 POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
 
 POL_SetupWindow_Close
 fi 
 exit 0

Replies

lahtis Friday 8 August 2014 at 2:25
lahtis

Message

Are you make this installer. Im testing only Spin Tires Build v1.5 (12.07.13 Dev) and SpinTires Tech Demo v1.3 (June 06.06.13). it is working some minor rendering issues. Im using DirectX, vcrun2010 and quartz. And only working wine version is 1.7.22 (1.7.23 not working.) My hardware is https://gist.github.com/lahtis/8935236

Replies

Spintires Free Download (Original Game) » STEAMUNLOCKED

Spintires: The Original Game Free Download PC Game pre-installed in direct link. Spintires: The Original Game was released on Jun 12, 2014

About The Game

The award-winning, multi-million seller indie hit, Spintires®: The Original Game. The ultimate off-road challenge, climb aboard incredibly detailed soviet inspired vehicles and venture across the rough and tough terrain motherland Russia has to offer. Featuring a highly unique physics-based deformable terrain and water interaction technology. Spintires boasts a quirky new experience every time you play. Winch yourself, or friends out of a mudslinging exercise and explore the depths of Russia, finding garages and fuel stations to keep your vehicle alive – carry logs and bring them to the objectives without becoming lost or stuck in the mud. Unlock and use more capable vehicles, or install one of the vast amounts of attachments available to help you along the way. Offering a truly immersive driving experience, watch in amazement as your vehicle becomes entangled in trees, bogged down in mud or swept away by river currents. A physics sandbox that is vastly moddable with a huge modding community expanding the horizons every day – try some of the mods available on the Steam workshop or have a go at creating your own with the included Spintires Editor.

Features:

  • Deformable terrain with detailed mud particle effects.
  • Interactive water with physics-based water animations.
  • 10 highly detailed soviet inspired vehicles and trucks with various attachments.
  • 7 maps based on the beautiful harsh lands of Russia with physics-based trees, bushes and rocks.
  • Physics vehicle simulation with deformable tires, wobbling body parts and detailed exhaust smoke.
  • Highly detailed audio system, with true to life vehicle sounds.
  • Day and night cycle.
  • Ability to use winches and cranes.
  • Manual and automatic gears control.
  • Gamepad and steering wheel support.
  • Moddable with Steam Workshop, create your own vehicles or maps.
  • Sandbox
  • Spintires editor.


How to Download & Install Spintires: The Original Game

  1. Click the Download button below and you should be redirected to UploadHaven.
  2. Wait 5 seconds and click on the blue ‘download now’ button. Now let the download begin and wait for it to finish.
  3. Once Spintires: The Original Game is done downloading, right click the .zip file and click on “Extract to Spintires.SteamBuild.03. 03.16.zip” (To do this you must have 7-Zip, which you can get here).
  4. Double click inside the Spintires: The Original Game folder and run the exe application.
  5. Have fun and play! Make sure to run the game as administrator and if you get any missing dll errors, look for a Redist or _CommonRedist folder and install all the programs in the folder.

Note: You must be signed into steam in order for the game to work.

Spintires: The Original Game Free Download

Click the download button below to start Spintires: The Original Game Free Download with direct link. It is the full version of the game. Don’t forget to run the game as administrator.


Spintires (Original)
Size: 620.58 MB

NOTICE: This game is already pre-installed for you, meaning you don’t have to install it. If you get any missing dll errors, make sure to look for a _Redist or _CommonRedist folder and install directx, vcredist and all other programs in that folder. You need these programs for the game to run. Look for a ‘HOW TO RUN GAME!!.txt’ file for more help. Also, be sure to right click the exe and always select “Run as administrator” if you’re having problems saving the game. Always disable your anti virus before extracting the game to prevent it from deleting the crack files. If you need additional help, click here

System Requirements

  • OS: Windows XP, Windows Vista, Windows 7/8 or 10
  • Processor: Intel® Pentium Dual Core 2.0GHz or equivalent
  • Memory: 2 GB RAM
  • Graphics: NVIDIA GeForce 9600 GT or equivalent
  • DirectX: Version 9.0c
  • Storage: 1 GB available space
  • Sound Card: DirectX® 9.0c Compatible
  • Additional Notes: Game is compatible with: Gamepad Microsoft Xbox 360 Controller for Windows. Confirmed Steering Wheel support for Logitech G25/G27 – Other models have not been tested; This game is 32-bit application

Screenshots

installation, tackle and technique of wiring the bait

Contents of the article

  1. What is unloaded rubber
  2. Installation of the lure
  3. A little about leaders
  4. Silicone lures for mounting
  5. Should the unloaded rubber be edible?
  6. Tackle
  7. Technique of unloaded rubber guiding
  8. How to increase detection and reduce the number of exits

Periodically, a situation arises when a pike stands in the strongest thickets of aquatic vegetation and does not want to go out from there at all. You already put a light lure closer to the edge, and you appetizingly guide the wobblers, you diversify the wiring technique. In vain. Toothy only smiles maliciously, looking at the attempts of the spinner. Why would she go out? In the depths of the thickets and so good. Food is nearby, there is somewhere to hide, full board. What to do? How to lure and catch a predator? I don’t want to idealize the bait, but in this case, unloaded rubber has few competitors here.

What is unloaded rubber

Oddly enough, but this is the simplest spinning installation. Offset hook, silicone bait and leash. All. No loads.

Neither Cheburashka nor bullets. There is nothing to cling to and bring bunches of grass to the angler. Unloaded tires will crawl through where many non-hooks pass. Even a Croatian egg with spacers.

Although I'm lying a little. There are hooks, already initially loaded with narrow plumes of tin or lead on the forearm.

Working piece. But, as practice shows, not all baits are suitable for equipment. We will talk about this a little lower when we talk about silicone.

Catch with silicone without loading not only among grass thickets. I often use mounting when catching pike on my “home” bay of the reservoir. Wobbler and spinners are used in cleaner places, in the rest - rubber. In loaded and unloaded versions. Depending on conditions. Here, for example, this is how the main part of the coast of the bay looks like.

And this is a common picture for many spinners. Thickets of reeds and a "carpet" of herbs.

Despite the lack of weight, unloaded silicone flies well. Large vibrotails, twisters, slugs fly 20-25 meters only due to their weight. And for catching a predator in difficult conditions, you don’t need further. Here the main thing is the accuracy of casting, the wiring technique and strong nerves.

In addition to pike, perch are also caught for non-loading.

Mounting the bait

The classic mounting of unloaded rubber involves the same steps as when assembling a jig rig. Silicone bait is put on an offset hook like a non-hook.

The tip of the hook is hidden in the body of the lure.

A prerequisite is that between the rubber and the hook there must be a distance of at least the width of the lure. This is the place to leave silicone when attacking pike. The body of the bait sags - the sting of the hook opens.

Offsetters are selected from thick wire. The hook performs an additional function of the center of gravity. If you use thin hooks, or excessively narrow ones, then during wiring, the bait may begin to rotate around its axis. As a result - completely ruined wiring.

Classic mounting is applicable to lures with a large, thick and strong “snout”. Lures made of soft silicone and a narrower front end quickly become unusable. Sometimes without even seeing the teeth of a pike. With these, other mounting methods are suitable.

The most budget option is to use a silicone stopper for float fishing. It prevents the head of the bait from constantly slipping off the Z-shaped bend of the hook. At the 3rd phase of equipping the hook with bait (picture above, Fig. 3), a silicone stopper is put on next. Thus, the front part is fixed on the bend and the silicone lives longer. Or use a special spiral.

In this case, the snout of the bait is wound onto a spiral, and the body is pierced with the sting of the hook. Hooks with a spiral are sold in the store, but you can do it yourself.

A little bit about leaders

The best choice for mounting unloaded rubber is stranding from a string. It removes all the extra links that the bait can cling to during wiring. Carabiners are completely missing. Swivels are also not needed. How to fasten the line? Knot to the twist loop or through a no-knot, if there is a fear that the braided wire will cut the string.

As a result, we get a montage that is thrown into the very jungle without fear that it will catch on. Well, and there we catch a pike, which does not want to go out to clean water for bait.

Either rubber plays the role of a provocateur. By performing this or that wiring technique, we lure the predator out of the shelter to a clean place. When we see a way out, but the pike did not take the silicone, then we catch it with the usual baits (lure or wobbler).

Silicone Lures for Mounting

As such, there is no binding to a specific rubber. The kit can consist of completely different types:

  • Vibrotail.
  • Slug.
  • Twister.
  • Frog.
  • Worms.
  • Crustacea and incomprehensible krakozyabry.

For training, you can buy a pack of Chinese vibrotails, twisters and slugs in 2 sizes. Enough for the season. The main thing is that in addition to the joy of bites, independent experience will be gained.

With the size of the rubber, you can not grind. 4, 5, 6 inches. A grass pike of 500 grams is easily hung on a 15-centimeter Chinese Easy Shiner. The main thing is to understand how and what to do with it.

Somewhat earlier it was possible to divide soft plastic into active and passive, now the edges are blurred. Even slugs with simple uniform wiring have their own game.

I repeat, do not grind. We mainly fish for pike, large rubber definitely wins. Yes, and a perch throws itself at a five-inch rubber. Plus the weight needed to cast.

It is not forbidden to gain weight with hooks with loading, but not all rubber is able to adequately work with them. For example, classic slugs can completely kill the game by turning them into a brick. The value of fishing on unloaded rubber is that the bait slowly passes through the water horizons.

Is color important? It is impossible to give an exact answer. Here, apparently, a lot depends on the views of the spinning player himself. I think "acid" always works. It's just easier to control. Against the general background, the bright color contrasts, it is convenient to play with wiring.

Should unloaded rubber be edible?

Absolutely wrong judgment that rubber for pike should be edible. Do not confuse the "smell" and "taste" of fear, panic, blood or other natural secretions of a live fish with the taste of krill or something else. It is important for pike to determine the size of prey and how available it is in terms of prey.

For 10 meters (roughly speaking) by the side line, it receives vibrations from the walking bait. Determines the dimensions of the victim, the direction of movement. Coming closer turns on the vision. If the movement of silicone causes her interest and desire to eat, then an attack follows.

And whether the silicone is edible or not, the caulk is not interested.

Tackle

We're not big money bags. It is unprofitable to buy specially gear for fishing in thickets of grass. Yes, and carrying an additional kit with you, in extreme cases, is a so-so occupation. For these purposes, spinning is suitable for catching 120-130 wobblers by twitching. This is a stick with a powerful butt, a rigid middle part and a fairly informative tip.

The top test starts around 25 grams.

Rod length must suit the angler. If you give recommendations, then for coastal fishing - up to 2. 4 m, from a boat - up to 2.13. Multiplier tackle or under inertialess - it does not matter.

The coil is strong enough. You have to tear the pike out of the thickets, roll over driftwood or other obstacles.

Best option:

  • By Shimano 3000-4000 coil.
  • Po Daiva - from 2500

Braided line, not less than 20 libres to break. According to the Japanese classification, the bottom edge is 1.2. Better 1.5-2. 8 cores or 4 - a matter of taste. You just have to carry the bait in difficult conditions. Cutting edges of leaves, stems, driftwood. The braid cuts quickly. For myself, I chose a 4-strand braided fishing line. You don’t have to make ultra-long casts, you need the strength and endurance of the fishing line.

Leads “string” 20-30 cm.

Technique of guiding unloaded rubber

Technique of guiding unloaded mounting of rubber is limited only by the spinner's imagination. The basic uniform wiring may well be enough. However, once you get the hang of it and get the first bites, it becomes somewhat boring.

Evening with stops, when the bait begins to slowly sink in a window that has got in the way, clear of haulm. Twitching wiring under the very surface, in the water column, above the bottom. Now many rubber models allow you to carry yourself no worse than a wobbler. Slugs are generally a godsend for a wobbler. In addition, there are sinking and floating models.

Therefore, I recommend not to immediately strive to buy rating baits with a large type. Here, as with a wobbler. Better less number of types, but more handling skills. By the end of the first day of fishing, you already begin to fully understand what the pike wants and how to do it, taking into account the characteristics of the rubber in these conditions. Even with one model, you can effectively catch. And unloaded rubber, although the easiest installation, is not so simple.

How to increase hooking and reduce the number of dropouts

There are usually two mistakes made by a spinner:

  • The tip of the hook is hidden deep in the body of the rubber.
  • Early strike.

If the first is treated very quickly, then the second is more difficult for the angler to fight. Seeing the exit and attack of the pike, the hands automatically make a premature cut. The same situation as with surface wobblers - poppers, walkers, crawlers.

I believe that everything is forgotten in excitement. I want to quickly compete with the fish and hold the coveted trophy in my hands. No need to hurry . The pike opened its mouth, grabbed the bait - give a couple of seconds for control. Rubber is not a spinner or a wobbler, pike is much more trusting of unloaded rubber. We waited for time and make a sharp cutting. There is no longer a wiring technique or silicone working. The iron nerves of the spinning player put the final point. And you don't have to worry. Everyone has gone through this mistake. Skill comes with experience.

LFH

Fishing with edible rubber and silicone

The "soft revolution" peaked about twenty years ago. Despite this, the issue of jig fishing in general and rubber in particular does not cease to be relevant to this day. Since then, a lot has changed in both rigs and baits. Among the latter, edible silicone came out on top, significantly increasing the effectiveness of fishing.

Generally speaking, silicone lures can be divided into two large groups according to the nature of their own game:

  • Active lures ↓
  • Passive Lures ↓
  • Jig ↓
  • Retractor ↓
  • Carolina and tyrett ↓ ​​
  • Texas and Florida ↓
  • Split-shot ↓
  • Waki ​​↓
  • Jig rig ↓
  • Donkey rig ↓
  • Drop shot ↓
  • Flex rigging ↓
  • Unloaded rubber ↓
  • Who? Where? For what? ↓
  • active;
  • passive.

Active lures

Due to the good play on a uniform retrieve, they allow absolutely any animation technique, and therefore will suit beginners very well. Among the active baits, two types can be distinguished - twisters and vibrotails. Their difference is primarily visual, but in the water they behave differently.

Due to the characteristic hoof-shaped tail, the vibrotail sinks somewhat more slowly than the twister with its crescent-shaped tail. At the same time, twisters are not particularly distinguished by a variety of amplitude-frequency characteristics. While the vibrotail with a change in the area of ​​​​the tail, the angle of inclination, the length and thickness of the connection, noticeably changes. This is important to remember, especially when you want to maximize the pause time.

Of course, first of all, the weight of the load affects the hovering time, but sometimes changing one load to a smaller one is clearly not enough. And in this case, a vibrotail will help very well. This is especially important in cases where you need to achieve long-range casting, but maintaining smooth wiring. For example, this happens in shallow water bodies, where the need to throw far in order to reach the pit is very acute.

In addition, the high intensity and strength of vibrations of the vibrotail allows you to collect a predator from a greater distance, which helps a lot in cases where you need to quickly find fish in a large area, and it does not react to other baits, except jig ones. Moreover, the combination of slow retrieval, coupled with edibility, gives a high chance of persuading inactive fish to bite.

Passive baits

Slug

Such lures have no or almost no play of their own and the way they move in the water directly depends on the ability to use the spinning tackle. If in a traditional jig all the animation is based on a fixed rod, reel rotation and pauses, then passive rubber requires the skills of a conductor. Literally.

Of course, according to the classical scheme "two or three turns - pause" you can catch something, but the facts of captures will be more like mere coincidences. While a variety of twitches and movements of the tip will bring a very significant, in every sense, result.

Lucky John Rock Craw

Despite its apparent simplicity, passive rubber also has several varieties - these are slugs, worms and crayfish with creatures. Moreover, they differ not only in appearance, but also in the technique of feeding them to fish. In general, these techniques are very similar, but each has its own subtleties. So, crayfish and furry creatures like to lie down a little at the bottom. At the same time, the active phase of the wiring is much sharper than that of the worm-shaped lures.

Some passive baits, especially crayfish (eg Lucky John Rock Craw and Kosadaka Kong) have small tails, in the form of thin twister tails, which actively play on a uniform haul. But the intensity of these fluctuations is too small to include such baits in the category of active ones.

Over time, soft lures, due to their design features, cheapness and availability, have made it possible to very accurately adapt to specific fishing conditions due to various variations in mounting and equipment. But first things first.

Jig

Lure on a jig head

It all started a long time ago with a rig with a dead fish, which later in Europe began to be called the “Drašković rig”. And then a “reusable live bait” was invented - a vibrotail. Since the traditional wiring for a dead fish was the alternation of pulls and pauses, they began to work with silicone in the same way, and this gave positive results.

At the same time, two styles of jig fishing were born and continue to exist - Russian and American. The difference between them is that in the American version, the wiring is carried out with a rod, and in the Russian version, with a reel. Each of them has its own disadvantages. So, in the Russian jig, it is necessary to clearly fix the tip of the spinning rod in one position. This is sometimes difficult to do, especially in the wind. In the American style, there are more minuses - the moment between the end of the active wiring and touching the bottom is practically uncontrollable, because at this time the slack is exhausted.

But what both styles have in common is mounting options, of which there are only two:

  • The first, classic, is fixing the bait on a rigid jig head.
  • The second, newer and more popular one is the hinged mounting. Mounting on a jig head has more disadvantages than advantages.

Firstly, it is the impossibility of varying weights. In addition, very often there is a clear pattern when the size of the hook is almost directly proportional to the weight of the load. And what to do when we catch pike on large rubber, but the conditions are such that loads of more than three grams are too large?

Secondly, other things being equal, the number of trips with a jig head is much greater. It can also be from a poor-quality hook damaged by overheated lead, or from a lever that creates a straight design. In addition, the jig head flies worse. And with hinged mounting, everything is very simplified. Roughly speaking, you can take one single bait, equip it with a hook of a suitable size, shape and quality and collect a lot of cheburashkas of different weights.

Retractor

This rig was introduced for two reasons. Firstly, because of the need to cast a light bait far. And secondly - because of the need for a smooth supply of this bait to the fish. Also, this equipment allows you to keep the playing bait in the bite zone for as long as possible, especially in the current, which is very well suited for seducing passive fish. But there are several conditions, non-observance of which can and will necessarily lead to negative consequences.

  • The leash must be at least one meter long. You can even identify some regularity: the slower the current and the more passive the fish, the longer the leash should be.
  • The bait on the line must not rotate around its own axis. The absence of rotation is achieved by selecting the weight of the offset hook, or by additional loading with the help of a float pellet. But this is more true for twisters, and creatures and vibrotails rarely need such adjustment.
  • Do not throw against the wind or upstream. From this, the leash wraps around the main fishing line and the wiring is empty. But, if the conditions are such that you can’t throw it against the wind, then the casting in this case should be as smooth as possible.

Diversion lures can be either active or passive. At the same time, passive ones sometimes work better.

Plus, on short and smooth jerks, the passive passive bait rushes right and left in a very interesting way. Keitech's Sexy Impact slug or its budget counterpart from Kosadaka, Sota worm, is especially good at achieving this behavior. They are both made according to the same principle - casting in two stages. Thus, a floating back is obtained (due to a larger amount of salt in the composition) and the bait does not spin.

A similar property should be noted for the Fat G-Tai lGrub twister from Reins. True, in this case, the ratio of parameters, and not the features of the salt composition, played a role. As for twisters with a small tail and a long body, like Bugsy from Bait Breath, Fat G-Tail Saturn from Reins, Ballist from Lucky John and Kosadaka Links, they do not twist at all and it is possible to choose hook parameters at your discretion and fishing conditions.

Carolina and Tyrette

The essence of the equipment lies in the fact that a load in the form of an olive or a bullet moves freely along the main fishing line. And to the end of the main fishing line, a leash is tied through a swivel, up to 60 centimeters long, to which the bait is attached.

This rig was originally designed for bass fishing, but our fish also liked it. First of all, walleye and perch. Another piece of equipment is glass or plastic beads between the sinker and the swivel. The Americans explain their necessity by the fact that when tapped, they produce a sound similar to that of a crayfish when it molts. In general, this version seems far-fetched, since the number of bites did not differ in the case of mounting without beads. The only more or less plausible version seems to be the one where it is said that the beads protect the knot from deformation under the influence of an impacting load.

Only bottom and main hauling equipment – ​​slow dragging with pauses. Due to the shape of the load, it passes obstacles well, and therefore is appropriate when fishing among placers of stones and large debris.

Tirette is a similar French rig. The main difference in it is the use of a load that resembles a plow in shape. Thanks to this shape of the sinker, the tyrett passes more freely through the bottom debris.

Texas and Florida

Also American rigs named after the states where they were invented. At first glance, they are no different: the same wiring, the same components. However, there is a difference:

  • First of all, the lead (but more often brass or tungsten) bullet on Texas runs freely along the main line. Florida has it fixed.
  • The second difference is that in Texas the bait is attached in the traditional way for non-hooks, while in Florida a worm is used, which is fixed on the offset in a certain way. It looks like this: a hook tied to a fishing line is pulled inside along the body of the bait for about 1.5-2 centimeters, then it is brought out and fixed as a non-hook. Thus, the hook ring is hidden in the body of the bait, and its head is covered by a special recess in the back of the load, which contributes to better flotation.

The retrieval of both rigs is as follows: cast, the rod is set parallel to the surface of the water and the slack is pulled out, the bait touches the bottom, a short pause, continuous and slow rotation of the reel with the simultaneous lifting of the rod tip to a vertical position with swaying and again a pause with bottom touch. Texas has good bait for crayfish and especially creatures like Lucky John's Hogy shrimp. The load in these rigs should exceed 1.5-2 times the weight of the weights used for jig in this place.

Places of application for are the very wilds of the deaf snag and grass thickets.

Split Shot

This rig has been a hit with rudd and perch over the last couple of years. Its essence is that some kind of bait is attached to the main fishing line, and, about thirty centimeters from it, an ordinary float pellet is fixed. Any small twister, vibrotail or crayfish will do as bait. Wiring from uniform to wavy. This equipment is designed primarily for shallow places, because the maximum load for it is 3 grams.

Wacky

Wacky worm literally translates as “stupid worm”. And indeed, everything is wrong here: hooking, behavior in water, wiring. However, fish resting in the thick of grass like this rig. Moreover, sometimes there are episodes when the fish refuses to react to anything, except for the slowly (due to the horizontal position in the water) immersing worm, appetizingly vibrating with its ends.

Most often a wackie is mounted without a load, but sometimes it is useful to add a small pellet either to the hook or to a few millimeters long piece of line. It is in this equipment, as in no other, that the speed of immersion is important. Posting - a series of smooth jerks and pauses.

Neco. Fundamentally differs little from waki. However, the difference is primarily that the weight, similar to a carnation, is inserted into the head of the bait. Thus, in small jerks, the worm, as it were, jumps along the bottom, wriggling with its whole body.

Jig rig

The Japanese went their own way in mastering jig fishing. This is how the jig rig appeared. It differs from our installation in that instead of a cheburashka they have a conical sinker attached to the offset through two winding rings. Using such a sinker allows you to confidently catch in the stones, play with the bait almost on the spot, and the cast goes a little further than with Cheburashka.

Unfortunately, it is quite difficult to find ready-made Owner equipment for sale, but it does not present any difficulties with self-production. And the most successful baits for her are crayfish and creatures, especially those who have “donkey ears” and “beaver tail”. For example, such as Lucky John Hogy Hog, Hogy Srimp and Bait Breath Gottu.

Donkey rig

At first glance, it is not clear what "donkey" is in this curious rig. However, when the lures in the water begin to move, they behave like two donkeys stubbornly striving to get off the road.

The rig looks like this: a small swivel is attached to the main line, and the second swivel moves freely along the main line. Leashes made of fluorocarbon or rigid monofilament, 20-60 centimeters long, are attached to them, to which two identical (this is important!) lures on offset hooks are attached.

Tailless slugs are best used as baits. It is thanks to the absence of a tail that the lures move as realistically as possible. Wiring is light jerks with small stops. Since no additional weight is used, this rig is best used at shallow depths.

Drop-shot

If the bait needs to be held in one place for a long time so that it attracts the attention of a predator, a drop-shot is indispensable. Unlike a retractable leash, a drop-shot involves a point application. Thus, it is possible to catch small windows in the grass, gaps among snags and compact bottom anomalies for an unlimited time.

The rig is assembled quite simply: at the end of the main fishing line there is an elongated sinker of an oblong shape, and a hook is rigidly attached with a sting to the top 20-50 centimeters from it. It is better to use the bait such that it is able to squirm with the whole body. However, the more familiar twisters and vibrotails work just as well.

Application area - short casts, great depth. It is very important that the bait is above the bottom. The wiring looks like swaying, loosening and tensioning the fishing line (the load remains in one place), a short pull of the load and all over again.

Flex rigging

Not exactly a rig, but a mounting method that gives more freedom to the lure. It consists in putting the bait on the head. This method is used for fishing with a jig head or with articulated mounting. The best baits for him are, first of all, crayfish. The Ring shrimp from Reins is especially good, which, thanks to the floating claws, moves very attractively.

Unloaded tires

This option is essential for fishing in grass and shallow areas. Most often, the buoyancy of silicone bait is close to neutral, but there are also specially created floating models, so you should choose more carefully. The wiring is a cross between twitching and a jig step.

A selection of specific models of the best brands of edible rubber is described in the link.

Surface equipment for fishing with edible rubber - bombard.

Choosing jig spinning once and for all.

Who? Where? For what?

Sudak . All of the listed rigs are suitable for catching this fish, except for split-shot and unloaded rubber. Pike perch, especially large ones, loves to wait for prey in thick snags, from which it is easiest to lure it out with Texas. A retractable leash is needed when a small bait is required, but with a long cast. If the fish is in an inert state and needs to be persuaded, forcing the bait to play in one place, then a drop shot is indispensable. If you are a beginner, then read the basic guide to catching zander with spinning in spring, summer and autumn.

Perch eats everything. True, large individuals in most cases stay near the bottom in deep places, from where they can be obtained using large crayfish on a Texas or Carolina rig as bait. Smaller perches are easy to catch with a lead and split shot.


Learn more