Iris Online

Informations

Creator Message
sedy Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 2965
Wine: 3.0.3

Feedbacks

Description

Gypsy-themed fantasy MMORPG Free-to-play, developed by Eyasoft. 3 playable races with many different classes. Website. Fandom wiki.

 

Known issues (2016):

  • The launcher/patcher does not show some of the HTML content whilst downloading and patching the game.
  • The game uses Awesomium webcore to display ingame web content like who is online, rankings, topup and minigames and whilst the content is loaded, it is not currently displayed correctly, it's hidden behind a UI panel. Developer is looking into a fix or it could possibly be fixed with a winetrick. Still testing.

Screenshots

MiniatureMiniatureMiniature

Source code

#!/bin/bash
# Date : (2016-03-15)
# Last revision : see changelog.
# Wine version used :
# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3, ubuntu mate 15.10
# Author : Sedy, lahtis
# License : GNU/GPL v3
#
# CHANGELOG
# [Sedy] (2016-03-15)
#   Initial script.
# [Sedy] (2016-03-17)
#   Minor change to ordering so that web page with download links is opened before the message saying where to download it from.
# [lahtis] (2016-03-30)
#   This installer does works in any language.
#   Code improvements.
#   Better POL_Browser selector.
# [Dadu042] (2020-01-27 23:30)
#   Wine 1.9.4 -> 3.0.3


[ -z "$PLAYONLINUX" ] && exit 0 
source "$PLAYONLINUX/lib/sources"
      
TITLE="NoScrubs Iris Online"
PREFIX="Noscrubs"
EDITOR="Noscrubs"
GAME_URL="http://noscrubs.net"
AUTHOR="Sedy, Lahtis"
WORKING_WINE_VERSION="3.0.3"
      
# Starting the script
POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
  
POL_SetupWindow_Init
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 "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
# Fix pulseaudio issue
which pulseaudio && Set_OS "winxp"
 
# Do you have downloaded the program file?
# Choose XP file.
POL_SetupWindow_question "$(eval_gettext 'Do you have downloaded the program file?')" "$TITLE"
if [ "$APP_ANSWER" = "FALSE" ]
then
        POL_Browser "http://noscrubs.net/iris/download-game"
fi
 
cd "$HOME" || exit
POL_SetupWindow_browse "$(eval_gettext 'Please select the downloaded program file.')" "$TITLE"
 
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
 
# Making shortcut
POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
  
POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
POL_SetupWindow_Close
  
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Thursday 2 April 2020 at 19:05
Dadu042

Information

This update has been approved by the team.

Message

Ooops.

Differences

@@ -27,7 +27,7 @@
 EDITOR="Noscrubs"
 GAME_URL="http://noscrubs.net"
 AUTHOR="Sedy, Lahtis"
-WORKING_WINE_VERSION="1.9.4"
+WORKING_WINE_VERSION="3.0.3"
       
 # Starting the script
 POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"

New source code

#!/bin/bash
# Date : (2016-03-15)
# Last revision : see changelog.
# Wine version used :
# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3, ubuntu mate 15.10
# Author : Sedy, lahtis
# License : GNU/GPL v3
#
# CHANGELOG
# [Sedy] (2016-03-15)
#   Initial script.
# [Sedy] (2016-03-17)
#   Minor change to ordering so that web page with download links is opened before the message saying where to download it from.
# [lahtis] (2016-03-30)
#   This installer does works in any language.
#   Code improvements.
#   Better POL_Browser selector.
# [Dadu042] (2020-01-27 23:30)
#   Wine 1.9.4 -> 3.0.3


[ -z "$PLAYONLINUX" ] && exit 0 
source "$PLAYONLINUX/lib/sources"
      
TITLE="NoScrubs Iris Online"
PREFIX="Noscrubs"
EDITOR="Noscrubs"
GAME_URL="http://noscrubs.net"
AUTHOR="Sedy, Lahtis"
WORKING_WINE_VERSION="3.0.3"
      
# Starting the script
POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
  
POL_SetupWindow_Init
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 "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
# Fix pulseaudio issue
which pulseaudio && Set_OS "winxp"
 
