Hacking Need beta testers for my projects

Status
Not open for further replies.

XFlak

Wiitired but still kicking
Member
Joined
Sep 12, 2009
Messages
13,847
Trophies
3
Age
38
Location
Cyprus, originally from Toronto
Website
modmii.github.io
XP
9,844
Country
Cyprus
oh yea, I forgot to mention this, but you should make sure the cIOSs your app builds signs the 00000000.app file properly so that it can be identified by the latest usb-loaders\syschecks. If you need more of an explanation of how it's signed let me know.

Also, d2x-v7+ cIOSs require the IRQ4 patch be made to the last base module (usually 0000000e.app but may be different depending on the base IOS used). The offsets for this are in ModMii as well as in ciosmaps.xml.

Lastly, you should also add the Korean Key patch to your cIOSs, again the offsets are in modmii and ciosmaps.xml.

I'm not sure if you're app does all this already or not, but I figured I'd mention it just in case.
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
subscript used with non-Array variable => crash
Can I have a try with the source, so that I can report the real line number?
i got a weird error when loading the nand
Download
You should see :
aklyl.png
Souce code:
Code:
#NoTrayIcon
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Version=beta
#AutoIt3Wrapper_icon=..Logo.ico
#AutoIt3Wrapper_outfile=Spayrosam Multi App Nand part.exe
#AutoIt3Wrapper_UseUpx=n
#AutoIt3Wrapper_Res_Comment=Spayrosam Multi App Nand part
#AutoIt3Wrapper_Res_Description=Spayrosam Multi App Nand part
#AutoIt3Wrapper_Res_Fileversion=1.0.0.0
#AutoIt3Wrapper_Res_ProductVersion=1.0.0.0
#AutoIt3Wrapper_Res_LegalCopyright=Copyright © 2009 - © 2012 Spayrosam (Samir.L)
#AutoIt3Wrapper_Res_Field=CompanyName|Spayrosam
#AutoIt3Wrapper_Res_Field=ProductName|Spayrosam Multi App Nand part
#AutoIt3Wrapper_Res_Field=ProductVersion|1.1.0.0
#AutoIt3Wrapper_Res_Field=Spayrosam Multi App Nand part|1.1.0.0
#AutoIt3Wrapper_Run_AU3Check=n
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <Array.au3>
#include <GuiListView.au3>
#include <StaticConstants.au3>
Local $DataDir = @ScriptDir
$GUI = GUICreate("List Nand titles", 680, 465, -1, -1)
GUICtrlCreateGroup("", 5, 0, 500, 40)
$NandFolder = GUICtrlCreateButton("Nand folder", 10, 10, 80, 25)
$NandFolderinput = GUICtrlCreateInput("", 97, 10, 300, 25)
$loadnand = GUICtrlCreateButton("Load Nand", 400, 10, 100, 25)
GUICtrlCreateGroup("", 510, 0, 163, 40)
GUICtrlCreateLabel("Language:", 511, 10, 100, 25, BitOR($SS_CENTER, $SS_CENTERIMAGE))
GUICtrlSetFont(-1, 12, 600)
$NandLangBox = GUICtrlCreateCombo("", 605, 13, 60, 25)
GUICtrlSetData(-1, "EN|FR|DE|ES|IT|NL|PT|US|JA|KO|ZH", "EN")
$NandListView = GUICtrlCreateListView("", 10, 45, 660, 350, -1, BitOR($LVS_SORTASCENDING, $LVS_EX_FULLROWSELECT, $LVS_EX_GRIDLINES, $LVS_EX_REGIONAL, $LVS_EX_CHECKBOXES))
$NandListViewHandle = GUICtrlGetHandle($NandListView)
_GUICtrlListView_AddColumn($NandListView, "Folder Name", 80)
_GUICtrlListView_AddColumn($NandListView, "ID", 70)
_GUICtrlListView_AddColumn($NandListView, "Name", 200)
_GUICtrlListView_AddColumn($NandListView, "Type", 100)
_GUICtrlListView_AddColumn($NandListView, "Region", 100)
_GUICtrlListView_AddColumn($NandListView, "Title size (Kb)", 100)
_GUICtrlListView_AddColumn($NandListView, "", 0)
_GUICtrlListView_AddColumn($NandListView, "", 0)
_GUICtrlListView_AddColumn($NandListView, "", 0)
_GUICtrlListView_AddColumn($NandListView, "", 0)
_GUICtrlListView_AddColumn($NandListView, "", 0)
$NandState = GUICtrlCreateLabel("State", 10, 400, 660, 25, BitOR($SS_CENTER, $SS_CENTERIMAGE))
$NandProgress = GUICtrlCreateProgress(10, 430, 660, 20)
GUISetState(@SW_SHOW)
Do
Switch GUIGetMsg()
Case -3
Exit
Case $NandFolder
Local $path = FileSelectFolder("Choose a folder. (Nand)", @DesktopDir, 1, "", $GUI)
If @[member='Error 917']<> 1 Then
If StringRegExpReplace($path, "^.*(.*)$", "$1") = "Nand" Then
_GUICtrlListView_DeleteAllItems(GUICtrlGetHandle($NandListView))
GUICtrlSetData($NandFolderinput, $path)
Else
MsgBox(48, "Wrong folder!", "Navigate to 'Nand' folder (USBnand)", -1, $GUI)
EndIf
Else
MsgBox(48, "Wrong folder!", "Navigate to 'Nand' folder (USBnand)", -1, $GUI)
EndIf
Case $loadnand
If GUICtrlRead($NandFolderinput) <> "" Then
_GUICtrlListView_DeleteAllItems(GUICtrlGetHandle($NandListView))
$_Nand_List = _LoadNand(GUICtrlRead($NandFolderinput) & "title")
If $_Nand_List <> "0" Then MsgBox(16, "Error", $_Nand_List, Default, $GUI)
EndIf
EndSwitch
Until 0
Func _LoadNand($path)
Local $_NFolder_found, $_iNMain, $_iN, $NewNumber = 0
Global $FileListNandGameID[1][7]
Local $_iNObj = ObjCreate('Scripting.FileSystemObject')
If @[member='Error 917']Or Not IsObj($_iNObj) Then
Return "Failed Creating Scripting.FileSystemObject"
EndIf
If Not $_iNObj.FolderExists($path) Then
Return "Path not found or invalid"
EndIf
If StringRight($path, 1) <> '' Then $path &= ''
$_NFolder_found = $_iNObj.GetFolder($path)
For $_iNMain In $_NFolder_found.SubFolders
If StringLeft($_iNMain.Name, 4) = "0001" Then
Local $_NFolder_found
$_NFolder_found = $_iNObj.GetFolder($path & $_iNMain.Name & '')
For $_iN In $_NFolder_found.SubFolders
If StringRegExp($_iN.Name, "(?i).*") Then
Local $_iNTiCK = StringReplace($path, "title", "ticket") & $_iNMain.Name & "" & $_iN.Name & ".tik"
Local $_iTest_AppFile = $path & $_iNMain.Name & "" & $_iN.Name & "content*.app"
If FileExists($_iNTiCK) = 1 And FileGetSize($_iNTiCK) > 0 And FileExists($_iTest_AppFile) = 1 Then
$NewNumber += 1
ReDim $FileListNandGameID[$NewNumber + 1][7]
$FileListNandGameID[$NewNumber][0] = $_iN.Name
$FileListNandGameID[$NewNumber][1] = StringUpper(BinaryToString("0x" & $_iN.Name))
$FileListNandGameID[$NewNumber][3] = _GetGameType($FileListNandGameID[$NewNumber][1])
$FileListNandGameID[$NewNumber][4] = _GetRegion($FileListNandGameID[$NewNumber][1])
$FileListNandGameID[$NewNumber][5] = Round((DirGetSize($path & $_iNMain.Name & "" & $_iN.Name) + FileGetSize($_iNTiCK)) / 1024, 2)
$FileListNandGameID[$NewNumber][6] = $_iNMain.Name
EndIf
EndIf
Next
EndIf
Next
;Set title
For $iSet = 1 To UBound($FileListNandGameID) - 1
GUICtrlSetData($NandState, "File N' " & $iSet & " / " & UBound($FileListNandGameID) - 1 & "	|	" & "Load: '" & $FileListNandGameID[$iSet][0] & " : " & $FileListNandGameID[$iSet][1] & "'")
Local $iPercent = Round($iSet / (UBound($FileListNandGameID) - 1) * 100, 1)
GUICtrlSetData($NandProgress, $iPercent)
If FileExists($DataDir & "title_" & GUICtrlRead($NandLangBox) & ".ini.") <> 0 Then
Local $hFile = FileOpen($DataDir & "title_" & GUICtrlRead($NandLangBox) & ".ini.", 0)
If $hFile <> -1 Then
While True
$searchItem = FileReadLine($hFile)
If @[member='Error 917']Then ExitLoop
If StringInStr($searchItem, "=") Then
Local $ID_To_search = StringSplit($searchItem, "=", 0)
If StringInStr($ID_To_search[1], $FileListNandGameID[$iSet][1]) Then
If StringLeft($ID_To_search[2], 1) = " " Then $ID_To_search[2] = StringTrimLeft($ID_To_search[2], 1)
If StringRight($ID_To_search[1], 1) = " " Then $ID_To_search[1] = StringTrimRight($ID_To_search[1], 1)
$FileListNandGameID[$iSet][2] = $ID_To_search[2]
$FileListNandGameID[$iSet][1] = $ID_To_search[1]
ConsoleWrite($ID_To_search[2] & @CR)
EndIf
EndIf
WEnd
EndIf
FileClose($hFile)
EndIf
$item_count = _GUICtrlListView_GetItemCount($NandListView)
_GUICtrlListView_AddItem($NandListView, $FileListNandGameID[$iSet][0], $item_count)
_GUICtrlListView_AddSubItem($NandListView, $item_count, $FileListNandGameID[$iSet][1], 1, 1)
_GUICtrlListView_AddSubItem($NandListView, $item_count, $FileListNandGameID[$iSet][2], 2, 1)
_GUICtrlListView_AddSubItem($NandListView, $item_count, $FileListNandGameID[$iSet][3], 3, 1)
_GUICtrlListView_AddSubItem($NandListView, $item_count, $FileListNandGameID[$iSet][4], 4, 1)
_GUICtrlListView_AddSubItem($NandListView, $item_count, $FileListNandGameID[$iSet][5], 5, 1)
_GUICtrlListView_AddSubItem($NandListView, $item_count, "" & $FileListNandGameID[$iSet][6], 10, 1)
Next
;_ArrayDisplay($FileListNandGameID, "Title Found")
GUICtrlSetData($NandState, (UBound($FileListNandGameID) - 1) & " Title successfully loaded")
Return 0
EndFunc   ;==>_LoadNand
Func _GetGameType($IDFound)
Local $SetGameType = ""
$GetGameType = StringLeft($IDFound, 1)
If $GetGameType = "W" Then
$SetGameType = "WiiWare"
ElseIf $GetGameType = "N" Then
$SetGameType = "Nintendo64"
ElseIf $GetGameType = "J" Then
$SetGameType = "SNES"
ElseIf $GetGameType = "F" Then
$SetGameType = "NES"
ElseIf $GetGameType = "A" Then
$GetGameType_A = StringLeft($IDFound, 2)
If $GetGameType_A = "A6" Then
$SetGameType = "Arcade"
ElseIf $GetGameType_A = "A7" Then
$SetGameType = "Arcade-Namco"
Else
$SetGameType = "custom"
EndIf
ElseIf $GetGameType = "P" Then
$SetGameType = "TurboGrafx16"
ElseIf $GetGameType = "Q" Then
$SetGameType = "TurboGrafxCD"
ElseIf $GetGameType = "C" Then
$SetGameType = "Commodore"
ElseIf $GetGameType = "E" Then ;EA
$SetGameType = "NeoGeo"
ElseIf $GetGameType = "M" Then
$SetGameType = "SegaMegaDrive"
ElseIf $GetGameType = "L" Then
$SetGameType = "SegaMasterSystem"
ElseIf $GetGameType = "R" Or $GetGameType = "S" Or $GetGameType = "A" Then
$SetGameType = "Wii"
ElseIf $GetGameType = "G" Or $GetGameType = "D" Then
$SetGameType = "GameCube"
ElseIf $GetGameType = "H" Then
$SetGameType = "General Channel"
ElseIf $GetGameType = "X" Then
$SetGameType = "WiiWare - Demos "
Else
$SetGameType = "custom"
EndIf
Return $SetGameType
EndFunc   ;==>_GetGameType
Func _GetRegion($IDFound)
Global $UserSearchRegion = "Unknow"
If StringRight(StringLeft($IDFound, 4), 1) = "A" Then
$UserSearchRegion = "All regions"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "D" Then
$UserSearchRegion = "German-speaking regions"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "E" Then
$UserSearchRegion = "USA"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "F" Then
$UserSearchRegion = "French-speaking regions"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "I" Then
$UserSearchRegion = "Italian-speaking regions"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "J" Then
$UserSearchRegion = "Japan"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "K" Then
$UserSearchRegion = "Korea"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "L" Then
$UserSearchRegion = "Japanese Import to Europe"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "M" Then
$UserSearchRegion = "American Import to Europe"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "N" Then
$UserSearchRegion = "Japanese Import to USA"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "P" Then
$UserSearchRegion = "Europe"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "S" Then
$UserSearchRegion = "Spanish-speaking regions"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "Q" Then
$UserSearchRegion = "Korea with Japanese language"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "T" Then
$UserSearchRegion = "Korea with English language"
ElseIf StringRight(StringLeft($IDFound, 4), 1) = "X" Then
$UserSearchRegion = "Not a real region code"
EndIf
Return $UserSearchRegion
EndFunc   ;==>_GetRegion

