Hacking [OLD] Loadiine backup loader for WiiU 5.3.2 ONLY (NO 5.4 NO 5.5!)

VashTS

Beat it, son
Member
Joined
Mar 14, 2009
Messages
4,308
Trophies
1
Age
39
Location
Upstate NY
XP
3,773
Country
United States
so minecraft wii u is an interesting game - even with my SD card reader not being able to write to SD the game plays just fine. it doesn't even crash like most Wii U games when trying to save.

all other games I've tried crash to an error when trying to write to the SD.
 

marcus van basten

Member
Newcomer
Joined
Jan 23, 2016
Messages
19
Trophies
0
Age
69
XP
66
Country
Burkina Faso
New
Hi, im new with the WII U Brew. I have a console in FW 4.1.0
Im folowing the instructions in the begginers guide; so, i want to download the DefinitivePackage. But i'm Under an older Firmware.
It will work if i delete the Loadiine + Server (dimok's commit 9e2af86) and include this Loadiine from here?.

Otherwise: How do i mix that definitive Package (the one from the begginers guide) with Loadiine v3 for 4.1.0.

Aclaration: I want to host all the files myself in an android phone. Connect the wii U to internet is not and option for me
 
Last edited by marcus van basten,

Zeroy

Well-Known Member
Newcomer
Joined
Dec 30, 2015
Messages
82
Trophies
0
Age
36
XP
107
Country
Gambia, The
New
Hi, im new with the WII U Brew. I have a console in FW 4.1.0
Im folowing the instructions in the begginers guide; so, i want to download the DefinitivePackage. But i'm Under an older Firmware.
It will work if i delete the Loadiine + Server (dimok's commit 9e2af86) and include this Loadiine from here?.

Otherwise: How do i mix that definitive Package (the one from the begginers guide) with Loadiine v3 for 4.1.0.

Aclaration: I want to host all the files myself in an android phone. Connect the wii U to internet is not and option for me
Searching... we have 1 thread for 4.1 user or lock AT the First page.

Self hosting is the best one but you can take a internet site. i dont know which one but i know that someone has host all kexploits and all loadiine version on one site.

look at the thread for 4.1 some one posted it there.
 
Last edited by Zeroy,
  • Like
Reactions: marcus van basten

yahoo

G͝B͢A͜t͞em҉p̡ R̨e͢g̷ul̨aŗ
Member
Joined
Aug 4, 2014
Messages
345
Trophies
0
XP
522
Country
United States
no, you understood it wrong.
What I said previously (and you probably read) is that "the next version of loadiine will not require multiple version to work on different firmware" which means only one version of loadiine "can" work on all versions, but I didn't say that "it will" work out of the box.

Currently, you need a different URL to launch a different loadiine based on your WiiU version.
one loadiine 4 for 5.3.2, one loadiine 4 for 5.0, etc.
instead of having multiple compiled files and different URL, the compatibility "can be added" directly in the same sourcecode.

But, it will require the kernel and memory values of each WiiU version, which we don't have, so the next loadiine will not work on all WiiU (unless we get these memory addresses before release)


Also, Like I already said, release of IOSU is not magic. it will not make everything work "out of the box" either.
we don't know what it allows, how it works. it will require time to add new code, new function, etc.

edit :
and we have enough of released date speculation posts all over the forum, please don't add more here ;)

MrRean seems to know the addresses for 5.5:
https://gbatemp.net/posts/5925130/
 

jammybudga777

Well-Known Member
Member
Joined
Aug 23, 2013
Messages
2,284
Trophies
1
Age
37
XP
2,193
Country
I remember a while back it was mentioned we could pre-pair for the new gui release by collecting something called gameid6 for games? I'm just looking at setting mine up now but can't find the post about it
 

Cyan

GBATemp's lurking knight
Former Staff
Joined
Oct 27, 2002
Messages
23,749
Trophies
4
Age
46
Location
Engine room, learning
XP
15,662
Country
France
first post ?
I added the needed info there.

Another method is to run a .bat file (this is from Nighty) using the existing xml files.
Code:
@echo off
setlocal

echo Loadiine GX2 directory renamer by n1ghty
echo.
echo Just put this into your game dir and execute it :)
echo.

set /a count=0

for /D %%a in (*) do (
  set "dirname=%%a"
  echo Found directory "%%a"

  set "xml=%%a\meta\meta.xml"
  if exist "%%a\meta\meta.xml" (
    call :getgameid 
    call :renamedir
  ) else (
    echo meta\meta.xml does not exist =(
    echo Renaming not possible!
  )
  echo.
)

echo Renamed %count% directories!
pause
exit

:getgameid
  for /f "delims=-< tokens=4" %%b in ('findstr "product_code" "%xml%"') do set product=%%b
  for /f "delims=>< tokens=3" %%c in ('findstr "company_code" "%xml%"') do set company=%%c
  set gameid=%product%%company:~-2%
  exit /B 0

:renamedir
  if "%dirname:~-8%" == "[%gameid%]" (
    echo Directory name is already correct!
  ) else (
    echo Renaming directory to "%dirname% [%gameid%]"
    ren "%dirname%" "%dirname% [%gameid%]"
    set /a count=count+1
  )
  exit /B 0

if you don't have the xml files, you can search on gametdb to get the gameID.

then rename your folder like this :
game's title [ID6]
SD:\wiiu\games\Yoshi's Woolly World [AYCP01]\
 

jammybudga777

Well-Known Member
Member
Joined
Aug 23, 2013
Messages
2,284
Trophies
1
Age
37
XP
2,193
Country
first post ?
I added the needed info there.

Another method is to run a .bat file (this is from Nighty) using the existing xml files.
Code:
@echo off
setlocal

echo Loadiine GX2 directory renamer by n1ghty
echo.
echo Just put this into your game dir and execute it :)
echo.

set /a count=0

for /D %%a in (*) do (
  set "dirname=%%a"
  echo Found directory "%%a"

  set "xml=%%a\meta\meta.xml"
  if exist "%%a\meta\meta.xml" (
    call :getgameid
    call :renamedir
  ) else (
    echo meta\meta.xml does not exist =(
    echo Renaming not possible!
  )
  echo.
)

echo Renamed %count% directories!
pause
exit

:getgameid
  for /f "delims=-< tokens=4" %%b in ('findstr "product_code" "%xml%"') do set product=%%b
  for /f "delims=>< tokens=3" %%c in ('findstr "company_code" "%xml%"') do set company=%%c
  set gameid=%product%%company:~-2%
  exit /B 0

:renamedir
  if "%dirname:~-8%" == "[%gameid%]" (
    echo Directory name is already correct!
  ) else (
    echo Renaming directory to "%dirname% [%gameid%]"
    ren "%dirname%" "%dirname% [%gameid%]"
    set /a count=count+1
  )
  exit /B 0

if you don't have the xml files, you can search on gametdb to get the gameID.

then rename your folder like this :
game's title [ID6]
SD:\wiiu\games\Yoshi's Woolly World [AYCP01]\
thanks for explaining sorry i didnt realise the first post must have been updated
 

Ricj

Active Member
Newcomer
Joined
Feb 14, 2009
Messages
37
Trophies
0
XP
216
Country
United States
Hi there!

Just out of sheer curiosity, i would like to understand it more, what's the current barrier for Loadiine to work with Firmware up to 5.5.1 ? Is it just a ''working on it'' scenario or something channel and a new barrier appeared?
 

Garou

Well-Known Member
Member
Joined
Jan 13, 2015
Messages
1,213
Trophies
0
XP
1,667
Country
you guys accept feature requests?
what do you think about multiple save profiles feature? so multiple people can have their own save data when playing with loadiine
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    K3Nv2 @ K3Nv2: I need shrooms to read his comments