# Do you have downloaded the program file?
# Choose XP file.
POL_SetupWindow_question "$(eval_gettext 'Do you have downloaded the program file?')" "$TITLE"
if [ "$APP_ANSWER" = "FALSE" ]
then
        POL_Browser "http://noscrubs.net/iris/download-game"
fi
 
cd "$HOME" || exit
POL_SetupWindow_browse "$(eval_gettext 'Please select the downloaded program file.')" "$TITLE"
 
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
 
# Making shortcut
POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
  
POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
POL_SetupWindow_Close
  
exit 0

Replies

Dadu042 Tuesday 28 January 2020 at 20:16
Dadu042

Warning

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

Differences

@@ -1,56 +1,69 @@
 #!/bin/bash
 # Date : (2016-03-15)
-# Last revision : (2016-03-30)
-# Wine version used : 1.9.4
+# Last revision : see changelog.
+# Wine version used :
 # Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3, ubuntu mate 15.10
 # Author : Sedy, lahtis
 # License : GNU/GPL v3
-     
+#
+# CHANGELOG
+# [Sedy] (2016-03-15)
+#   Initial script.
+# [Sedy] (2016-03-17)
+#   Minor change to ordering so that web page with download links is opened before the message saying where to download it from.
+# [lahtis] (2016-03-30)
+#   This installer does works in any language.
+#   Code improvements.
+#   Better POL_Browser selector.
+# [Dadu042] (2020-01-27 23:30)
+#   Wine 1.9.4 -> 3.0.3
+
+
 [ -z "$PLAYONLINUX" ] && exit 0 
 source "$PLAYONLINUX/lib/sources"
-     
+      
 TITLE="NoScrubs Iris Online"
 PREFIX="Noscrubs"
 EDITOR="Noscrubs"
 GAME_URL="http://noscrubs.net"
 AUTHOR="Sedy, Lahtis"
-WORKING_WINE_VERSION="1.9.4" 
-     
+WORKING_WINE_VERSION="1.9.4"
+      
 # Starting the script
 POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
- 
+  
 POL_SetupWindow_Init
 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 "x86"
-POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" 
-
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+ 
 # Fix pulseaudio issue
 which pulseaudio && Set_OS "winxp"
-
+ 
 # Do you have downloaded the program file?
 # Choose XP file.
 POL_SetupWindow_question "$(eval_gettext 'Do you have downloaded the program file?')" "$TITLE"
 if [ "$APP_ANSWER" = "FALSE" ]
 then
-	POL_Browser "http://noscrubs.net/iris/download-game"
+        POL_Browser "http://noscrubs.net/iris/download-game"
 fi
-
+ 
 cd "$HOME" || exit
 POL_SetupWindow_browse "$(eval_gettext 'Please select the downloaded program file.')" "$TITLE"
-
+ 
 POL_Wine "$APP_ANSWER"
 POL_Wine_WaitExit "$TITLE"
-
+ 
 # Making shortcut
 POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
- 
+  
 POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
 POL_SetupWindow_Close
- 
-exit 0
+  
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2016-03-15)
# Last revision : see changelog.
# Wine version used :
# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3, ubuntu mate 15.10
# Author : Sedy, lahtis
# License : GNU/GPL v3
#
# CHANGELOG
# [Sedy] (2016-03-15)
#   Initial script.
# [Sedy] (2016-03-17)
#   Minor change to ordering so that web page with download links is opened before the message saying where to download it from.
# [lahtis] (2016-03-30)
#   This installer does works in any language.
#   Code improvements.
#   Better POL_Browser selector.
# [Dadu042] (2020-01-27 23:30)
#   Wine 1.9.4 -> 3.0.3


[ -z "$PLAYONLINUX" ] && exit 0 
source "$PLAYONLINUX/lib/sources"
      
TITLE="NoScrubs Iris Online"
PREFIX="Noscrubs"
EDITOR="Noscrubs"
GAME_URL="http://noscrubs.net"
AUTHOR="Sedy, Lahtis"
WORKING_WINE_VERSION="1.9.4"
      
