Emuforums.com

Go Back   Emuforums.com > Handheld Emulation > No$GBA Discussion
Home Register Downloads FAQ Members List Calendar Arcade Mark Forums Read

WON'T YOU JOIN US?
You are not a registered member and
are viewing this site as a guest.
Registration is simple and FREE.
Join this CrowdGather community today.
Registration offers the following perks:

» Less advertising throughout
» Post and participate in discussions
» Network with other forum members
» Free private messaging

join

Reply
 
LinkBack Thread Tools Display Modes
Old June 1st, 2007   #61 (permalink)
[Bow Master] Dark Guide
 
Dark_Force9999's Avatar
 
Join Date: Feb 2007
Location: Netherworld
Posts: 107
Quote:
example, this ARDS code

02111aac ffffffff
02111ab0 ffffffff
02111ab4 ffffffff
02111ab8 ffffffff
02111abc ffffffff

since codebreaker slide code doesn't support 32bit write (ARv3 support but you have to convert, there is no use for that)

what you can do is split, FFFFFFFF = FFFF*2 > FFFFFFF*5 = FFFF*10

42111AAC FFFF
0000000A 0002

but that i let for who knows.
Then isn't XXXX is 5, and IIII suppose 0004?
__________________
Computer Spec
Intel(R) Core(TM)2 Duo CPU E6850
3.00 GHz. (Not Overclocked)
2.00GB Ram
BFG Nvidia Geforce 8800 GTS OC2 Graphic Card (640 MB)
FOR THE DARK WORLD!
Dark_Force9999 is offline   Reply With Quote

Advertisement [Remove Advertisement]
Old June 1st, 2007   #62 (permalink)
THE Hentai M@ster
 
Hiei-YYH's Avatar
 
Join Date: Aug 2005
Location: MAKAI
Posts: 1,634
Quote:
Originally Posted by Dark_Force9999 View Post
Then isn't XXXX is 5, and IIII suppose 0004?
is 2 because is 16bit, if 32bit 4.


XXXXYYYY < 4

XXXX < 2
YYYY < 2

like i explained > since codebreaker slide code doesn't support 32bit write (ARv3 support but you have to convert, there is no use for that)
__________________

My NEW Site
BEST anime ever!!
PSN(US): Hiei-YYH
PSN(Japan): JHiei-YYH

PSP Model: PSP1001 / CFW 5.50 GEN-D3 / Sony 16GB MS Pro Duo
Hiei-YYH is offline   Reply With Quote
Old June 1st, 2007   #63 (permalink)
[Bow Master] Dark Guide
 
Dark_Force9999's Avatar
 
Join Date: Feb 2007
Location: Netherworld
Posts: 107
I see! Thanks alot.
__________________
Computer Spec
Intel(R) Core(TM)2 Duo CPU E6850
3.00 GHz. (Not Overclocked)
2.00GB Ram
BFG Nvidia Geforce 8800 GTS OC2 Graphic Card (640 MB)
FOR THE DARK WORLD!
Dark_Force9999 is offline   Reply With Quote
Old June 2nd, 2007   #64 (permalink)
Registered User
 
Join Date: Apr 2007
Location: NY
Posts: 14
Hey Hiei-YYH you wanna try to convert this slide code?

All Cards 4 each
0211059c 44444440
d5000000 44444444
c0000000 000000cd
d6000000 021105a0
d2000000 00000000
021108d8 04444444
marik1234 is offline   Reply With Quote
Old June 2nd, 2007   #65 (permalink)
Registered User
 
Christ=Light's Avatar
 
Join Date: Jun 2007
Location: Australia
Posts: 9
hey Hiei-YYH the digimon codes dont work for me is there something wrong with my version of no$gba
Christ=Light is offline   Reply With Quote
Old June 2nd, 2007   #66 (permalink)
[Bow Master] Dark Guide
 
Dark_Force9999's Avatar
 
Join Date: Feb 2007
Location: Netherworld
Posts: 107
christ, what is ur rom version...? E/U/J or what? Most likely you aren't using U

Quote:
0211059c 44444440
d5000000 44444444
c0000000 000000cd
d6000000 021105a0
d2000000 00000000
021108d8 04444444
I would love to know how these slide code get converted XD
__________________
Computer Spec
Intel(R) Core(TM)2 Duo CPU E6850
3.00 GHz. (Not Overclocked)
2.00GB Ram
BFG Nvidia Geforce 8800 GTS OC2 Graphic Card (640 MB)
FOR THE DARK WORLD!
Dark_Force9999 is offline   Reply With Quote
Old June 2nd, 2007   #67 (permalink)
THE Hentai M@ster
 
