Torchlight 2 Steam

Informations

Créateur Messages
rcmn Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 14740
Wine: 3.0.3

Retours d'expérience

Description

Title: Torchlight II
Genre: Action, Adventure, RPG, Indie
Developer: Runic Games
Publisher: Runic Games     
Release Date: Sep 20, 2012
Languages: English

About the Game: The award-winning action RPG is back, bigger and better than ever! Torchlight II takes you back into the quirky, fast-paced world of bloodthirsty monsters, bountiful treasures, and sinister secrets - and, once again, the fate of the world is in your hands!


Torchlight II captures all the flavor and excitement of the original game - while expanding the world and adding the features players wanted most, including online and LAN co-op multiplayer. Torchlight II is fast, fun, and filled to the brim with action and loot. Adventure solo or online with your friends!
 

Minor Cosmetic issue: Shadows cause textures to tear, do not blend properly. To resolve the issue, disable shadows via settings within Torchlight. Does not effect game play, purely cosmetic issue.

 

 Appdb.winehq.org

Captures d'écran

Miniature

Code source

#!/bin/bash
# Date : (2013-03-16 21:00)
# Last revision : see changelog
# Wine version used : see changelog
# Distribution used to test : Linux Mint 12 x64
# Author : rcmn
# Licence : Retail
# Only For : http://www.playonlinux.com

# CHANGELOG
# [lahtis] (2013-02-18)
#   First script.
# [Dadu042] (2020-03-28)
#   Wine 1.5.24 (outdated) -> 3.0.3 (not tested)

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Torchlight2 Steam"
PREFIX="Torchlight2Steam"
EDITOR="Runic Games"
GAME_URL="Runic Games" "http://www.torchlight2game.com/"
AUTHOR="rcmn"
WORKING_WINE_VERSION="3.0.3"
GAME_VMS="512"
 
# Starting the script
#POL_GetSetupImages "http://files.playonlinux.com/resources/setups/torchlight2/top.jpg" "http://files.playonlinux.com/resources/setups/torchlight2/left.jpg" "$TITLE"
POL_SetupWindow_Init
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
 
# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
# Choose between Digital Download version
POL_SetupWindow_InstallMethod "STEAM"
 
# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup
 
# Mandatory pre-install fix for steam
STEAM_ID="200710"
POL_Call POL_Install_steam_flags "$STEAM_ID"
 
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
 
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
 
## Fix for this game
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
 
## Begin Common PlayOnMac Section ##
[ "$POL_OS" = "Mac" ] && Set_Managed "Off"
## End Section ##
 
# Making shortcut
POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
 
# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE"
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
        POL_Wine_WaitExit "$TITLE"
fi
 
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Dimanche 29 Mars 2020 à 0:12
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -1,12 +1,18 @@
 #!/bin/bash
 # Date : (2013-03-16 21:00)
-# Last revision : (2013-03-16 21:00)
-# Wine version used : 1.5.24
+# Last revision : see changelog
+# Wine version used : see changelog
 # Distribution used to test : Linux Mint 12 x64
 # Author : rcmn
 # Licence : Retail
 # Only For : http://www.playonlinux.com
- 
+
+# CHANGELOG
+# [lahtis] (2013-02-18)
+#   First script.
+# [Dadu042] (2020-03-28)
+#   Wine 1.5.24 (outdated) -> 3.0.3 (not tested)
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
  
@@ -15,7 +21,7 @@
 EDITOR="Runic Games"
 GAME_URL="Runic Games" "http://www.torchlight2game.com/"
 AUTHOR="rcmn"
-WORKING_WINE_VERSION="1.5.24"
+WORKING_WINE_VERSION="3.0.3"
 GAME_VMS="512"
  
 # Starting the script

Nouveau code source

#!/bin/bash
# Date : (2013-03-16 21:00)
# Last revision : see changelog
# Wine version used : see changelog
# Distribution used to test : Linux Mint 12 x64
# Author : rcmn
# Licence : Retail
# Only For : http://www.playonlinux.com

# CHANGELOG
# [lahtis] (2013-02-18)
#   First script.
# [Dadu042] (2020-03-28)
#   Wine 1.5.24 (outdated) -> 3.0.3 (not tested)

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Torchlight2 Steam"
PREFIX="Torchlight2Steam"
EDITOR="Runic Games"
GAME_URL="Runic Games" "http://www.torchlight2game.com/"
AUTHOR="rcmn"
WORKING_WINE_VERSION="3.0.3"
GAME_VMS="512"
 
# Starting the script
#POL_GetSetupImages "http://files.playonlinux.com/resources/setups/torchlight2/top.jpg" "http://files.playonlinux.com/resources/setups/torchlight2/left.jpg" "$TITLE"
POL_SetupWindow_Init
 
# Starting debugging API
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
 
# Downloading wine if necessary and creating prefix
POL_System_SetArch "auto"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
# Choose between Digital Download version
POL_SetupWindow_InstallMethod "STEAM"
 
# Installing mandatory dependencies
POL_Call POL_Install_steam
POL_Call POL_Install_dxfullsetup
 
# Mandatory pre-install fix for steam
STEAM_ID="200710"
POL_Call POL_Install_steam_flags "$STEAM_ID"
 
# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
 
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
 
## Fix for this game
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
 
## Begin Common PlayOnMac Section ##
[ "$POL_OS" = "Mac" ] && Set_Managed "Off"
## End Section ##
 
# Making shortcut
POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
 
# Begin game installation
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue')" "$TITLE"
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "steam.exe" steam://install/$STEAM_ID
        POL_Wine_WaitExit "$TITLE"
fi
 
POL_SetupWindow_Close
exit 0

Réponses

syjeo Lundi 10 Octobre 2016 à 12:00
syjeo Anonymous

Messages

Hello,

 

Microsoft fonts installer loop continuously during the installation of dotnet, it is not possible to go further and download the game from steam.

Dotnet (.net) not installed because of the fonts installer looping

The fonts are present in emulated c drive.

 

Réponses

Edité par Dadu042

Sethan Vendredi 8 Avril 2016 à 0:12
Sethan Anonymous

Messages

Hi,

I wonder if there is any newer script available.

Thank you.

Réponses