# Starting the script
POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
  
POL_SetupWindow_Init
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 "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
# Fix pulseaudio issue
which pulseaudio && Set_OS "winxp"
 
# Do you have downloaded the program file?
# Choose XP file.
POL_SetupWindow_question "$(eval_gettext 'Do you have downloaded the program file?')" "$TITLE"
if [ "$APP_ANSWER" = "FALSE" ]
then
        POL_Browser "http://noscrubs.net/iris/download-game"
fi
 
cd "$HOME" || exit
POL_SetupWindow_browse "$(eval_gettext 'Please select the downloaded program file.')" "$TITLE"
 
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
 
# Making shortcut
POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
  
POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
POL_SetupWindow_Close
  
exit 0

Replies

lahtis Wednesday 30 March 2016 at 2:00
lahtis

Warning

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

Message

  • This installer working in any language.
  • Code improvements
  • Better POL_Browser selector

:D

Differences

@@ -0,0 +1,56 @@
+#!/bin/bash
+# Date : (2016-03-15)
+# Last revision : (2016-03-30)
+# Wine version used : 1.9.4
+# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3, ubuntu mate 15.10
+# Author : Sedy, lahtis
+# License : GNU/GPL v3
+     
+[ -z "$PLAYONLINUX" ] && exit 0 
+source "$PLAYONLINUX/lib/sources"
+     
+TITLE="NoScrubs Iris Online"
+PREFIX="Noscrubs"
+EDITOR="Noscrubs"
+GAME_URL="http://noscrubs.net"
+AUTHOR="Sedy, Lahtis"
+WORKING_WINE_VERSION="1.9.4" 
+     
+# Starting the script
+POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
+ 
+POL_SetupWindow_Init
+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 "x86"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" 
+
+# Fix pulseaudio issue
+which pulseaudio && Set_OS "winxp"
+
+# Do you have downloaded the program file?
+# Choose XP file.
+POL_SetupWindow_question "$(eval_gettext 'Do you have downloaded the program file?')" "$TITLE"
+if [ "$APP_ANSWER" = "FALSE" ]
+then
+	POL_Browser "http://noscrubs.net/iris/download-game"
+fi
+
+cd "$HOME" || exit
+POL_SetupWindow_browse "$(eval_gettext 'Please select the downloaded program file.')" "$TITLE"
+
+POL_Wine "$APP_ANSWER"
+POL_Wine_WaitExit "$TITLE"
+
+# Making shortcut
+POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
+ 
+POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
+POL_SetupWindow_Close
+ 
+exit 0

New source code

#!/bin/bash
# Date : (2016-03-15)
# Last revision : (2016-03-30)
# Wine version used : 1.9.4
# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3, ubuntu mate 15.10
# Author : Sedy, lahtis
# License : GNU/GPL v3
     
[ -z "$PLAYONLINUX" ] && exit 0 
source "$PLAYONLINUX/lib/sources"
     
TITLE="NoScrubs Iris Online"
PREFIX="Noscrubs"
EDITOR="Noscrubs"
GAME_URL="http://noscrubs.net"
AUTHOR="Sedy, Lahtis"
WORKING_WINE_VERSION="1.9.4" 
     
# Starting the script
POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
 
POL_SetupWindow_Init
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 "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" 

# Fix pulseaudio issue
which pulseaudio && Set_OS "winxp"

# Do you have downloaded the program file?
# Choose XP file.
POL_SetupWindow_question "$(eval_gettext 'Do you have downloaded the program file?')" "$TITLE"
if [ "$APP_ANSWER" = "FALSE" ]
then
        POL_Browser "http://noscrubs.net/iris/download-game"
fi

cd "$HOME" || exit
POL_SetupWindow_browse "$(eval_gettext 'Please select the downloaded program file.')" "$TITLE"

POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"

# Making shortcut
POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
 
POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
POL_SetupWindow_Close
 
exit 0

Replies