Hiei-YYH's Avatar
 
Join Date: Aug 2005
Location: MAKAI
Posts: 1,634
Quote:
Originally Posted by marik1234 View Post
Hey Hiei-YYH you wanna try to convert this slide code?

All Cards 4 each
0211059c 44444440
d5000000 44444444
c0000000 000000cd
d6000000 021105a0
d2000000 00000000
021108d8 04444444
Please, test this.

8211059c 4440
8211059E 4444
421195A0 4444
00000004 0066
421195A2 4444
00000004 0066
821108D8 4444
821108DA 0444




============================

0211059C 44444440 :
Type 0 : 32 bits write (str)
writes word 0x44444440 to [0211059C+offset])

D5000000 44444444 :
Type D5 : sets the data register used by D6~D8 to the value of the code.
D5000000 XXXXXXXX : sets the 'Dx data' to XXXXXXXX
In This Case : sets the 'Dx data' to 0x44444444

C0000000 000000CD :
Type C : defines the start of the loop code
C0000000 YYYYYYYY : set the 'Dx repeat value' to YYYYYYYY, saves the 'Dx next
code to be executed' and the 'Dx execution status'. Repeat will be executed when
a D1/D2 code is encountered. When repeat is executed, the AR reloads the 'next
code to be executed' and the 'execution status' from the Dx registers
In This Case : Dx repeat value = 0x000000CD

D6000000 021105A0 :
Type D6 : 32-bits incremental write of the data register (str).
D6000000 XXXXXXXX : writes the 'Dx data' word to [XXXXXXXX+offset], and
increments the offset by 4
In This Case : writes the 'Dx data' word to [021105A0+offset], and increments the offset by 4

D2000000 00000000 :
Type D2 : Used to apply the code type C setting (executes the code(s) after the
type C code n times, n being the Dx repeat value).
Also acts as a 'Full terminator' (clears all temporary data, ie. execution
status, offsets, code C settings...).
D2000000 00000000 : if the 'Dx repeat value', set by code type C, is different
than 0, it is decremented and then the AR loads the 'Dx next code to be executed'
and the 'execution status' (=jumps back to the code following the type C code).
When the repeat value is 0, this code will clear the code status, the offset
value, and the Dx data value (which can be set by codes DA, DB and DC).

021108D8 04444444 :
Type 0 : 32 bits write (str)
writes word 0x04444444 to [021108D8+offset])
__________________

My NEW Site
BEST anime ever!!
PSN(US): Hiei-YYH
PSN(Japan): JHiei-YYH

PSP Model: PSP1001 / CFW 5.50 GEN-D3 / Sony 16GB MS Pro Duo
Hiei-YYH is offline   Reply With Quote
Old June 3rd, 2007   #68 (permalink)
Registered User
 
Join Date: Apr 2007
Location: NY
Posts: 14
Didn't work.

It gave me like 70 out of 4000+ cards lol

Last edited by marik1234; June 3rd, 2007 at 05:56.. Reason: Automerged Doublepost
marik1234 is offline   Reply With Quote
Old June 3rd, 2007   #69 (permalink)
THE Hentai M@ster
 
Hiei-YYH's Avatar
 
Join Date: Aug 2005
Location: MAKAI
Posts: 1,634
Quote:
Originally Posted by marik1234 View Post
Didn't work.

It gave me like 70 out of 4000+ cards lol
there is something wrong, even if i did a wrong loop counter, it shouldn't be that bit, no$gba sometimes have bugs. try entering each code in a different slot (press add code for each line except the 2 of slide code)

1
8211059c 4440

2
8211059E 4444

3
421195A0 4444
00000004 0066

4
421195A2 4444
00000004 0066

5
821108D8 4444

6
821108DA 0444
__________________

My NEW Site
BEST anime ever!!
PSN(US): Hiei-YYH
PSN(Japan): JHiei-YYH

PSP Model: PSP1001 / CFW 5.50 GEN-D3 / Sony 16GB MS Pro Duo
Hiei-YYH is offline   Reply With Quote
Old June 3rd, 2007   #70 (permalink)
Registered User
 
Join Date: Jun 2007
Location: Florida
Posts: 1
I've tried for hours to convert these Pokemon Pearl codes from ARDS to GSA... can anyone help?

Soothe Bell x999
94000130 fcff0000
B21c4d28 00000000
B0000004 00000000
00000890 03e700da
D2000000 00000000

Rare Candy x999
94000130 fcff0000
B21c4d28 00000000
B0000004 00000000
00000dac 03e70032
D2000000 00000000

