I need help with USB Gecko

Started by ssbbdude57, December 01, 2008, 09:52:43 PM

Previous topic - Next topic

ssbbdude57

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  :-[

Romaap



Romaap

try this one, I got mine from there (They ship to Europe too)

http://www.gp2xstore.com


Igglyboo

The usb gecko does not port codes.
That has to be done manually.

Jassim

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

do NOT pm me to request a code or if you have any problems with my code.
[spoiler]http://cristgaming.com/pirate.swf[/spoiler]



Romaap

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]

ssbbdude57