Anonymous
Sunday 1 May 2016 at 4:06
Thanks lahtis :)
Friday 2 August 2019 at 21:50
Approved.
sedy Thursday 17 March 2016 at 18:31
sedy Anonymous

Warning

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

Message

Minor change to ordering so that web page with download links is opened before the message saying where to download it from.

Differences

@@ -0,0 +1,63 @@
+#!/bin/bash
+# Date : (2016-03-15)
+# Last revision : (2016-03-15)
+# Wine version used : 1.9.4
+# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3
+# Author : Sedy
+# License : GNU/GPL v3
+     
+[ "$PLAYONLINUX" = "" ] && exit 1
+source "$PLAYONLINUX/lib/sources"
+     
+TITLE="NoScrubs Iris Online"
+PREFIX="Noscrubs"
+EDITOR="Noscrubs"
+GAME_URL="http://noscrubs.net"
+AUTHOR="Sedy"
+ 
+     
+# Starting the script
+POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
+ 
+POL_SetupWindow_Init
+     
+# Starting debugging API
+POL_Debug_Init
+     
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+ 
+[ "$POL_LANG" = "en" ] && link="http://noscrubs.net/iris/download-game"
+ 
+     
+# Setting Wine Version
+WORKING_WINE_VERSION="1.9.4"
+     
+# Setting prefix path
+POL_Wine_SelectPrefix "$PREFIX"
+     
+# Downloading wine if necessary and creating prefix
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+  
+Set_OS "winxp"
+     
+if [ "$POL_SELECTED_FILE" = "" ]
+then
+POL_Browser "$link"
+POL_SetupWindow_message "The $TITLE setup file is needed to continue....\n\nDownload it from here:\n\n$link" "$TITLE"
+POL_SetupWindow_browse "Where is the installation file of $TITLE?" "$TITLE"
+CHEMIN="$APP_ANSWER"
+else
+CHEMIN="$POL_SELECTED_FILE"
+fi
+POL_SetupWindow_wait "Installing $TITLE" "$TITLE"
+ 
+POL_Wine "$CHEMIN"
+POL_Wine_WaitExit "$TITLE" --allow-kill
+ 
+# Making shortcut
+POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
+ 
+POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
+POL_SetupWindow_Close
+exit
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2016-03-15)
# Last revision : (2016-03-15)
# Wine version used : 1.9.4
# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3
# Author : Sedy
# License : GNU/GPL v3
     
[ "$PLAYONLINUX" = "" ] && exit 1
source "$PLAYONLINUX/lib/sources"
     
TITLE="NoScrubs Iris Online"
PREFIX="Noscrubs"
EDITOR="Noscrubs"
GAME_URL="http://noscrubs.net"
AUTHOR="Sedy"
 
     
# Starting the script
POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
 
POL_SetupWindow_Init
     
# Starting debugging API
POL_Debug_Init
     
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
[ "$POL_LANG" = "en" ] && link="http://noscrubs.net/iris/download-game"
 
     
# Setting Wine Version
WORKING_WINE_VERSION="1.9.4"
     
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
     
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
  
Set_OS "winxp"
     
if [ "$POL_SELECTED_FILE" = "" ]
then
POL_Browser "$link"
POL_SetupWindow_message "The $TITLE setup file is needed to continue....\n\nDownload it from here:\n\n$link" "$TITLE"
POL_SetupWindow_browse "Where is the installation file of $TITLE?" "$TITLE"
CHEMIN="$APP_ANSWER"
else
CHEMIN="$POL_SELECTED_FILE"
fi
POL_SetupWindow_wait "Installing $TITLE" "$TITLE"
 
POL_Wine "$CHEMIN"
POL_Wine_WaitExit "$TITLE" --allow-kill
 
# Making shortcut
POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
 
POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
POL_SetupWindow_Close
exit

Replies

sedy Wednesday 16 March 2016 at 4:40
sedy Anonymous

Message

Screenshots

Replies

Friday 2 August 2019 at 21:51
Pictures attached.
sedy Wednesday 16 March 2016 at 4:13
sedy Anonymous

Warning

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

Message

Tested and working on Mac OS X El Capitan 10.11.1 and Linux Mint 17.3

