4. USB stick doesn't work correctly most of the time. It's a lot better with a cheap hdd. It should be in a FAQ. Which linux distro and desktop?
So I noticed that my ScummVM plugin through WFL is using an older version of ScummVM. Is there a way to update the DOL file to use the newer version? is there simply a newer modded DOL out there? Am I asking too much? If so it's not a big deal to just load it via HBC. Thanks!
#!/bin/bash
#########################################################################################################
#
# CONVERTISSEUR WBFS POUR WII
#
# Convertit les fichiers jeux .iso en .wbfs lisibles pour la Wii.
#
#
#########################################################################################################
IFS="
"
start_time=`date +%s`
WitPath="/YOURPATH/wit-v2.40a-r7331-x86_64/bin/./wit"
WitBin="wit-v2.40a"
logfile=".logwbfs.txt"
folder=$NAUTILUS_SCRIPT_CURRENT_URI
mkdir "./outwbfs"
#zenity --info --text="$folder"
#sleep 1
#exit
rm /tmp/log_end_time.txt
pkill -9 wit
# Find wit pid and wait untill done
WaitProcess ()
{
pid=$(ps aux | grep $WitBin | grep -v grep | awk '{print $2}')
while ps -p $pid > /dev/null; do sleep 1; done;
}
printf %s "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" |
while read -r arg
do
#==================================================================
# Dossier selectionné #
#==================================================================
if [ -d "$arg" ]; then
cd "$arg"
# RESTRICTION : Seulement en .iso/wbfs Suffisant?
find . -iname '*.iso' -o -iname '*.wbfs' | while read i;
do
Filename=$(basename "$i")
# Send wit command in external terminal. Write time to file.
#mate-terminal -x bash -c "\"${WitPath}\" CONVERT --wbfs \"${Filename}\" 2>> ./../$logfile; date +%s > /tmp/log_end_time.txt"
mate-terminal -x bash -c "\"${WitPath}\" COPY --wbfs --split \"${Filename}\" \"./outwbfs\" 2>> ./../$logfile; date +%s > /tmp/log_end_time.txt"
WaitProcess;
done
#====================================================================
# Fichiers selectionnés #
#====================================================================
else
#http://www.tldp.org/LDP/abs/html/parameter-substitution.html
Filename=$(basename "$arg")
# Send wit command in external terminal. Write time to file.
#mate-terminal -x bash -c "\"${WitPath}\" CONVERT --wbfs \"${Filename}\" 2>> $logfile; date +%s > /tmp/log_end_time.txt"
mate-terminal -x bash -c "\"${WitPath}\" COPY --wbfs --split \"${Filename}\" \"./outwbfs\" 2>> $logfile; date +%s > /tmp/log_end_time.txt"
WaitProcess;
fi
# Force retour dossier initial, car si dossier selectionné ne trouve pas logfile
cd "$NAUTILUS_SCRIPT_CURRENT_URI"
done
#====================================================================
# Affiche fichier log et temps écoulé #
#====================================================================
sleep 0.5
logtext=`cat $logfile`
# Affiche fichier log s'il y a des erreurs.
if [[ $logtext == "" ]] ; then
# echo ne s'affichera pas. Pour eviter resultat condition vide.
echo "Conversion wbfs réussie!"
else
zenity --question --title="Erreur" --text=" Echec de conversion!\n\n Voulez-vous ouvrir le fichier d'erreurs?"
if [ "$?" = 0 ] ; then
zenity --info --text="$logtext"
fi
fi
rm $logfile
cd /tmp/
end_time=`cat log_end_time.txt`
sec=$(( $((end_time - start_time)) %60 ))
min=$(( $((end_time - start_time)) /60 ))
notify-send -i "Fin de la conversion" "Conversion wbfs terminée en $min minutes et $sec secondes." -t 30000
rm /tmp/log_end_time.txt
By partition I meant setting up the correct filesystem.@octoshrimpy it is inadvisable to partition an SD card, unless you're creating a wii linux partition?
It is possible to set up without it: first time, without a guide, though, honestly your best bet to get your initial setup going is using WINE to use modmii...
using custom_titles.ini you can specify case color for wii, gc, wiiware/vc games - https://sites.google.com/site/wiiflowiki4/custom-titlesDoes anyone know how to set a different cover color for one game within the same coverflow? I can't recall and cannot find any info.
For example, New super Mario bros has a red cover case while the other wii games are white.
Is it possible to achieve the same thing for plugin games?
It's for my upcoming japanese pc engine cover set. Some games came in white jewel cases, while the majority had black cases
). It's released in Mastershoes Cover Collection thread if anyone's interestedIt's for my upcoming japanese pc engine cover set.
i am saying that can i run wiiware wads like HeavyFire.wad or Yoshi story.wad without extract it on showmii pc.Not sure if I understand what you're asking. You want to launch wiiware/vc games through wiiflow? There's no folder to put your wads in, like for wii/gc/plugin games. It works differently: you have to install them into your Nand or Emunand first, then edit your source_menu.ini and add an entry [BUTTON_#] with these lines
image=Nand.png
image_s=Nand.png
title=Nand
source=nand
this is for real Nand, for emunand replace 'nand' with 'emunand'
It's released in Mastershoes Cover Collection thread if anyone's interested

