Hacking Configurable USB Loader

  • Thread starter Thread starter oggzee
  • Start date Start date
  • Views Views 7,865,811
  • Replies Replies 18,482
  • Likes Likes 22
nikeymikey said:
alaeddine said:
nikeymikey said:
alaeddine said:
Ok it opened the .txt, i selected the codes and it said gct generated.
BUT when i boot the game after that it doesn't work !!
Should I do some special commands in game?
I'm trying to do this with RBSJ08 : Sengoku BASARA 2 Heroes


Have you enabled ocarina in the game options menu??
Yes of course I did, but nothing :S


You need to try the different hooktypes and find the correct one, if any, that this game needs.
Ok I see! And if that doesn't work ? ( i'm going to try anyways)
 
nickeymickey, it didn't work, I tried all hooks they don't work for Sengoku Basara 2 Heroes.
when i did No Hooks, it didn't want to boot ( black screen ) .

Cmon, dont tell me that nobody has got Sengoku Basara 2 to give a try ? :'(
 
Dr. Clipper said:
chaseincats said:
hey guys, quick question, I cant seem to find it in the configurator but when in any of the gui modes besides the list in the bottom right of the screen theirs a page count thing saying in my case

page 1/3 2/3 3/3 etc

how do i get rid of this?

ack, thanks tho
frown.gif
 
latest wiitdb.zip is causing a code dump.
dunno if theres an error in it or a parsing error in cfg.

Just though id let you know.

Reverted back to "wiitdb_old.zip" and it worked again!
 
So to insatll rev 19 what would my base cios be?
I used a method from like 8 months ago..

Run tracha bug restorer , press b , no ios reload , downgrade ios15
Run tracha bug restorer ,choose ios 15 ,press a , choose ios 36 , etc..
Run tracha bug restorer,restore 15
any title deleter
deleted 222,223,249,250
run custom ios38 insatller /wad
cios 222/223 installer ver 4 , 249 for install custom ,202 /38 with 60
cios 222/223 installer ver 4 , 249 for custom insatll ,222 / 38
cios 222/223 installer ver 4 , 249 for install custom ,223/ 38 with 37
wad manager ios 70 -64-v6887

So to insatll rev 19 what would my base cios be? Thanks Bud

Edit: to install Cios 249 ver 19 the custom cios installer 2.3 asks what is my
base IOS ver - is it 70-6887?
 
A rule of thumb: don't use outdated tutorials. ESPECIALLY if the version you're using is newer than the version described in the tutorial.


That aside: short answer: 57 has best loading times...37 if you plan to use music games. And if you don't want to choose, or if you want to use triiforce: stick to rev17 (last version with a single base).

Long answer: check out this thread.
 
Hi when i start the cfg usb loader i choose the hdd and then it says OK ¡ and then the wii disk started to flash.
my hdd is a samsung s2 portable 320gb FAT32 and my wii is 4.0 ntsc cIOS rev 19 i have tried everything.

help plz (sorry my english is bad
tongue.gif
)
 
maybe this feature request has been posted already:

it would be a extremely nice feature if you could directly install a game from iso to usbloader via wifi :-)
 
niemand0815 said:
maybe this feature request has been posted already:

it would be a extremely nice feature if you could directly install a game from iso to usbloader via wifi :-)
Will. Never. Happen.

WiFi is god awfully slow. I think the upload speed when I transfer files via FTP to my mom's site is faster than the speed from a PC to my Wii, which is 15 feet away.
 
harmor said:
niemand0815 said:
maybe this feature request has been posted already:

it would be a extremely nice feature if you could directly install a game from iso to usbloader via wifi :-)
Will. Never. Happen.

WiFi is god awfully slow. I think the upload speed when I transfer files via FTP to my mom's site is faster than the speed from a PC to my Wii, which is 15 feet away.

why is the wifi so slow?
i think the wii has a normal IEEE 802.11b/g WLAN?
 
No it doesn't. Even on linux where the transfer speeds are generally higher than homebrew that uses IOS, it's still ultra slow, i think ~1 MBit/s.
 
Wever said:
A rule of thumb: don't use outdated tutorials. ESPECIALLY if the version you're using is newer than the version described in the tutorial.


That aside: short answer: 57 has best loading times...37 if you plan to use music games. And if you don't want to choose, or if you want to use triiforce: stick to rev17 (last version with a single base).

Long answer: check out this thread.


You did'nt read my post correctly ...still need an answer please.. Bud
 
I made a script in MacOS X that when i put an .iso in a folder, automatic is converted to a .wbfs in another folder (the folder can set or can ask me everytime to chose it, see the script)

this script should stay in "/Library/Scripts/Folder Action Scripts/"

just copy these lines and save the script (.scpt) in the path and them go to the folder you like, right click, select folder actions, and select the action reference to the scpt you saved.
feel free to distribuite for everyone.
only requeriments is to place wbfs_file version 2.6 o 2.7 to /usr/local/bin


this is the script:
---------------------

CODEon adding folder items to this_folder after receiving added_items
try
tell application "Finder"
--get the name of the folder
set the folder_name to the name of this_folder
try
repeat with i from 1 to number of items in added_items
set new_item to item i of added_items
set the item_path to the quoted form of the POSIX path of new_item
set theDestinationFolder to choose folder with prompt "Select the destination folder WBFS:"
#set theDEST to "/Users/userN/wii_games/wbfs/"
#
#display dialog "destino: " & quoted form of the POSIX path of theDEST
#set the DEST to the quoted form of the POSIX path of theDEST
set the DEST to the quoted form of the POSIX path of theDestinationFolder
set convert to " convert "
set id_title to " id_title "
set cut to " | cut -d _ -f2"
set cut_id to " | cut -d _ -f1"
set titulo to (do shell script "/usr/local/bin/wbfs_file " & item_path & id_title & cut)
set gameid to (do shell script "/usr/local/bin/wbfs_file " & item_path & id_title & cut_id)
display dialog "Do you want to convert to WBFS the game: " & titulo & " to the destination ? : " & DEST
tell application "Finder" to say "Starting convertion."
set salida to (do shell script ("/usr/local/bin/wbfs_file -4 -d -x 1 " & item_path & convert & DEST))
#display dialog salida buttons {"Listo"} with title titulo default button "Listo"
display dialog gameid & " = " & titulo & " convertion done!!! " buttons {"OK"} default button "OK"
tell application "Finder" to say titulo & "; was converted"
end repeat
end try

end tell
end try
end adding folder items to
 

Site & Scene News

Popular threads in this forum