EDIT:
Please Report ;)
 

pdanpdan

Active Member
Newcomer
Joined
Dec 29, 2011
Messages
36
Trophies
0
XP
133
Country
Romania
Now this works without an error - the exe. No more crashes on loading NAND, and the list seems to be OK.
But please don't post the code inside the boart, as it messes up with the code (eg. @error is replaced with @[member='.....).
 

icw35

Well-Known Member
Member
Joined
Sep 22, 2010
Messages
542
Trophies
1
XP
706
Country
Just one word. Wow.

This and ModMii are awesome. I think this complements ModMii nicely.
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
Download SMA v1.3 http://www.mediafire.com/?5vidyenb4y9syeh
Please Report :) (except(Extract a game from the WBFS drive Bug))

Changelog:

Fixed:
Part "Update" edited completely.. (Base ModMii by XFlak)
Crashes on loading NAND
BackUp ProgressBar
..

Added:
3D View
Trailers Play
..

smav131.png

smav132.png

Failed (firm intention) :)

EDIT:
@coolness
Code:
 New Password. (Update Wii Part)
The following errors were found
The member coolness can not use the messaging system
This personal message has not been sent

EDIT2:
I'll post the password here if there are no bugs in Update-Wii Part ;)
 
  • Like
Reactions: 1 person

