ROM Hack Cheat Codes AMS and Sx Os, Add and Request

  • Thread starter Thread starter matias3ds
  • Start date Start date
  • Views Views 24,708,882
  • Replies Replies 73,874
  • Likes Likes 249
Downloading Super Robot Wars T just to look up codes but I'll need to wait for a title key to get started.

I have a noob question to write loop in cheat code.

If I want to do this,

Code:
For (i =0; i<98;i++)
   addr[0x01AA1EC0 + (0x18 * i)] = 0x63
How can I write code in cheat format.
I tried but failed :cry:

Code:
580F0000 01AA1EA8
780F0000 00000018
300e0000 00000062
640F1000 00000000 00000063
310e0000

This is what I think it is doing:
Code:
580F0000 01AA1EA8   ; F = 0X01AA1EA8
780F0000 00000018   ; F = F + 0X18 (and "R" register remember 0x18 for next arithmetic operator)
300e0000 00000062   ; E = 62
640F1000 00000000 00000063   ; F=F+R(0X18) and value at [F] = 0X63
310e0000   ; E--, if E = 0 exit loop

Thanks in advance.
 
Last edited by gnilwob,
You'll be fine i'm sure the game has enough in it for you to beat your meat an shoot a load just fine without needing codes on launch day. Kids these days no patience, they just want to shoot an run no foreplay.

Reminds me of that line from Aerosmith's "Shut Up and Dance"...
"Sex... is like... a gun. You aim, you shoot (heh heh), you run."

I'm shocked anyone would need cheats for that game. Unless they actually have to PLAY it to get to the "good parts."
 
  • Like
Reactions: F1NATIK
I have a noob question to write loop in cheat code.

If I want to do this,

Code:
For (i =0; i<98;i++)
   addr[0x01AA1EC0 + (0x18 * i)] = 0x63
How can I write code in cheat format.
I tried but failed :cry:

Code:
580F0000 01AA1EA8
780F0000 00000018
300e0000 00000062
640F1000 00000000 00000063
310e0000

This is what I think it is doing:
Code:
580F0000 01AA1EA8   ; F = 0X01AA1EA8
780F0000 00000018   ; F = F + 0X18 (and "R" register remember 0x18 for next arithmetic operator)
300e0000 00000062   ; E = 62
640F1000 00000000 00000063   ; F=F+R(0X18) and value at [F] = 0X63
310e0000   ; E--, if E = 0 exit loop

Thanks in advance.

Code:
For (i =0; i<98;i++)
   addr[0x01AA1EC0 + (0x18 * i)] = 0x63
Having a hard time following your loop. It looks like what you actually wanted was:

Code:
for (int i=0; i<98; i++) {
    [MAIN+0x01AA1EC0] + (0x18 * i) = 0x63;
}
I say this because In your example code below you do:

580F0000 01AA1EA8

which is F = [MAIN+01AA1EA8]
You then add 0x18 to it to get [MAIN+01AA1EA8] + 0x18

So if I'm understanding everything right, then to convert the loop you want it would be:

Code:
580F0000 01AA1EC0  // F = [MAIN+0x01AA1EC0];
300E0000 00000062  // for (int E=0; E<0x62; E++) {
640F0000 00000000 00000063  // [F] = 0x63;
780F0000 00000018  // F = F+0x18;
310E0000 // }
If I misunderstood your loop, it's because the for example you gave was confusing. If I got something wrong, please explain what you're trying to do normally and I'll turn it into a loop from there.
 
Last edited by DocKlokMan,
Requesting cheats for the following games:

--Chocobo's Mystery Dungeon EVERY BUDDY!
  • Max Money
  • Inf HP
  • Inf SP
  • Inf Hunger
  • Max exp
  • Max job exp (not sure if this cheat needs to be separate for each job class or all can be done in 1 cheat)
--Dead or Alive Xtreme 3 Scarlet
  • Max GirlMode money
  • Max OwnerMode money
  • Max owner exp
  • Max premium Tickets ( Not sure this one is even possible, but doesn't hurt to ask )
 
Last edited by Tere Valentin,
  • Like
Reactions: zebrone
wow can manually change itemid to 810 811 812 for more cheats
Wow, thanks for that. Tested the cheats for 1.0.2 and it seems to work great:

2019032009554100-BD7E60BD3D6DE70D3A499EDF18B9FA0A.jpg 2019032009554300-BD7E60BD3D6DE70D3A499EDF18B9FA0A.jpg 2019032009555100-BD7E60BD3D6DE70D3A499EDF18B9FA0A.jpg 2019032009564100-BD7E60BD3D6DE70D3A499EDF18B9FA0A.jpg
2019032009572300-BD7E60BD3D6DE70D3A499EDF18B9FA0A.jpg 2019032009572900-BD7E60BD3D6DE70D3A499EDF18B9FA0A.jpg 2019032009573700-BD7E60BD3D6DE70D3A499EDF18B9FA0A.jpg 2019032009585200-BD7E60BD3D6DE70D3A499EDF18B9FA0A.jpg

Guess I don't need to make any cheats after all.
 
Last edited by DocKlokMan,
Wow, thanks for that. Tested the cheats for 1.0.2 and it seems to work great:

View attachment 161465 View attachment 161466 View attachment 161467 View attachment 161468
View attachment 161469 View attachment 161470 View attachment 161471 View attachment 161472

Guess I don't need to make any cheats after all.
Thanks a lot.
I didn’t share my “hardcode” version because it loooks ugly :’(

I will try it when I am home.

The starting address is main + 0x01AA1EC0
And each item is + 0x18
There 98 items in total.
 
  • Like
Reactions: matias3ds
You'll be fine i'm sure the game has enough in it for you to beat your meat an shoot a load just fine without needing codes on launch day. Kids these days no patience, they just want to shoot an run no foreplay.

We just want those kinky costumes asap ;)
 
Thanks a lot.
I didn’t share my “hardcode” version because it loooks ugly :’(

I will try it when I am home.

The starting address is main + 0x01AA1EC0
And each item is + 0x18
There 98 items in total.
cheats are up at max-cheats. it might has what you are looking for
try to look at those codes for reference
 
Last edited by dsrules,
  • Like
Reactions: comput3rus3r

Site & Scene News

Popular threads in this forum