PLZ someone convert these CB 7 codes for me
#1
Smile PLZ I am begging ya I tried and failed so many time using CB2crypt and maxconvert and still they do not work they are for Xenosaga ep1 NTSC
here they are could anybody convert them to RAW for me
16 Decoder 1 1A972C6D 00000063
17 Decoder 2 1A992C6D 00000063
18 Decoder 3 1A9B2C6D 00000063
19 Decoder 4 1A9D2C6D 00000063
20 Decoder 5 1A9F2C6D 00000063
21 Decoder 6 1AA12C6D 00000063
22 Decoder 7 1AA32C6D 00000063
23 Decoder 8 1AA52C6D 00000063
24 Decoder 9 1AA72C6D 00000063
25 Decoder 10 1AA92C6D 00000063
26 Decoder 11 1AAB2C6D 00000063
27 Decoder 12 1AAD2C6D 00000063
28 Decoder 13 1AAF2C6D 00000063
29 Decoder 14 1AB12C6D 00000063
30 Decoder 15 1AB32C6D 00000063
31 Decoder 16 1AB52C6D 00000063
32 Decoder 17 1AB72C6D 00000063
33 Decoder 18 1AB92C6D 00000063
34 Decoder 19 1ABB2C6D 00000063
35 Decoder 20 1ABD2C6D 00000063
My New PC
[Image: 1714419.png]
[Image: stargate_sg_1_stamp_by_OmegaDreamSeeker11.jpg]
Reply

Sponsored links

#2
There are not working because of two reasons:
1.The decoder code is one byte long but those codes are using 1 at the beginning(which is used for 2 bytes long value)

2.This is the biggest problem...you MUST have only 1 decoder but that cheats makes 99 of every one of them.That lead to the problem that even if you have 99 of it,the game will act as you don't have the decoder and wont open the door(I learn about that the hard way)

Try them like this
Code:
//Decoder 1
patch=1,EE,0A972C6D,extended,00000001
//Decoder 2
patch=1,EE,0A992C6D,extended,00000001
//Decoder 3
patch=1,EE,0A9B2C6D,extended,00000001
//Decoder 4
patch=1,EE,0A9D2C6D,extended,00000001
//Decoder 5
patch=1,EE,0A9F2C6D,extended,00000001
//Decoder 6
patch=1,EE,0AA12C6D,extended,00000001
//Decoder 7
patch=1,EE,0AA32C6D,extended,00000001
//Decoder 8
patch=1,EE,0AA52C6D,extended,00000001
//Decoder 9
patch=1,EE,0AA72C6D,extended,00000001
//Decoder 10
patch=1,EE,0AA92C6D,extended,00000001
//Decoder 11
patch=1,EE,0AAB2C6D,extended,00000001
//Decoder 12
patch=1,EE,0AAD2C6D,extended,00000001
//Decoder 13
patch=1,EE,0AAF2C6D,extended,00000001
//Decoder 14
patch=1,EE,0AB12C6D,extended,00000001
//Decoder 15
patch=1,EE,0AB32C6D,extended,00000001
//Decoder 16
patch=1,EE,0AB52C6D,extended,00000001
//Decoder 17
patch=1,EE,0AB72C6D,extended,00000001
//Decoder 18
patch=1,EE,0AB92C6D,extended,00000001
//Decoder 19
patch=1,EE,0ABB2C6D,extended,00000001
//Decoder 20
patch=1,EE,0ABD2C6D,extended,00000001

PS.Those are raw codes,you don't need to convert them
Reply
#3
(09-10-2010, 12:15 PM)vsub Wrote: There are not working because of two reasons:
1.The decoder code is one byte long but those codes are using 1 at the beginning(which is used for 2 bytes long value)

2.This is the biggest problem...you MUST have only 1 decoder but that cheats makes 99 of every one of them.That lead to the problem that even if you have 99 of it,the game will act as you don't have the decoder and wont open the door(I learn about that the hard way)

Try them like this
Code:
//Decoder 1
patch=1,EE,0A972C6D,extended,00000001
//Decoder 2
patch=1,EE,0A992C6D,extended,00000001
//Decoder 3
patch=1,EE,0A9B2C6D,extended,00000001
//Decoder 4
patch=1,EE,0A9D2C6D,extended,00000001
//Decoder 5
patch=1,EE,0A9F2C6D,extended,00000001
//Decoder 6
patch=1,EE,0AA12C6D,extended,00000001
//Decoder 7
patch=1,EE,0AA32C6D,extended,00000001
//Decoder 8
patch=1,EE,0AA52C6D,extended,00000001
//Decoder 9
patch=1,EE,0AA72C6D,extended,00000001
//Decoder 10
patch=1,EE,0AA92C6D,extended,00000001
//Decoder 11
patch=1,EE,0AAB2C6D,extended,00000001
//Decoder 12
patch=1,EE,0AAD2C6D,extended,00000001
//Decoder 13
patch=1,EE,0AAF2C6D,extended,00000001
//Decoder 14
patch=1,EE,0AB12C6D,extended,00000001
//Decoder 15
patch=1,EE,0AB32C6D,extended,00000001
//Decoder 16
patch=1,EE,0AB52C6D,extended,00000001
//Decoder 17
patch=1,EE,0AB72C6D,extended,00000001
//Decoder 18
patch=1,EE,0AB92C6D,extended,00000001
//Decoder 19
patch=1,EE,0ABB2C6D,extended,00000001
//Decoder 20
patch=1,EE,0ABD2C6D,extended,00000001

