WII U USB Helper
Informations
| Creator | Meddelanden |
|---|---|
NoyTheBiche
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks3 0 DescriptionThis program is intended to help you download games from NUS and install them on your Wii U. It's a bit like NUS Grabber except that it does not rely on any external tool, almost everything has been reprogrammed from scratch with ease of use in mind. Source code#!/bin/bash
# Date : (2017-09-05 00-59)
# Last revision : (2017-10-05 09-51)
# Wine version used : 2.7 Staging
# Distribution used to test : Ubuntu 14.04.02 LTS
# Author : NoyTheBiche
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="WiiUSBHelper"
PREFIX="wiiusbhelper"
WINEVERSION="2.6-staging"
EDITOR="Hikari06"
GAME_URL="http://www.wiiusbhelper.com"
AUTHOR="NoyTheBiche"
# Download images for installation script
POL_GetSetupImages "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "$TITLE"
# Initialize the script, debugging
POL_SetupWindow_Init
POL_SetupWindow_SetID 1858
POL_Debug_Init
# Setup presentation window
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Begin setting up the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Install .NET Framework 4.5 and others stuffs.
POL_Call POL_Install_msxml3
POL_Call POL_Install_dotnet30
POL_Call POL_Install_dotnet30sp1
POL_Call POL_Install_dotnet45
# Create and select the required directory for the updater
mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper"
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper"
# Download the updater
POL_Download "http://application.wiiuusbhelper.com/Updater.exe"
# Run the updater
POL_SetupWindow_message "$(eval_gettext 'Now, the program will start, just configure your Region and then, close the app! don't use the app!')" "$TITLE"
POL_Wine Updater.exe
# Wait for the updater to finish in order to create a shortcut of the executable
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "Updater.exe" "WiiUSBHelper" "logo2T.png.ico"
# Download the fonts required for Japanese characters support
POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE"
if [ "$APP_ANSWER" = "TRUE" ]
then
cd "$WINEPREFIX/drive_c/windows/Fonts"
POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443"
POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8"
fi
# Send a congratulations message
POL_SetupWindow_message "$(eval_gettext 'You can now use WiiUSBHelper!')" "$TITLE"
POL_SetupWindow_Close
exit |
Contributions
Filters:
Contribute| Member | Meddelanden |
| NoyTheBiche | Tuesday 9 May 2017 at 9:51 |
NoyTheBiche
|
InformationThis update has been approved by the team. MeddelandenFixed crash with PlayOnMac. Changing used version of Wine (2.6 Staging) Differences@@ -0,0 +1,69 @@ +#!/bin/bash +# Date : (2017-09-05 00-59) +# Last revision : (2017-10-05 09-51) +# Wine version used : 2.7 Staging +# Distribution used to test : Ubuntu 14.04.02 LTS +# Author : NoyTheBiche + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" +TITLE="WiiUSBHelper" +PREFIX="wiiusbhelper" +WINEVERSION="2.6-staging" +EDITOR="Hikari06" +GAME_URL="http://www.wiiusbhelper.com" +AUTHOR="NoyTheBiche" + +# Download images for installation script +POL_GetSetupImages "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "$TITLE" + +# Initialize the script, debugging +POL_SetupWindow_Init +POL_SetupWindow_SetID 1858 +POL_Debug_Init + +# Setup presentation window +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Begin setting up the Wine Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Install .NET Framework 4.5 and others stuffs. +POL_Call POL_Install_msxml3 +POL_Call POL_Install_dotnet30 +POL_Call POL_Install_dotnet30sp1 +POL_Call POL_Install_dotnet45 + +# Create and select the required directory for the updater +mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper" +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper" + +# Download the updater +POL_Download "http://application.wiiuusbhelper.com/Updater.exe" + +# Run the updater +POL_SetupWindow_message "$(eval_gettext 'Now, the program will start, just configure your Region and then, close the app! don't use the app!')" "$TITLE" + +POL_Wine Updater.exe + +# Wait for the updater to finish in order to create a shortcut of the executable +POL_Wine_WaitExit "$TITLE" + +POL_Shortcut "Updater.exe" "WiiUSBHelper" "logo2T.png.ico" + +# Download the fonts required for Japanese characters support +POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" + +if [ "$APP_ANSWER" = "TRUE" ] +then + cd "$WINEPREFIX/drive_c/windows/Fonts" + POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" + POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" +fi + +# Send a congratulations message +POL_SetupWindow_message "$(eval_gettext 'You can now use WiiUSBHelper!')" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash
# Date : (2017-09-05 00-59)
# Last revision : (2017-10-05 09-51)
# Wine version used : 2.7 Staging
# Distribution used to test : Ubuntu 14.04.02 LTS
# Author : NoyTheBiche
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="WiiUSBHelper"
PREFIX="wiiusbhelper"
WINEVERSION="2.6-staging"
EDITOR="Hikari06"
GAME_URL="http://www.wiiusbhelper.com"
AUTHOR="NoyTheBiche"
# Download images for installation script
POL_GetSetupImages "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "$TITLE"
# Initialize the script, debugging
POL_SetupWindow_Init
POL_SetupWindow_SetID 1858
POL_Debug_Init
# Setup presentation window
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Begin setting up the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Install .NET Framework 4.5 and others stuffs.
POL_Call POL_Install_msxml3
POL_Call POL_Install_dotnet30
POL_Call POL_Install_dotnet30sp1
POL_Call POL_Install_dotnet45
# Create and select the required directory for the updater
mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper"
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper"
# Download the updater
POL_Download "http://application.wiiuusbhelper.com/Updater.exe"
# Run the updater
POL_SetupWindow_message "$(eval_gettext 'Now, the program will start, just configure your Region and then, close the app! don't use the app!')" "$TITLE"
POL_Wine Updater.exe
# Wait for the updater to finish in order to create a shortcut of the executable
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "Updater.exe" "WiiUSBHelper" "logo2T.png.ico"
# Download the fonts required for Japanese characters support
POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE"
if [ "$APP_ANSWER" = "TRUE" ]
then
cd "$WINEPREFIX/drive_c/windows/Fonts"
POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443"
POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8"
fi
# Send a congratulations message
POL_SetupWindow_message "$(eval_gettext 'You can now use WiiUSBHelper!')" "$TITLE"
POL_SetupWindow_Close
exit SvarSunday 18 June 2017 at 11:40
Sunday 18 June 2017 at 11:54
Sunday 18 June 2017 at 16:20
Friday 10 May 2019 at 13:41
|
| NoyTheBiche | Tuesday 9 May 2017 at 1:23 |
NoyTheBiche
|
WarningThis update has not been approved yet by the team. MeddelandenImproved compatibility. Now, the program tells you to not use the program at the first launch. Differences@@ -0,0 +1,69 @@ +#!/bin/bash +# Date : (2017-09-05 00-59) +# Last revision : (2017-09-05 00-59) +# Wine version used : 2.7 Staging +# Distribution used to test : Ubuntu 14.04.02 LTS +# Author : NoyTheBiche + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" +TITLE="WiiUSBHelper" +PREFIX="wiiusbhelper" +WINEVERSION="2.7-staging" +EDITOR="Hikari06" +GAME_URL="http://www.wiiusbhelper.com" +AUTHOR="NoyTheBiche" + +# Download images for installation script +POL_GetSetupImages "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "$TITLE" + +# Initialize the script, debugging +POL_SetupWindow_Init +POL_SetupWindow_SetID 1858 +POL_Debug_Init + +# Setup presentation window +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Begin setting up the Wine Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Install .NET Framework 4.5 and others stuffs. +POL_Call POL_Install_msxml3 +POL_Call POL_Install_dotnet30 +POL_Call POL_Install_dotnet30sp1 +POL_Call POL_Install_dotnet45 + +# Create and select the required directory for the updater +mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper" +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper" + +# Download the updater +POL_Download "http://application.wiiuusbhelper.com/Updater.exe" + +# Run the updater +POL_SetupWindow_message "$(eval_gettext 'Now, the program will start, just configure your Region and then, close the app! don't use the app!')" "$TITLE" + +POL_Wine Updater.exe + +# Wait for the updater to finish in order to create a shortcut of the executable +POL_Wine_WaitExit "$TITLE" + +POL_Shortcut "Updater.exe" "WiiUSBHelper" "logo2T.png.ico" + +# Download the fonts required for Japanese characters support +POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" + +if [ "$APP_ANSWER" = "TRUE" ] +then + cd "$WINEPREFIX/drive_c/windows/Fonts" + POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" + POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" +fi + +# Send a congratulations message +POL_SetupWindow_message "$(eval_gettext 'You can now use WiiUSBHelper!')" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash
# Date : (2017-09-05 00-59)
# Last revision : (2017-09-05 00-59)
# Wine version used : 2.7 Staging
# Distribution used to test : Ubuntu 14.04.02 LTS
# Author : NoyTheBiche
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="WiiUSBHelper"
PREFIX="wiiusbhelper"
WINEVERSION="2.7-staging"
EDITOR="Hikari06"
GAME_URL="http://www.wiiusbhelper.com"
AUTHOR="NoyTheBiche"
# Download images for installation script
POL_GetSetupImages "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "$TITLE"
# Initialize the script, debugging
POL_SetupWindow_Init
POL_SetupWindow_SetID 1858
POL_Debug_Init
# Setup presentation window
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Begin setting up the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Install .NET Framework 4.5 and others stuffs.
POL_Call POL_Install_msxml3
POL_Call POL_Install_dotnet30
POL_Call POL_Install_dotnet30sp1
POL_Call POL_Install_dotnet45
# Create and select the required directory for the updater
mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper"
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper"
# Download the updater
POL_Download "http://application.wiiuusbhelper.com/Updater.exe"
# Run the updater
POL_SetupWindow_message "$(eval_gettext 'Now, the program will start, just configure your Region and then, close the app! don't use the app!')" "$TITLE"
POL_Wine Updater.exe
# Wait for the updater to finish in order to create a shortcut of the executable
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "Updater.exe" "WiiUSBHelper" "logo2T.png.ico"
# Download the fonts required for Japanese characters support
POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE"
if [ "$APP_ANSWER" = "TRUE" ]
then
cd "$WINEPREFIX/drive_c/windows/Fonts"
POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443"
POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8"
fi
# Send a congratulations message
POL_SetupWindow_message "$(eval_gettext 'You can now use WiiUSBHelper!')" "$TITLE"
POL_SetupWindow_Close
exit Svar |
| NoyTheBiche | Tuesday 9 May 2017 at 1:09 |
NoyTheBiche
|
WarningThis update has not been approved yet by the team. MeddelandenFirst Commit of the Script.
Added WiiUSBHelper on PlayOnLinux's Compatible programs list. Differences@@ -0,0 +1,67 @@ +#!/bin/bash +# Date : (2017-09-05 00-59) +# Last revision : (2017-09-05 00-59) +# Wine version used : 2.7 Staging +# Distribution used to test : Ubuntu 14.04.02 LTS +# Author : NoyTheBiche + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" +TITLE="WiiUSBHelper" +PREFIX="wiiusbhelper" +WINEVERSION="2.7-staging" +EDITOR="Hikari06" +GAME_URL="http://www.wiiusbhelper.com" +AUTHOR="NoyTheBiche" + +# Download images for installation script +POL_GetSetupImages "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "$TITLE" + +# Initialize the script, debugging +POL_SetupWindow_Init +POL_SetupWindow_SetID 1858 +POL_Debug_Init + +# Setup presentation window +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Begin setting up the Wine Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Install .NET Framework 4.5 +POL_Call POL_Install_dotnet45 +POL_Call POL_Install_msxml3 + +# Create and select the required directory for the updater +mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper" +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper" + +# Download the updater +POL_Download "http://application.wiiuusbhelper.com/Updater.exe" + +# Run the updater +POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer. CLOSE THE PROGRAM AFTER THE CONFIGURATION!')" "$TITLE" + +POL_Wine Updater.exe + +# Wait for the updater to finish in order to create a shortcut of the executable +POL_Wine_WaitExit "$TITLE" + +POL_Shortcut "Updater.exe" "WiiUSBHelper" "logo2T.png.ico" + +# Download the fonts required for Japanese characters support +POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE" + +if [ "$APP_ANSWER" = "TRUE" ] +then + cd "$WINEPREFIX/drive_c/windows/Fonts" + POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443" + POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8" +fi + +# Send a congratulations message +POL_SetupWindow_message "$(eval_gettext 'You can now use WiiUSBHelper!')" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash
# Date : (2017-09-05 00-59)
# Last revision : (2017-09-05 00-59)
# Wine version used : 2.7 Staging
# Distribution used to test : Ubuntu 14.04.02 LTS
# Author : NoyTheBiche
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="WiiUSBHelper"
PREFIX="wiiusbhelper"
WINEVERSION="2.7-staging"
EDITOR="Hikari06"
GAME_URL="http://www.wiiusbhelper.com"
AUTHOR="NoyTheBiche"
# Download images for installation script
POL_GetSetupImages "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "http://img4.imagetitan.com/img4/small/14/14_logo_wii_uusb_herper.png" "$TITLE"
# Initialize the script, debugging
POL_SetupWindow_Init
POL_SetupWindow_SetID 1858
POL_Debug_Init
# Setup presentation window
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
# Begin setting up the Wine Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
# Install .NET Framework 4.5
POL_Call POL_Install_dotnet45
POL_Call POL_Install_msxml3
# Create and select the required directory for the updater
mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper"
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/wiiusbhelper"
# Download the updater
POL_Download "http://application.wiiuusbhelper.com/Updater.exe"
# Run the updater
POL_SetupWindow_message "$(eval_gettext 'Press next to start the installer. CLOSE THE PROGRAM AFTER THE CONFIGURATION!')" "$TITLE"
POL_Wine Updater.exe
# Wait for the updater to finish in order to create a shortcut of the executable
POL_Wine_WaitExit "$TITLE"
POL_Shortcut "Updater.exe" "WiiUSBHelper" "logo2T.png.ico"
# Download the fonts required for Japanese characters support
POL_SetupWindow_question "Install additional fonts for Japanese characters support?" "$TITLE"
if [ "$APP_ANSWER" = "TRUE" ]
then
cd "$WINEPREFIX/drive_c/windows/Fonts"
POL_Download "http://www.boaty.org/POL/msgothic.ttc" "1f162793323e204a0d598a9aa4241443"
POL_Download "http://www.boaty.org/POL/msmincho.ttc" "ea3f8835f67b492a0740ac34e1e807f8"
fi
# Send a congratulations message
POL_SetupWindow_message "$(eval_gettext 'You can now use WiiUSBHelper!')" "$TITLE"
POL_SetupWindow_Close
exit SvarTuesday 28 November 2017 at 1:24
|
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
Install this program 
