Hacking USB LOADER COVER IMAGES

djtaz

PM's Full - Wadder Me
OP
Member
Joined
Sep 21, 2008
Messages
2,997
Trophies
0
Age
51
Website
Visit site
XP
101
Country
Renaldo225 said:
djtaz your site is awesome!

I went to it thinking, "Hey, I guess it's nice that the files are listed there, but what would really be cool would be to have an option to click the ones you want, or select all of them, and just send them all to me. . ."

Then I got to your site. . . Then I felt dumb. . . That brings us to the present.

Nicely done!
Lol well im trying to design it around what people ask for - the only thing im really missing is alphabetical listing , but ill figure that out at some stage - i know its possible , just have to work out the logic and then the coding and ill have it done
biggrin.gif

Thanks for the support
biggrin.gif


Honestly though , without Kosaic doing the initial images and everyone else jumping in and naming them and adding as we go , thered be nothing at all on the site , so the real thanks should go to the lads who put their time and effort into the images and names - they are the real guys who deserve the thanks on here , i only made the structure.

I think someone is working on using the site to autodownload for their usb loader which is the initial reason i thought about it.
 

djtaz

PM's Full - Wadder Me
OP
Member
Joined
Sep 21, 2008
Messages
2,997
Trophies
0
Age
51
Website
Visit site
XP
101
Country
Thanks a million MrFaust - i saw the numbers in there jump alright - its great that people are all contributing to this - should have a full list for everyone in a few days
biggrin.gif


Again ill say it - You guys on here are great !
 

geedub

Well-Known Member
Member
Joined
Dec 3, 2008
Messages
396
Trophies
0
Age
50
Location
Scotland
XP
104
Country
needing another one lol

monster trux offroad
RTQPUG

cheers again

also ive noticed some of my game id's have an X instead of the usual P,E or J ! no big deal im just curious why the X ? anyone know
 

djtaz

PM's Full - Wadder Me
OP
Member
Joined
Sep 21, 2008
Messages
2,997
Trophies
0
Age
51
Website
Visit site
XP
101
Country
SpaceJump said:
Any chance for the Nodame Cantabile cover?


************************************
Anyone requesting new covers please supply ....

Game Name :
Nintendo Game ID :
Region:
*************************************


I have the image , just dont know the Game ID and all the images are uploaded based on ID
 

nindim

Well-Known Member
Member
Joined
Apr 10, 2009
Messages
116
Trophies
0
XP
49
Country
My PAL version of Trauma Center: New Blood has a different ID to the one listed, I assume this is because it is based off of the NTSC ID and the "E" is changed to a "P"? I think it should be:

Game Name : Trauma Center: New Blood
Nintendo Game ID : RK2P01
Region: PAL

Edit: Looks like Mushroom Men: The Spore Wars is wrong as well

Game Name : Mushroom Men: The Spore Wars
Nintendo Game ID : RM9PGM
Region: PAL

The site is great, it's nice to see the culmination of Kosaic's work in a maintainable and editable place. Easy to access as well!
 

djtaz

PM's Full - Wadder Me
OP
Member
Joined
Sep 21, 2008
Messages
2,997
Trophies
0
Age
51
Website
Visit site
XP
101
Country
Did you upload yours ?
I can see Trauma Center: New Blood Pal RK2P01 in there now - u can search for it by searching for "Center"
 

nindim

Well-Known Member
Member
Joined
Apr 10, 2009
Messages
116
Trophies
0
XP
49
Country
I didn't realise I was supposed to add duplicates, is it possible for a game to have multiple IDs? If not, I figured it would be better to tell you so the existing entry could be edited.

If you prefer to have us add new entries, maybe you could add something so users can flag erroneous entries? Would be open to abuse though
frown.gif
 

Wiisel

Well-Known Member
Member
Joined
Dec 4, 2008
Messages
1,309
Trophies
0
Website
Visit site
XP
333
Country
in the pal section RNXPDA has the wrong name and cover it should be Naruto - Clash Of Ninja Revolution but has the cover and title of Naruto - Clash Of Ninja 2
heres the correct cover

RNXPDA.png



the same issue is in the ntsc section i can only hazard a guess that its RNXEDA that is the ntsc version tho
 

djtaz

PM's Full - Wadder Me
OP
Member
Joined
Sep 21, 2008
Messages
2,997
Trophies
0
Age
51
Website
Visit site
XP
101
Country
nindim said:
I didn't realise I was supposed to add duplicates, is it possible for a game to have multiple IDs? If not, I figured it would be better to tell you so the existing entry could be edited.

If you prefer to have us add new entries, maybe you could add something so users can flag erroneous entries? Would be open to abuse though
frown.gif

I think some games may have a few different codes possibly for different versions or regions - im not 100% sure to be honest , but we are really going on the game codes moreso than the game names so if one is missing please by all means upload it
biggrin.gif
 

giantpune