Wild Pokemon Modifier
94000130 FDFF0000
B21C4D28 00000000
B0000004 00000000
94000130 FEFF0000
00000890 01ED0001
D0000000 00000000
DA000000 00000892
DC000000 00024620
C0000000 0000000B
D7000000 00000000
DC000000 00000006
D2000000 00000000

Max Cash:
94000130 fcff0000
B21c4d28 00000000
B0000004 00000000
000002e4 000f423f
D2000000 00000000

What letter/number do you put in front of a line that begins with "B"?
msdtdds is offline   Reply With Quote
Old June 4th, 2007   #71 (permalink)
THE Hentai M@ster
 
Hiei-YYH's Avatar
 
Join Date: Aug 2005
Location: MAKAI
Posts: 1,634
Quote:
Originally Posted by msdtdds View Post
I've tried for hours to convert these Pokemon Pearl codes from ARDS to GSA... can anyone help?

Soothe Bell x999
94000130 fcff0000
B21c4d28 00000000
B0000004 00000000
00000890 03e700da
D2000000 00000000

Rare Candy x999
94000130 fcff0000
B21c4d28 00000000
B0000004 00000000
00000dac 03e70032
D2000000 00000000

Wild Pokemon Modifier
94000130 FDFF0000
B21C4D28 00000000
B0000004 00000000
94000130 FEFF0000
00000890 01ED0001
D0000000 00000000
DA000000 00000892
DC000000 00024620
C0000000 0000000B
D7000000 00000000
DC000000 00000006
D2000000 00000000

Max Cash:
94000130 fcff0000
B21c4d28 00000000
B0000004 00000000
000002e4 000f423f
D2000000 00000000

What letter/number do you put in front of a line that begins with "B"?

they CAN'T be converted, they are POINTER codes.
__________________

My NEW Site
BEST anime ever!!
PSN(US): Hiei-YYH
PSN(Japan): JHiei-YYH

PSP Model: PSP1001 / CFW 5.50 GEN-D3 / Sony 16GB MS Pro Duo

Last edited by Hiei-YYH; June 4th, 2007 at 16:49..
Hiei-YYH is offline   Reply With Quote
Old June 4th, 2007   #72 (permalink)
Registered User
 
M4yka's Avatar
 
Join Date: Feb 2007
Location: Hungary
Posts: 341
Quote:
Originally Posted by marik1234 View Post
Didn't work.

It gave me like 70 out of 4000+ cards lol
Which game is this?

Hey Hiei!
Can you do sg with this? If you can plz convert it.

94000130 000001ff
d5000000 13131313
c0000000 00000170
d6000000 02105eb8
d2000000 00000000
(Yu-Gi-Oh! GX Spirit Caller All Cards)

Last edited by M4yka; June 4th, 2007 at 18:56.. Reason: Automerged Doublepost
M4yka is offline   Reply With Quote
Old June 5th, 2007   #73 (permalink)
Registered User
 
Join Date: May 2007
Location: New Zealand
Posts: 14
Hey I was wondering if you could do anything with this code Hiei-YYH
If you could it would be much appreciated. Thanks.

Digimon Gallery Complete!
121e045e 0000ffff
021e0460 ffffffff
021e0464 ffffffff
021e0468 ffffffff
021e046c ffffffff
021e0470 ffffffff
021e0474 ffffffff
021e0478 ffffffff
021e047c ffffffff
021e0480 ffffffff
121e0484 0000ffff
pureskill is offline   Reply With Quote
Old June 5th, 2007   #74 (permalink)
Registered User
 
Christ=Light's Avatar
 
Join Date: Jun 2007
Location: Australia
Posts: 9
i got a new version of digmon world ds and it still isn't working why do u think that the codes dont work
Christ=Light is offline   Reply With Quote
Old June 5th, 2007   #75 (permalink)
THE Hentai M@ster
 
Hiei-YYH's Avatar
 
Join Date: Aug 2005
Location: MAKAI
Posts: 1,634
Quote:
Originally Posted by pureskill View Post
Hey I was wondering if you could do anything with this code Hiei-YYH
If you could it would be much appreciated. Thanks.

Digimon Gallery Complete!
121e045e 0000ffff
021e0460 ffffffff
021e0464 ffffffff
021e0468 ffffffff
021e046c ffffffff
021e0470 ffffffff
021e0474 ffffffff
021e0478 ffffffff
021e047c ffffffff
021e0480 ffffffff
121e0484 0000ffff
convert yourself, there are explanations at the first page.


Quote:
Originally Posted by M4yka View Post
Which game is this?

Hey Hiei!
Can you do sg with this? If you can plz convert it.

