WiiRd forum

USB Gecko Related => Gecko OS & USB Gecko => Topic started by: ssbbdude57 on December 01, 2008, 09:52:43 PM

Title: I need help with USB Gecko
Post by: ssbbdude57 on December 01, 2008, 09:52:43 PM
I need help with USb Gecko 2 things:

1) What does it do BUT make/port codes (dose it do anything else)?
2) Where can I order 1 for the United Kingdom because I wanna start making/porting codes please help me  :-[
Title: Re: I need help with USB Gecko
Post by: Romaap on December 01, 2008, 10:03:46 PM
(http://l0nk.org/geckoos.png)

http://usbgecko.com/order.htm (http://usbgecko.com/order.htm)
Title: Re: I need help with USB Gecko
Post by: ssbbdude57 on December 01, 2008, 10:17:28 PM
 JAPAN
http://www.majikarusyannhai.jp (http://www.majikarusyannhai.jp)
 
Taiwan
TV Game 360
 
SPAIN
http://www.adictron.com (http://www.adictron.com)
 
FRANCE
http://www.divineo.fr (http://www.divineo.fr)
 
Australia 
http://www.ozmodchips.com (http://www.ozmodchips.com)
http://www.quantronics.com.au (http://www.quantronics.com.au)
http://www.techsick.com (http://www.techsick.com)
 
Germany 
http://www.gamefreax.com (http://www.gamefreax.com)
http://www.Konsolenprofis.de (http://www.konsolenprofis.de)
 
USA / Canada
http://www.modchipcentral.com (http://www.modchipcentral.com)
http://www.modchip.ca (http://www.modchip.ca)
 
North America
http://www.gp2xstore.com (http://www.gp2xstore.com)


i dont see UK :(
Title: Re: I need help with USB Gecko
Post by: Romaap on December 01, 2008, 10:19:55 PM
try this one, I got mine from there (They ship to Europe too)

http://www.gp2xstore.com  (http://www.gp2xstore.com)
Title: Re: I need help with USB Gecko
Post by: ssbbdude57 on December 01, 2008, 10:20:50 PM
thnx :D
Title: Re: I need help with USB Gecko
Post by: Igglyboo on December 02, 2008, 12:16:44 AM
The usb gecko does not port codes.
That has to be done manually.
Title: Re: I need help with USB Gecko
Post by: Jassim on December 02, 2008, 03:13:27 PM
does porting a code mean you take a code from different region and somehow convert it to another region or is porting making a whole code from scratch using the idea of another code?

thx
Title: Re: I need help with USB Gecko
Post by: Romaap on December 02, 2008, 03:25:11 PM
it uses the difference in addresses.

example:
if 2 codes exist in a different region and one in your own, and the one code for your region is the same as one of the other region.
Other region codes:
Infinite Stuff:
04157453 0000FFFF
Infinite health
04158743 0000001F

Your region code
Infinite Stuff:
04157753 0000FFFF

You then subtract the addresses:
0x157753 - 0x157453 = 0x300 (0x means it is in hex!)

Then add the offset you just found to the other code:
0x158743 + 0x300 = 0x158A43

So the new code will be:
Infinite health
04158A43 0000001F

[spoiler]This are not real codes

This does not always work (like in ASM overwrites and ASM codes)[/spoiler]
Title: Re: I need help with USB Gecko
Post by: ssbbdude57 on December 02, 2008, 04:26:08 PM
so how do u do it manualy?