Hacking USB Loader GX

  • Thread starter cyrex
  • Start date
  • Views 7,197,261
  • Replies 29,370
  • Likes 48

M-A-F-I-A

Well-Known Member
Member
Joined
Nov 2, 2002
Messages
150
Trophies
0
Age
46
Location
Palermo
Website
forum.fobby.net
XP
267
Country
Italy
Stang said:
This loader is nice, thanks to all involved.

@MAFIA

Is it safe to assume that is a forwarding channel? I was just going to ask for one
tongue.gif

You can use the same forward of Ultimate iso loader or this forward.

@leobo the original wad is developed by nIxxx, i only inject the dol into the wad
wink.gif
 

Anubis

Well-Known Member
Member
Joined
Dec 5, 2005
Messages
455
Trophies
1
XP
735
Country
Portugal
BlindDude said:
yumms said:
Can someone please post the config.txt file...thanks.
Man,, if I see another one of these..... AHHHAHAHAHHHHHHHGGGG!

nothing personal yumms. But might I suggest that you people that want this config open up your "find" or "search text" in your browser and put in the little box "config" and then all you have to do is start clicking the previous page and then hit your little search button and if you dont find anything useful, click the next previous page and search again.... and again...

AND ENOUGH WITH THE QUOTING ALL THE DAYUM THEMES AND SCREENSHOTS... YOU CAN EDIT THE QUOTE.. PLEASE TAKE THE PICS/VIDEO OUT!!! a whole page with 3 or 4 quotes of god damned pics is bullshit!

Sorry for that all... Fucking shit!

EDIT) Actually,, you know what I do... I leave a browser open on this thread and when i come back to it, I start reading it from where I left off... Hell, its only 100 pages,, not too bad of a read. And if I want to close my browser, I have multiple tabs open in firefox so I save and close them...

Why don't you just give him your config? Because it sure would be easier and more helpful.
 

BlackEnigma

Well-Known Member
Member
Joined
Mar 1, 2009
Messages
344
Trophies
0
XP
211
Country
United States

BlindDude

Well-Known Member
Member
Joined
Dec 31, 2008
Messages
358
Trophies
0
XP
160
Country
United States
Anubis said:
Why don't you just give him your config? Because it sure would be easier and more helpful.

Because I DONT HAVE A CONFIG!

And I dont NEED ONE TILL ONE IS POSTED ON THE FIRST PAGE. This is NOT A RELEASE!!!!,,,
 

BlackEnigma

Well-Known Member
Member
Joined
Mar 1, 2009
Messages
344
Trophies
0
XP
211
Country
United States
I don't think it has anything to do with looking like a dick. More to do with looking like House who is super sarcastic. I wouldn't speak to House unless I absolutely had to because chances are he'll have something not so nice to say. But maybe you already knew that. I don't think there is a full config file. Going back several pages in this thread, many people are asking for one and one hasn't turned up.
 

Oops

Well-Known Member
Member
Joined
Jun 13, 2008
Messages
117
Trophies
0
XP
188
Country
France
LoPelut said:
Oops said:
NeoRame said:
QUOTE said:
And why disc don't work?

what do you mean?

Sorry,
DVD covers image don't work.

I followed the instructions
"resolution of 160x160 and must be placed in SDRoot:/images/disc/"

Taking a look on the code, simple ID is used to get the dvd image name. This means, rename each PNG from six chars to three chars. Eg:

Guitar Hero Metallica: long ID=SXBP52, simple ID=SXB. So, dvd image file name has to be SXB.png. If you experience problems with covers, you can do the same.

Hope this helps.

thanks, it's okay.

I had already read but not understand that.
now for DVD covers, simple ID is mandatory and long ID don't work .
covers work perfectly with long ID.

Thanks again.
 

BIG MOE