Well-Known Member
Member
Joined
Apr 10, 2009
Messages
2,860
Trophies
0
XP
213
Country
United States
I just added the following ...

Game Name : Trivial Pursuit
Nintendo Game ID : RYQP69
Region: Pal

Can somebody verify that this is the right box for the pal version? I don't want to go down as the guy that broke everybody's USB loader with a bad picture. Also, if it is correct, it can be copied to NTSC as well.



EDIT... Reason, I'm an idiot.
 

dck

Member
Newcomer
Joined
Apr 10, 2009
Messages
14
Trophies
0
XP
59
Country
United States
I successfully got 173 NTSC-J covers from www.nintendo.co.jp using this python program:

----
CODE#!/usr/bin/python

import re
import sys
import urllib2

def main () :

# get the list of NTSC-J games from www.usbgecko.com
url = 'http://www.usbgecko.com/codes/index.php?r=j&l=all'
url_file = urllib2.urlopen (url)
data = url_file.read ()
url_file.close()

for match in re.finditer (r'(\[)([0-9A-Z]+)(\])', data) :
code = match.group(2)
# www.nintendo.co.jp uses only the first 4 letters in code to
# distinguish different games.
key = code[:4].lower()
url = 'http://www.nintendo.co.jp/wii/software/%s/img/package.jpg' % key
url_file = urllib2.urlopen (url)
data = url_file.read ()
url_file.close()
if data[:6].upper() != '' :
filename = '%s.jpg' % code
print filename
jpg_file = open (filename, 'w')
jpg_file.write (data)
jpg_file.close ()

return 0

if __name__ == "__main__" :
sys.exit(main())


The JPEGs are not or the right size. If you have a Mac, you can do batch resizing.

CODE#!/bin/sh

for jpg in $(ls *.jpg); do
code=`basename $jpg .jpg`
png=$code.png
echo $png
sips --resampleHeightWidth 225 160 -s format png $jpg --out $png
done


I would like to upload all PNGs as a zip file. Does you web-site take a zip?
 

djtaz

PM's Full - Wadder Me
OP
Member
Joined
Sep 21, 2008
Messages
2,997
Trophies
0
Age
51
Website
Visit site
XP
101
Country
No It doesnt at the moment - do the have the correct codes ?
If you upload somewhere i can add them using FTP if you want
 

dck

Member
Newcomer
Joined
Apr 10, 2009
Messages
14
Trophies
0
XP
59
Country
United States
djtaz said:
No It doesnt at the moment - do the have the correct codes ?
If you upload somewhere i can add them using FTP if you want

I have not checked all 173 but I randomly checked 10+ games and all code matched the list on www.usbgecko.com. It is not convenient for me to upload the files now. I'll do that at night when I am at home.
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • BigOnYa @ BigOnYa:
    Hey Kennyboy, have you found any decent mini Pc for around $200-250? Fast enough to play most Pc games.
  • K3Nv2 @ K3Nv2:
    I'd say save another $100 anythtwith 8core upgradeable ram I'm thinking about ordering the acemagic still
    +1
  • BigOnYa @ BigOnYa:
    Damn, I haven't turn on my OG Xbox one in ages, just did now and ofcourse, 32GB update required, gonna take forever.
  • BigOnYa @ BigOnYa:
    Edit: nevermind, I forgot I up-ed my internet speed, only 30 min remaining.
  • BigOnYa @ BigOnYa:
    Will a mobo with a M2ssd slot work without a M2ssd installed, using a sata ssd temporary?
  • K3Nv2 @ K3Nv2:
    As long as sata just point bios to boot to it as main drive
    +1
  • SylverReZ @ SylverReZ:
    @K3Nv2, Is that a compilation of you?
  • K3Nv2 @ K3Nv2:
    M.2 is more of a luxury you can still boot from Ide if you really wanted to
    +1
  • K3Nv2 @ K3Nv2:
    I mean as long as the motherboard still has sata ports unless you're still in celeron days
  • Xdqwerty @ Xdqwerty:
    wut
  • BigOnYa @ BigOnYa:
    Nuh it has Sata 3
  • K3Nv2 @ K3Nv2:
    It should still have a Bootable option in bios select drive
    +1
  • Xdqwerty @ Xdqwerty:
    whats sata?
  • K3Nv2 @ K3Nv2:
    How you were born
  • BigOnYa @ BigOnYa:
    Sata is the type of interface/cable connection of hard drives/disc drives for Pc.
    +1
  • K3Nv2 @ K3Nv2:
    Don't tell them about old bank drives may explode
  • BigOnYa @ BigOnYa:
    Mini pcs in the 70's
  • K3Nv2 @ K3Nv2:
    128kbs of storage
    +1
  • K3Nv2 @ K3Nv2:
    How do I connect this to my emachine
  • K3Nv2 @ K3Nv2:
    The Tattooist of Auschwitz is pretty good so far
    K3Nv2 @ K3Nv2: The Tattooist of Auschwitz is pretty good so far