Hacking Need beta testers for my projects

Status
Not open for further replies.

guinness

Well-Known Member
Member
Joined
Nov 13, 2008
Messages
215
Trophies
0
Location
UK
XP
166
Country
I think its finally time for a public release.


Download (on weekend)

Damn, had me going then. Will just have to wait :)

Can't wait to try this out, and I agree with an earlier post, you and XFlak really should join forces to make the ultimate wii tool.
 
  • Like
Reactions: 1 person

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
http://www.mediafire.com/?u12bnqlbfv91r09

@:
- XFlak
- Jiiwah
- pdanpdan
- JoostinOnline
- SickPuppy
- Kalidor
- VashTS
- coolness
- Snowmanne
- Nujui
- camochase

you have PM

Break...
 

pdanpdan

Active Member
Newcomer
Joined
Dec 29, 2011
Messages
36
Trophies
0
XP
133
Country
Romania
  • After starting app, the first tab (nand) is empty(has no controls shown). Change to another tab and then back to nand tab and everything shows.
  • On my nand (maybe it's a strange one) I have the same problem when "Load Nand Dump" - I mean "Subscript used with non-Array variable" - the one after the check for "If @error 1" used instead of "If @error < 1" - so from this point I cannot check any more because of crash
  • Can the application be resizable (for the lists of games so that we can see larger columns)
  • Backup tab - download covers for USB Loader GX: full is always downloaded in covers folder in sma.exe folder instead of full in images on covers drive, front is downloaded in images on covers drive instead of "2d" subfolder of that drive and 3D is downloaded in the same folder, so that the images overwrite each other
  • Maybe it should only be one cover path configuration (drive+folder) and one loader configuration that's used for all tabs
  • When downloading covers, the counter on the bottom stops with 1 before the total count (so it shows 57/58 instead on 58/58)
  • As I am allowed to change tabs while downloading covers it would be nice the see the same progress bar on the bottom on all tabs
  • If I download trailers (eg. A Boy and His Blob) after the download it shows "Archive open error!" and then crashes with "Error: Subscript used with non-Array variable" (so I think it's the same 1 instead on
 

JoostinOnline

Certified Crash Test Dummy
Member
Joined
Apr 2, 2011
Messages
11,005
Trophies
1
Location
The Twilight Zone
Website
www.hacksden.com
XP
4,339
Country
United States
Well since I guess we are just posting them here, this is what I have:
  • The NAND tab is blank unless I choose another one, then go back to it.
  • The NAND and Cover folders can't be another name.
  • You can't download covers from checked boxes until you hit Select.
  • "Wii" is added to the end of the default search when looking for trailers, so it pulls up all games with Wii in the name.
  • The "Multi.rar" folder has to be extracted manually.
  • The "Hack Wii" page is blank and can't be fixed like the NAND page.
  • 222/223 use v5.1 by default, but that may be how you want it.
  • This isn't a bug, but the System Menu is in no way "firmware" than a channel or game is.
  • Either your icon is messed up, or it's just really hard to read. It also needs layers with dimensions starting with 512x512
 

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 nand tab it's blank at the start of the program.
  • There are files missing Multi.rar, Diffs.rar.
  • Downloaded rar files can't be extracted through the program.
  • When "Error: Subscript used with non-Array variable" appears the program closes.
  • When downloading front/3D/disc game covers the state show 0% and don't download.
  • Nand covers are downloaded to one path only.
  • If language is set to EN the game covers downloaded will always be from the PAL region.
  • The games wiki results aren't filtered to the set settings.
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
Good morning!
1st:
- Archive open error!
Put this http://www.mediafire.com/?f4g6r76tes1rg4f file into "Sma folder" and try again.

- On my nand (maybe it's a strange one) I have the same problem when "Load Nand Dump" - I mean "Subscript used with non-Array variable" - the one after the check for "If @[member='Error 917'] 1" used instead of "If @[member='Error 917']< 1" - so from this point I cannot check any more because of crash
Code:
#include 
#include 

Local $path = FileSelectFolder("Choose a folder. (Nand)", @DesktopDir, 1, "")
If @[member='Error 917'] 1 Then
If StringRegExpReplace($path, "^.*\\(.*)$", "$1") = "Nand" Then
Local $NandFolderState = 1
_loadNand()
Else
MsgBox(48, "Wrong folder!", "Navigate to 'Nand' folder (USB\nand)")
EndIf
Else
MsgBox(48, "Cancelled", "Navigate to 'Nand' folder (USB\nand)")
EndIf

Func _loadNand()
Global $FileListNand[1], $FileListNandGameID[1][3], $FileListNandGameALLID[1][2], $DownloadID[1]
If $NandFolderState = 1 Then
Local $NewNumber = 0
$FileListRead = _FileListToArray($path & "\title", "*", 2)
If @[member='Error 917'] 1 And IsArray($FileListRead) Then
ReDim $FileListNand[$FileListRead[0] + 1]

For $Nn = 1 To $FileListRead[0]
If StringLeft($FileListRead[$Nn], 4) = "0001" Then
$FileListNandGame = _FileListToArray($path & "\title\" & $FileListRead[$Nn], "*", 2)
If @[member='Error 917'] 1 Then
ReDim $FileListNandGameID[$FileListNandGame[0] + $NewNumber + 1][3]
$FileListNandGameID[0][0] = $NewNumber
For $GI = 1 To $FileListNandGame[0]
$FileListNandGameID[$GI + $NewNumber][0] = $FileListNandGame[$GI]
$FileListNandGameID[$GI + $NewNumber][1] = StringUpper(BinaryToString("0x" & $FileListNandGame[$GI]))
$FileListNandGameID[$GI + $NewNumber][2] = $FileListRead[$Nn]
Next
$NewNumber += $FileListNandGame[0]
$FileListNandGameID[0][0] = $NewNumber
EndIf
EndIf
Next
$iNumber = 0
If $FileListNandGameID[0][0] >= 1 Then
For $iFol = 1 To $FileListNandGameID[0][0]
;_searchNandID($FileListNandGameID[$iFol][2], $FileListNandGameID[$iFol][0], $FileListNandGameID[$iFol][1], $FileListNandGameID[0][0])
Next
EndIf
EndIf
EndIf
_ArrayDisplay($FileListNandGameID, "FileList")
If UBound($FileListNandGameID) - 1 = 0 Then MsgBox(48, "Error!", "No Array")
EndFunc   ;==>_loadNand
Download http://www.mediafire.com/?dk3ba85pfhvo1bl and test your nand (You should see an array)

Backup tab - download covers for USB Loader GX: full is always downloaded in covers folder in sma.exe folder instead of full in images on covers drive, front is downloaded in images on covers drive instead of "2d" subfolder of that drive and 3D is downloaded in the same folder, so that the images overwrite each other
Edit Multi app.ini
Code:
[Covers Path]
User Default Covers Path=\Covers
User Default Cache Path=\Covers\Cache
User Default Trailers Path=\Covers\Trailers
User Default Fanart Path=\Covers\Fanart
User Default Front=\Covers\front
User Default HQ=\Covers\HQ
User Default 3D=\Covers\3D
User Default Disc=\Covers\Disc

WiiFlow Covers Path=\Covers
WiiFlow Cache Path=\Covers\Cache
WiiFlow Trailers Path=\wiiflow\trailers
WiiFlow Fanart Path=\wiiflow\Fanart
WiiFlow Front=\wiiflow\covers
WiiFlow HQ=\wiiflow\boxcovers
WiiFlow 3D=\Covers\3D
WiiFlow Disc=\Covers\Disc

USB Loader GX Covers Path=\Covers
USB Loader GX Cache Path=\Covers\Cache
USB Loader GX Trailers Path=\Covers\trailers
USB Loader GX Fanart Path=\Covers\Fanart
USB Loader GX Front=\images
USB Loader GX HQ=\Covers\HQ
USB Loader GX 3D=\images
USB Loader GX Disc=\images\disc

CFG USB Loader Covers Path=\Covers
CFG USB Loader Cache Path=\Covers\Cache
CFG USB Loader Trailers Path=\Covers\trailers
CFG USB Loader Fanart Path=\Covers\Fanart
CFG USB Loader Front=\usb-loader\covers
CFG USB Loader HQ=\usb-loader\covers\full
CFG USB Loader 3D=\usb-loader\covers\3d
CFG USB Loader Disc=\usb-loader\covers\disc
 

pdanpdan

Active Member
Newcomer
Joined
Dec 29, 2011
Messages
36
Trophies
0
XP
133
Country
Romania
The exe crashes with same message.
I can't compile the source due to "@[member='Error 917'] 1" (badly formated variable or macro), but if I replace it by "@[member='error']
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
@[member='pdanpdan']
There we have it! :)

Replace
Code:
If @[member='Error 917'] 1 And IsArray($FileListRead) Then
with
Code:
If @[member='Error 917']= 1 Then
;Do Nothing
Else

EDIT:
  • The NAND tab is blank unless I choose another one, then go back to it. Fixed
  • "Wii" is added to the end of the default search when looking for trailers, so it pulls up all games with Wii in the name.Fixed
  • This isn't a bug, but the System Menu is in no way "firmware" than a channel or game is.Fixed

EDIIT 2:
Another Thing That Interests Me:
- Archive open error!

EDIT: 3
  • The nand tab it's blank at the start of the program.
  • There are files missing Multi.rar, Diffs.rar.
  • Downloaded rar files can't be extracted through the program.
  • When "Error: Subscript used with non-Array variable" appears the program closes.
  • When downloading front/3D/disc game covers the state show 0% and don't download.
  • Nand covers are downloaded to one path only.
  • If language is set to EN the game covers downloaded will always be from the PAL region.
  • The games wiki results aren't filtered to the set settings.

1: Fixed
2:
3: Dpwnload Unrar.dll put it into "Sma folder" and try again. (http://www.mediafire.com/?f4g6r76tes1rg4f)
4: I am awaiting pdanpdan answer.
5: Hit "Check downloads" Button then Download
6:
7: Change language to US (We must not forget "Preferred Region" settings)
8: What are you trying to say?
 

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
1: Fixed
2:
3: Dpwnload Unrar.dll put it into "Sma folder" and try again. (http://www.mediafire...f4g6r76tes1rg4f)
4: I am awaiting pdanpdan answer.
5: Hit "Check downloads" Button then Download
6:
7: Change language to US (We must not forget "Preferred Region" settings)
8: What are you trying to say?
I did hit "Check downloads" but one by one 0% shows on all of the games when i hit download, only full covers get downloaded. You should separate language from region. When I search for a game it shows all region versions of it and having it set to US I want it to show just the NTSC-U titles.

EDIT: On the usb loader options selecting:
User Default - all covers get downloaded
wiiflow - full/front don't get downloaded
usb loader gx - front/3D/disc don't get downloaded
cfg usb loader - full/front/3D/disc don't get downloaded
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
I did hit "Check downloads" but one by one 0% shows on all of the games when i hit download, only full covers get downloaded. You should separate language from region. When I search for a game it shows all region versions of it and having it set to US I want it to show just the NTSC-U titles.

EDIT: On the usb loader options selecting:
User Default - all covers get downloaded
wiiflow - full/front don't get downloaded
usb loader gx - front/3D/disc don't get downloaded
cfg usb loader - full/front/3D/disc don't get downloaded

Ok,
Hit Covers Combo (Backup part)
Choose your hdd and tray again ==> (Multi app.ini bug)

26365723.png


Please Report :)
 

spayrosam

Well-Known Member
OP
Member
Joined
Jun 2, 2009
Messages
756
Trophies
0
Location
Gafsa
Website
Visit site
XP
309
Country
ok, all the covers are being download right but when downloading covers above the progress bar it never shows the progress of the the last game, for me it shows "Game: 3/4" when the downloading is complete.

There we have it! :) Fixed

95843670.png

I'll fix it..

What about Fanart and trailers Downloads?
 

scooby74029

wanttabe dev
Member
Joined
May 7, 2010
Messages
1,359
Trophies
1
Age
48
Location
oklahoma, USA
Website
www.wiithemer.org
XP
1,368
Country
United States
i know i am not a tester but on the nand tab could you possibly make it so that the nand can be loaded from any location and not just from the usb device.

also this is really nice looking and well put together. i cant wait for a finished app.
 
  • Like
Reactions: 1 person
Status
Not open for further replies.

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • P @ PKNate:
    nope
  • BakerMan @ BakerMan:
    fun fact: 7 years by lukas graham, supermassive black hole by muse, and megalomania all have the same bpm
  • BakerMan @ BakerMan:
    girls just wanna have fun and renai circulation also share the same tempo as the few i said before
  • Xdqwerty @ Xdqwerty:
    @BakerMan, megalomania the live a live song?
  • BakerMan @ BakerMan:
    wait no, megalovania*
  • BakerMan @ BakerMan:
    my bad
  • K3Nv2 @ K3Nv2:
    I don't forgive you
  • BigOnYa @ BigOnYa:
    The nerve of that guy, gosh.
  • K3Nv2 @ K3Nv2:
    Yeah expecting me to forgive gtfo
  • Psionic Roshambo @ Psionic Roshambo:
    But how could the Dr have known you didn't want to be circumcized?
  • K3Nv2 @ K3Nv2:
    He didn't you just wanted your dick to be fondled
    +1
  • K3Nv2 @ K3Nv2:
    Watching dune 2 it's eh
  • Psionic Roshambo @ Psionic Roshambo:
    Dune one sucked
  • Psionic Roshambo @ Psionic Roshambo:
    The original with Patrick Stewart was Great
  • K3Nv2 @ K3Nv2:
    A sexual psycopath that love pain where have I heard that before
  • BigOnYa @ BigOnYa:
    In your high school diary?
  • K3Nv2 @ K3Nv2:
    No but your wife let's me read her diary the word psychopath comes up more than sexual
    +1
  • K3Nv2 @ K3Nv2:
    Lol stremio hogging all of my tvs on board ram
  • BigOnYa @ BigOnYa:
    Just download more Ram to it, or setup Raid666 on it.
    +1
  • SylverReZ @ SylverReZ:
    Morning
  • CooingMaxito @ CooingMaxito:
    Hello fellow stranger
  • K3Nv2 @ K3Nv2:
    What do you mean I've known you since today
    K3Nv2 @ K3Nv2: What do you mean I've known you since today