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

gnilwob

Well-Known Member
Member
Joined
Mar 16, 2008
Messages
204
Trophies
1
XP
644
Country
Hong Kong
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,

GuyInDogSuit

Your friendly neighborhood guy in a dog suit.
Member
Joined
Aug 1, 2008
Messages
1,856
Trophies
1
Age
41
Location
Sacramento, CA
Website
www.sniffglueworshipsatan.com
XP
1,669
Country
United States
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

DocKlokMan

Plugin Dev
Member
Joined
Apr 20, 2007
Messages
3,008
Trophies
2
Age
36
XP
4,558
Country
United States
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,

Tere Valentin

Well-Known Member
Member
Joined
Nov 21, 2015
Messages
1,291
Trophies
0
Age
36
XP
2,368
Country
United States
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

DocKlokMan

Plugin Dev
Member
Joined
Apr 20, 2007
Messages
3,008
Trophies
2
Age
36
XP
4,558
Country
United States
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,

gnilwob

Well-Known Member
Member
Joined
Mar 16, 2008
Messages
204
Trophies
1
XP
644
Country
Hong Kong
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

CelicaGTS

Active Member
Newcomer
Joined
Dec 6, 2018
Messages
33
Trophies
0
Age
28
XP
149
Country
United States
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 ;)
 

dsrules

Well-Known Member
Member
Joined
Sep 20, 2005
Messages
8,635
Trophies
2
XP
6,200
Country
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

General chit-chat
Help Users
  • No one is chatting at the moment.
  • ZeroT21 @ ZeroT21:
    it wasn't a question, it was fact
  • BigOnYa @ BigOnYa:
    He said he had 3 different doctors apt this week, so he prob there. Something about gerbal extraction, I don't know.
    +1
  • ZeroT21 @ ZeroT21:
    bored, guess i'll spread more democracy
  • LeoTCK @ LeoTCK:
    @K3Nv2 one more time you say such bs to @BakerMan and I'll smack you across the whole planet
  • K3Nv2 @ K3Nv2:
    Make sure you smack my booty daddy
    +1
  • LeoTCK @ LeoTCK:
    telling him that my partner is luke...does he look like someone with such big ne
    eds?
  • LeoTCK @ LeoTCK:
    do you really think I could stand living with someone like luke?
  • LeoTCK @ LeoTCK:
    I suppose luke has "special needs" but he's not my partner, did you just say that to piss me off again?
  • LeoTCK @ LeoTCK:
    besides I had bigger worries today
  • LeoTCK @ LeoTCK:
    but what do you know about that, you won't believe me anyways
  • K3Nv2 @ K3Nv2:
    @BigOnYa can answer that
  • BigOnYa @ BigOnYa:
    BigOnYa already left the chat
  • K3Nv2 @ K3Nv2:
    Biginya
  • BigOnYa @ BigOnYa:
    Auto correct got me, I'm on my tablet, i need to turn that shit off
  • K3Nv2 @ K3Nv2:
    With other tabs open you perv
  • BigOnYa @ BigOnYa:
    I'm actually in my shed, bout to cut 2-3 acres of grass, my back yard.
  • K3Nv2 @ K3Nv2:
    I use to have a guy for that thanks richard
  • BigOnYa @ BigOnYa:
    I use my tablet to stream to a bluetooth speaker when in shed. iHeartRadio, FlyNation
  • K3Nv2 @ K3Nv2:
    While the victims are being buried
  • K3Nv2 @ K3Nv2:
    Grave shovel
  • BigOnYa @ BigOnYa:
    Nuh those goto the edge of the property (maybe just on the other side of)
  • K3Nv2 @ K3Nv2:
    On the neighbors side
    +1
  • BigOnYa @ BigOnYa:
    Yup, by the weird smelly green bushy looking plants.
    K3Nv2 @ K3Nv2: https://www.the-sun.com/news/10907833/self-checkout-complaints-new-target-dollar-general-policies...