Differences

@@ -0,0 +1,63 @@
+#!/bin/bash
+# Date : (2016-03-15)
+# Last revision : (2016-03-15)
+# Wine version used : 1.9.4
+# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3
+# Author : Sedy
+# License : GNU/GPL v3
+    
+[ "$PLAYONLINUX" = "" ] && exit 1
+source "$PLAYONLINUX/lib/sources"
+    
+TITLE="NoScrubs Iris Online"
+PREFIX="Noscrubs"
+EDITOR="Noscrubs"
+GAME_URL="http://noscrubs.net"
+AUTHOR="Sedy"
+
+    
+# Starting the script
+POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"
+
+POL_SetupWindow_Init
+    
+# Starting debugging API
+POL_Debug_Init
+    
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
+[ "$POL_LANG" = "en" ] && link="http://noscrubs.net/iris/download-game"
+
+    
+# Setting Wine Version
+WORKING_WINE_VERSION="1.9.4"
+    
+# Setting prefix path
+POL_Wine_SelectPrefix "$PREFIX"
+    
+# Downloading wine if necessary and creating prefix
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+ 
+Set_OS "winxp"
+    
+if [ "$POL_SELECTED_FILE" = "" ]
+then
+POL_SetupWindow_message "The $TITLE setup file is needed to continue....\n\nDownload it from here:\n\n$link" "$TITLE"
+POL_Browser "$link"
+POL_SetupWindow_browse "Where is the installation file of $TITLE?" "$TITLE"
+CHEMIN="$APP_ANSWER"
+else
+CHEMIN="$POL_SELECTED_FILE"
+fi
+POL_SetupWindow_wait "Installing $TITLE" "$TITLE"
+
+POL_Wine "$CHEMIN"
+POL_Wine_WaitExit "$TITLE" --allow-kill
+
+# Making shortcut
+POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"
+
+POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
+POL_SetupWindow_Close
+exit
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2016-03-15)
# Last revision : (2016-03-15)
# Wine version used : 1.9.4
# Distribution used to test : Mac OS X El Capitan 10.11.1, Linux Mint Rosa 17.3
# Author : Sedy
# License : GNU/GPL v3
    
[ "$PLAYONLINUX" = "" ] && exit 1
source "$PLAYONLINUX/lib/sources"
    
TITLE="NoScrubs Iris Online"
PREFIX="Noscrubs"
EDITOR="Noscrubs"
GAME_URL="http://noscrubs.net"
AUTHOR="Sedy"

    
# Starting the script
POL_GetSetupImages "http://noscrubs.net/downloads/top.jpg" "http://noscrubs.net/downloads/left.jpg" "$TITLE"

POL_SetupWindow_Init
    
# Starting debugging API
POL_Debug_Init
    
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

[ "$POL_LANG" = "en" ] && link="http://noscrubs.net/iris/download-game"

    
# Setting Wine Version
WORKING_WINE_VERSION="1.9.4"
    
# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
    
# Downloading wine if necessary and creating prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 
Set_OS "winxp"
    
if [ "$POL_SELECTED_FILE" = "" ]
then
POL_SetupWindow_message "The $TITLE setup file is needed to continue....\n\nDownload it from here:\n\n$link" "$TITLE"
POL_Browser "$link"
POL_SetupWindow_browse "Where is the installation file of $TITLE?" "$TITLE"
CHEMIN="$APP_ANSWER"
else
CHEMIN="$POL_SELECTED_FILE"
fi
POL_SetupWindow_wait "Installing $TITLE" "$TITLE"

POL_Wine "$CHEMIN"
POL_Wine_WaitExit "$TITLE" --allow-kill

# Making shortcut
POL_Shortcut "IrisLauncher.exe" "$TITLE" "$TITLE.png" "" "Game;"

POL_SetupWindow_message "$TITLE has been successfully installed" "$TITLE"
POL_SetupWindow_Close
exit

Replies

Wednesday 30 March 2016 at 1:23
installer is not working in others language. remove $POL_LANG and make better POL_Browser selector.