๔*๖ LORD BIG MOE ™
Member
Joined
Oct 19, 2008
Messages
1,253
Trophies
0
Location
Wiiland Hills
XP
69
Country
Syria
well I do agree with BlindDude , first of all please wait for final releases in the first page and ask about your problems once only and wait for one to answer , most of these compiled revisions are for beta testing only to improve bug fixing for the final releases so don't please expect it to be the way you think it should be !! , some functions might get disabled at some point so please don't fill up the thread with tons of posts about what happened to this function ?????? , and don't bug the authors with none sense specialties requests just cause it makes you feel better about something !!! , the themes have there own thread now so for themes related questions and pictures please post it there unless it's related to show the authors a certain discovered bug that was not mentioned before , as far as config files don't make a big deal out of it please cause these loaders comes with default settings when config is not present so you don't have to panic , however I'm going to clear one important matter that I've seen with all the past complains :
CODEimages_path=SD:/images/ÂÂÂÂÂÂÂÂÂÂÂÂÂÂ
 

ToneEQ

Well-Known Member
Member
Joined
Aug 14, 2007
Messages
231
Trophies
0
Location
South Wales
XP
215
Country
Really great work on this loader guys. I've tried a few over the last few days believe me! Took me several attempts at getting cIOS36_rev10 installed but did it.

I've deleted all the other loaders from HBC and set this one up to run from a Channel forwarder. Very clean looking, simple to use for the kids, and all the features I need. The boxart and animated discs spinning are fantastic additions and make it look professional.

Keep up the good work
yay.gif


Now, when can I find the conf...
biggrin.gif
just kidding!
 

joshed

Well-Known Member
Member
Joined
Jun 11, 2008
Messages
174
Trophies
0
Age
42
Location
PHXAZ
Website
www.scened.info
XP
248
Country
United States

dj_skual

Code & Mix
Member
Joined
Mar 9, 2008
Messages
1,014
Trophies
1
Website
sourceforge.net
XP
2,630
Country
France
LoPelut said:
Oops said:
NeoRame said:
QUOTE said:
And why disc don't work?

what do you mean?


Sorry,
DVD covers image don't work.

I followed the instructions
"resolution of 160x160 and must be placed in SDRoot:/images/disc/"


Taking a look on the code, simple ID is used to get the dvd image name. This means, rename each PNG from six chars to three chars. Eg:

Guitar Hero Metallica: long ID=SXBP52, simple ID=SXB. So, dvd image file name has to be SXB.png. If you experience problems with covers, you can do the same.

Hope this helps.



or you can do that on menu.cpp in rev158:

delete:
CODE
-635ÂÂÂÂdiskCover = new GuiImageData(imgPath,nodisc_png);

add:
CODE
+635ÂÂÂÂdiskCover = new GuiImageData(imgPath, 0);
+636ÂÂÂÂif (!diskCover->GetImage()) //if could not load the short id image
+637ÂÂÂÂÂÂÂÂ{
+638ÂÂÂÂÂÂÂÂdelete diskCover;
+639ÂÂÂÂÂÂÂÂsnprintf(imgPath, sizeof(imgPath), "SD:/images/disc/%s.png", IDfull);
+640ÂÂÂÂÂÂÂÂdiskCover = new GuiImageData(imgPath, 0);
+641ÂÂÂÂÂÂÂÂif (!diskCover->GetImage())
+642ÂÂÂÂÂÂÂÂÂÂÂÂ{
+643ÂÂÂÂÂÂÂÂÂÂÂÂdiskCover = new GuiImageData(imgPath,nodisc_png);
+644ÂÂÂÂÂÂÂÂÂÂÂÂ}
+645ÂÂÂÂÂÂÂÂ}
+646

with this, the loader will load short ID, if no ShortID image found, search a fullID image and if not found, load the default disc image.
wink.gif
 

NeoRame

Well-Known Member
Member
Joined
Nov 6, 2008
Messages
439
Trophies
0
Location
Gemrany
Website
www.neorame.de
XP
335
Country
Gambia, The
joshed said:
NeoRame said:
NeoRame´s 3D Boxart - All in one Coverpack 1454 covers UPDATED 25. April 2009, 15:14:40

-i have changed all ntsc and ntsc-j (removed the euopean purple triangle)
-included all standart covers (pal, ntsc and ntsc-j) from http://www.theotherzone.com/wii/ downloaded 25. April 2009, 15:14:40

mirror: http://rapidshare.com/files/225731780/3D_C..._April_2009.rar

lol for what is this mirror? my link in the first post works well. so for what is it? ahhh you want jump on a train too for getting rapidshare points
tongue.gif
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    AncientBoi @ AncientBoi: :tpi::rofl2: +1