Snowmanne

Well-Known Member
Member
Joined
Jan 5, 2012
Messages
125
Trophies
0
Age
31
Location
Elgin, Illinois
Website
Snowmanne.DeviantArt.com
XP
184
Country
United States
  • The select drop menu from the nand tab doesn't appear after some use of the program.
  • Trailers play in a non-stop loop.
  • Found 3 misspelled words.
  • When I loaded my drive it showed WBFS 96%, after clicking refresh it changes to NTFS 90% which is my computers hard drive.
  • On the nand tab the last info is partially cut off.
    gallery_293924_902_50812.png
  • System menu 4.3U failed to be verified.
    gallery_293924_902_795.png
 

Kalidor

Well-Known Member
Newcomer
Joined
Mar 28, 2010
Messages
71
Trophies
0
Age
54
XP
198
Country
France
Hi everybody !

First a complete translation of this application , it's possible ? (I can translate this app for you)
With my Windows 7 64 sp1 , I launch this app with administrator's right , if not , nothing appears

I want download the 202 222 223 and 224 5.1 r
and .... crash
tmpc3c3.png




System.AccessViolationException: Tentative de lecture ou d'écriture de mémoire protégée. Cela indique souvent qu'une autre mémoire est endommagée.
à System.Windows.Forms.UnsafeNativeMethods.CallWindowProc(IntPtr wndProc, IntPtr hWnd, Int32 msg, IntPtr wParam, IntPtr lParam)
à System.Windows.Forms.NativeWindow.DefWndProc(Message& m)
à System.Windows.Forms.Control.WndProc(Message& m)
à System.Windows.Forms.RichTextBox.WndProc(Message& m)
à System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
à System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Assemblys chargés **************
mscorlib
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5448 (Win7SP1GDR.050727-5400)
CodeBase : file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
----------------------------------------
nusd
Version de l'assembly : 0.0.0.0
Version Win32 : 0.0.0.0
CodeBase : file:///C:/Users/Gilbert/AppData/Local/Temp/Tempfiles/nusd.exe
----------------------------------------
System.Windows.Forms
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5446 (Win7SP1GDR.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5447 (Win7SP1GDR.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Configuration
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
mscorlib.resources
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5448 (Win7SP1GDR.050727-5400)
CodeBase : file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
----------------------------------------
System.Windows.Forms.resources
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms.resources/2.0.0.0_fr_b77a5c561934e089/System.Windows.Forms.resources.dll
----------------------------------------

************** Débogage JIT **************
Pour activer le débogage juste-à-temps (JIT), le fichier de configuration pour cette
application ou cet ordinateur (machine.config) doit avoir la valeur
jitDebugging définie dans la section system.windows.forms.
L'application doit également être compilée avec le débogage
activé.

Par exemple :





Lorsque le débogage juste-à-temps est activé, les exceptions non gérées

that's all for the moment
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
First a complete translation of this application , it's possible ? (I can translate this app for you)

Yes :)
Settings = Gui Settings
About = About
...

With my Windows 7 64 sp1 , I launch this app with administrator's right , if not , nothing appears

I want download the 202 222 223 and 224 5.1 r
and .... crash
tmpc3c3.png




System.AccessViolationException: Tentative de lecture ou d'écriture de mémoire protégée. Cela indique souvent qu'une autre mémoire est endommagée.
à System.Windows.Forms.UnsafeNativeMethods.CallWindowProc(IntPtr wndProc, IntPtr hWnd, Int32 msg, IntPtr wParam, IntPtr lParam)
à System.Windows.Forms.NativeWindow.DefWndProc(Message& m)
à System.Windows.Forms.Control.WndProc(Message& m)
à System.Windows.Forms.RichTextBox.WndProc(Message& m)
à System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
à System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
It could just be that BigN servers are being overloaded or your Internet connection may be slow.
Just repeat your downloads and it will work ;)
(Next Release: it will just automatically restart the download (I'm going to fix some bugs))

************** Assemblys chargés **************
mscorlib
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5448 (Win7SP1GDR.050727-5400)
CodeBase : file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
----------------------------------------
nusd
Version de l'assembly : 0.0.0.0
Version Win32 : 0.0.0.0
CodeBase : file:///C:/Users/Gilbert/AppData/Local/Temp/Tempfiles/nusd.exe
----------------------------------------
System.Windows.Forms
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5446 (Win7SP1GDR.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5447 (Win7SP1GDR.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Drawing
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Configuration
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
----------------------------------------
System.Xml
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------
mscorlib.resources
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5448 (Win7SP1GDR.050727-5400)
CodeBase : file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
----------------------------------------
System.Windows.Forms.resources
Version de l'assembly : 2.0.0.0
Version Win32 : 2.0.50727.5420 (Win7SP1.050727-5400)
CodeBase : file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms.resources/2.0.0.0_fr_b77a5c561934e089/System.Windows.Forms.resources.dll
----------------------------------------

************** Débogage JIT **************
Pour activer le débogage juste-à-temps (JIT), le fichier de configuration pour cette
application ou cet ordinateur (machine.config) doit avoir la valeur
jitDebugging définie dans la section system.windows.forms.
L'application doit également être compilée avec le débogage
activé.

Par exemple :





Lorsque le débogage juste-à-temps est activé, les exceptions non gérées
You need: SMA 64-bit version

@[member='Snowmanne'], VashTS, Jiiwah and Kalidor thanks ;)
@[member='Nujui'], camochase and SickPuppy please report.. :)
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
SMA V1.4 http://www.mediafire.com/?9uv9bxd17c7t976
SMA V1.4 64Bit http://www.mediafire.com/?spimox51i2k7sme
Changelog

  • Fixed:
  • The select drop menu from the nand tab doesn't appear after some use of the program. Fixed
  • Found 3 misspelled words. Fixed
  • When I loaded my drive it showed WBFS 96%, after clicking refresh it changes to NTFS 90% which is my computers hard drive. Fixed
  • On the nand tab the last info is partially cut off. Fixed
  • System menu 4.3U failed to be verified. Fixed
  • AVG detects a threat Fixed
  • Settings and About Always On Top Fixed
  • Download games Infos Fixed


    Added:
  • Automatically restart the download (if BigN servers are being overloaded)
  • Games-Wiki Part
    - Region search
    - Update Games infos
  • BackUp Part
    - Covers progressbar
    - BackUp progressbar
    Updated:
  • Update-Wii Part
    - Password Removed
  • About Gui Updated
 
  • Like
Reactions: 1 person

Snowmanne

Well-Known Member
Member
Joined
Jan 5, 2012
Messages
125
Trophies
0
Age
31
Location
Elgin, Illinois
Website
Snowmanne.DeviantArt.com
XP
184
Country
United States
  • The program creates a folder in the root of the computers hard drive called "wiiflow".
  • In the Gui Settings windows, Gui Settings is misspelled as Gui Stettings.
  • Refresh is misspelled every where as Refrech.
  • When updating titles, fanart, trailers and downloading covers, IOS's above the progress bar it quickly flashes grey.
  • In the backup tab "Change Path" is disabled.
  • A small progress bar appears above the state info in the update wii tab.
  • When I refresh the HDD it shows "BackUp: -922372036854775709 %", not sure if that's normal.
  • On the flow window the > moves the covers the opposite ways.
  • A maximize button should be added.
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
  • The program creates a folder in the root of the computers hard drive called "wiiflow". Fixed
  • In the Gui Settings windows, Gui Settings is misspelled as Gui Stettings. Fixed
  • Refresh is misspelled every where as Refrech. Fixed
  • When updating titles, fanart, trailers and downloading covers, IOS's above the progress bar it quickly flashes grey. I can't see a thing. (Win XP)
  • In the backup tab "Change Path" is disabled. Replaced
    smamenubackup.png
  • A small progress bar appears above the state info in the update wii tab.Progressbar for cIOS/IOS creation
  • When I refresh the HDD it shows "BackUp: -922372036854775709 %", not sure if that's normal.Fixed
  • On the flow window the > moves the covers the opposite ways.Fixed
  • A maximize button should be added.later ;)

New:
Add Systemcheck
  • Update Wii to 4.1 (Yes/NO)
  • Update IOSs and/or cIOSs
    - cIOS222[38]-v5.1R or cIOS222[38]-v4
    - cIOS223[37]-v5.1R or cIOS223[37-38]-v4
  • Update Homebrew (WiiFlow|USB Loader GX|CFG USB Loader|WIIMC|priiloader)

EDIT:
What would it be like if I add a talk module (I think that's great!) :)
You can listen to any Manual instead of reading.
 

XFlak

Wiitired but still kicking
Member
Joined
Sep 12, 2009
Messages
13,847
Trophies
3
Age
38
Location
Cyprus, originally from Toronto
Website
modmii.github.io
XP
9,844
Country
Cyprus
I think it's a bad idea, I discovered a few months ago I'm actually able to do the same thing in ModMii but decided not to because it's a little tacky and I find computerized voices to be pretty annoying. If you decide to add it, I would suggest u make sure to add an option to disable it.
 
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    RedColoredStars @ RedColoredStars: Carotenemia causes skin to appear orange-ish in color. Orange Pi. Carotenemia Pussy. Get it. lolol +1