PS.Those are raw codes,you don't need to convert them

sorry but I end up with a ton of TLB misses maybe I really should convert em or are they wrong I just copied and pasted it all you know
My New PC
[Image: 1714419.png]
[Image: stargate_sg_1_stamp_by_OmegaDreamSeeker11.jpg]
Reply
#4
It must be that way but try replacing the 0 at the beginning with 1
Are those codes the original or already converted?
Reply
#5
got em from codetwinks and have not altered them in any way just simply copied and pasted them here

edit:
tried replacing the 0 at the beginning with 1 but still end up with TLB misses
My New PC
[Image: 1714419.png]
[Image: stargate_sg_1_stamp_by_OmegaDreamSeeker11.jpg]
Reply
#6
Ok try then with 0 again but replace extended with byte.

I used those codes but on codebreaker on my PS2 and they worked fine.
If it's not working again then most likely pcsx2 don't like something about those codes

You can give me you save if you want and I can enable those codes but ones you get a decoder that you already have,he won't open the corresponding door until you make the amount 1 again
Reply
#7
(09-10-2010, 01:00 PM)vsub Wrote: Ok try then with 0 again but replace extended with byte.

I used those codes but on codebreaker on my PS2 and they worked fine.
If it's not working again then most likely pcsx2 don't like something about those codes

You can give me you save if you want and I can enable those codes but ones you get a decoder that you already have,he won't open the corresponding door until you make the amount 1 again

nope still with TLB misses how bout these could you convert em for me they are Action replay codes from cheathappen

All Special Items
DE8FFF3E BCEB08C3
DE8FFF3A BCEB0851

All Mech Weapons
DE8FFFEE BCEB024D
DE8FFFEA BCEB03A5

Infinite Drill Time
DEB72EFE BCA99B83
My New PC
[Image: 1714419.png]
[Image: stargate_sg_1_stamp_by_OmegaDreamSeeker11.jpg]
Reply
#8
Omniconvert doesn't give me anything useful for pcsx2
I don't know for what are those codes but they are not for Action Replay Max
Reply
#9
(09-10-2010, 01:19 PM)vsub Wrote: Omniconvert doesn't give me anything useful for pcsx2
I don't know for what are those codes but they are not for Action Replay Max

really Got it here http://www.cheathappens.com/show_cheat.asp?ID=12744
it does not say AR max though

here another one from codejunkies sez MAX this time

#
All Special Items
6PEG-1Z60-2RDCD
PUTG-TK81-A1RCT
XZBF-N87R-63JN9
#
All Mech Weapons
90WV-BPD9-C5KJ2
2CGJ-677U-7THXW
RA5Q-03ZH-4NB53
#
Infinite Drill Time
F4M3-YNZ2-733XT
2JT1-G31N-XNH4Y
#
Increase Drill Time
1CQG-71F1-W67H7
BF0K-VQN8-QFTTJ
2JT1-G31N-XNH4Y

Press Select to activate
My New PC
[Image: 1714419.png]
[Image: stargate_sg_1_stamp_by_OmegaDreamSeeker11.jpg]
Reply
#10
Yes I saw them before posting my previous post
ARMAX codes are
****-****-****
not like codebreaker/pcsx2 and some other cheat devices
******** ********
The problem is that Omniconvert can't convert them or maybe he convert them but pcsx2 can't use them

Edit:Try those but I'm not sure if they will work(they look strange for such code):
Code:
//All Special Items
patch=1,EE,200FFFC0,extended,00426D40
patch=1,EE,200FFFC4,extended,00426DCE

//All Mech Weapons
patch=1,EE,200FFFF0,extended,004267CA
patch=1,EE,200FFFF4,extended,00426822

//Infinite Drill Time
patch=1,EE,2047D000,extended,00000000

//Increase Drill Time
patch=1,EE,D0490D92,extended,0000FFFE
patch=1,EE,2047D000,extended,00000000
Reply




Users browsing this thread: 1 Guest(s)