94000130 000001ff
d5000000 13131313
c0000000 00000170
d6000000 02105eb8
d2000000 00000000
(Yu-Gi-Oh! GX Spirit Caller All Cards)
74000130 01FF
42105EB8 1313
000000B8 0004
74000130 01FF
42105EBA 1313
000000B8 0004
__________________

My NEW Site
BEST anime ever!!
PSN(US): Hiei-YYH
PSN(Japan): JHiei-YYH

PSP Model: PSP1001 / CFW 5.50 GEN-D3 / Sony 16GB MS Pro Duo
Hiei-YYH is offline   Reply With Quote
Old June 5th, 2007   #76 (permalink)
Registered User
 
Join Date: Apr 2007
Location: Roosendaal
Posts: 26
i was awndering if somebody could convert one of these code
0211059C 44444440
D5000000 44444444
C0000000 000000CD
D6000000 021105A0
D2000000 00000000
021108D8 04444444


0211173b 02333333
d5000000 02333333
c0000000 000000c8
d6000000 0211173f
d2000000 00000000
02111a8f 02333333
Samiro is offline   Reply With Quote
Old June 5th, 2007   #77 (permalink)
THE Hentai M@ster
 
Hiei-YYH's Avatar
 
Join Date: Aug 2005
Location: MAKAI
Posts: 1,634
Quote:
Originally Posted by Samiro View Post
i was awndering if somebody could convert one of these code
0211059C 44444440
D5000000 44444444
C0000000 000000CD
D6000000 021105A0
D2000000 00000000
021108D8 04444444
this one i already converted.


the second one:
4211173B 3333
00000064 0004
4211173D 0233
00000064 0004
4211173F 173F
00000064 0004
42111741 0211
00000064 0004


OH, AND BEFORE ANY OF YOUR GUYS CONTINUE ASKING, I'LL NOT CONVERT ANYMORE, I ALREADY EXPLAINED HERE HOW TO CONVERT THOSE CODES, EVEN THE SLIDE CODE.
__________________

My NEW Site
BEST anime ever!!
PSN(US): Hiei-YYH
PSN(Japan): JHiei-YYH

PSP Model: PSP1001 / CFW 5.50 GEN-D3 / Sony 16GB MS Pro Duo
Hiei-YYH is offline   Reply With Quote
Old June 6th, 2007   #78 (permalink)
Registered User
 
Join Date: Feb 2007
Location: malaysia
Posts: 11
Hey guys. check out this :

i using this codes and i got 999% of digimon from no.1(koromon) - Bantyoleomon..(just use code for digimon gallery complete set before use this, and you will get bunch of digimon ) just a little change from Hiei before :

74000130 03FB
421E0498 0000
000000FF 0004
74000130 03FB
421E04FE 3E70
000000FF 0004

press 'select' to activate... ( this is codebreakers, tick 'raw')..

For Pureskill, use renegade64 for digimon gallery complete..
This is the link :
http://viper.shadowflareindustries.c....rar&cat=hax0r

Have fun tell me it is works..
leepyron is offline   Reply With Quote
Old June 6th, 2007   #79 (permalink)
Registered User
 
Join Date: May 2007
Location: New Zealand
Posts: 14
Hey leepyron thanks for the new code it works real good but how do i use the renegade64
pureskill is offline   Reply With Quote
Old June 6th, 2007   #80 (permalink)
Registered User
 
Join Date: Feb 2007
Location: malaysia
Posts: 11
run no$gba and load up the rom and make sure it is running.

then start renegade 64.

click on cheating (tap on top next to file),

then click on attach to emulator, and select no$gba 2.4a

and select trainer/patcher (action replay codes count as a trainer)



First on the top right hand side it will say Training Options, it will has a box labeled system, click on NDS as shown in picture .

i then type in the name of the codes

i then copy and paste the code directly from code junkies into the box where it says codes

you can make notes on the cheat codes if you want but i left it blank (this is for buttom combinations etc...., like pressing up and select to activate somthing)

you then click on set as new on the bottom right hand side.

you have just entered in cheat codes, but to add them to the no$gba program you will need to turn them on, in the top right hand to the training options, click on activate codes, in the picture above it is turned on and the picture above says deactivate codes, if you wish to turn the codes off simply click on that toggle.

if you have done it right the codes should work. a lot of digimon codes works with this program.. tell me if it is works
Attached Images
File Type: jpg cheat.jpg (35.9 KB, 54 views)

Last edited by leepyron; June 6th, 2007 at 08:53..
leepyron is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 00:03.

© 2006 - 2008 Emu Forums | About Emu Forums | Advertising Opportunities | Legal | A member of the Crowdgather Forum Community


Powered by vBulletin® Version 3.7.6
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5