ROM Hack Discussion Animal Crossing: New Horizons -- Reverse Engineering, Glitches, Bugs, etc. thread!

Alexisaul455

Member
Newcomer
Joined
Mar 20, 2020
Messages
20
Trophies
0
Age
27
XP
98
Country
United States
You know why the wedding veil code doesn't work for me (id 163c) please help. Also know the id of the wedding recipes? Your work is appreciated.
 

Amuyea

Well-Known Member
Member
Joined
Nov 24, 2017
Messages
185
Trophies
0
XP
775
Country
United States
Last edited by Amuyea,
  • Like
Reactions: Alexisaul455

Mopquill

Grumpy Developer
Developer
Joined
Oct 16, 2011
Messages
283
Trophies
0
XP
566
Country
United States
The goal of my files is to provide as much data as possible. Pastebin simply couldn't keep up anymore and didn't allow me to upload the new files. I also changed the format to be json so it can be easier loaded into programs.
Oh, it's way more useful as JSON. Because I can parse it and spit out something like this, which is in the old item format everyone is used to: https://mpql.net/tools/acnh/codes/item-list/

And if you update the list, that'll update too. Woo.
 

Taishiro

Well-Known Member
Member
Joined
Apr 22, 2020
Messages
322
Trophies
0
Age
23
XP
854
Country
Chile
Here's how to convert your old v1.1.x inventory codes to v1.2 in C# if anyone is lazy enough to do it by hand ^^


Code:
        public string ConvertFromv1_1(string CheatCode)
        {
            const int Difference = 0xB9310;

            foreach (string CheatLine in CheatCode.Split(Convert.ToChar(13)))
            {
                string[] LineParts = CheatLine.Split(' ');

                if (LineParts.Length > 2 && LineParts[1].Length == 8)
                {
                    int Mem = int.Parse(LineParts[1], NumberStyles.HexNumber);
                    Mem = Mem + Difference;

                    CheatCode = CheatCode.Replace(LineParts[1], Mem.ToString("X8"));
                }
            }

            return CheatCode;
        }
 
  • Like
Reactions: ELY_M

Deleted member 369977

Felyne Hunter
Member
Joined
Aug 16, 2015
Messages
383
Trophies
0
XP
346
Country
Germany
Oh, it's way more useful as JSON. Because I can parse it and spit out something like this, which is in the old item format everyone is used to: https://mpql.net/tools/acnh/codes/item-list/

And if you update the list, that'll update too. Woo.
I just updated the format to merge dec_id and hex_id to just be id which contains both, hope I didn't break anything then.. oops :unsure:
 

Mopquill

Grumpy Developer
Developer
Joined
Oct 16, 2011
Messages
283
Trophies
0
XP
566
Country
United States
I just updated the format to merge dec_id and hex_id to just be id which contains both, hope I didn't break anything then.. oops :unsure:
Actually, I guess I made this after that change? Haha. I thought I saw something specific like that, but I went to grab it and just saw they were enumerated. But yeah, update that and that list will update. :D
 

supermariorick

Well-Known Member
Member
Joined
Jun 18, 2010
Messages
640
Trophies
1
XP
816
Country
United States
Here's how to convert your old v1.1.x inventory codes to v1.2 in C# if anyone is lazy enough to do it by hand ^^


Code:
        public string ConvertFromv1_1(string CheatCode)
        {
            const int Difference = 0xB9310;

            foreach (string CheatLine in CheatCode.Split(Convert.ToChar(13)))
            {
                string[] LineParts = CheatLine.Split(' ');

                if (LineParts.Length > 2 && LineParts[1].Length == 8)
                {
                    int Mem = int.Parse(LineParts[1], NumberStyles.HexNumber);
                    Mem = Mem + Difference;

                    CheatCode = CheatCode.Replace(LineParts[1], Mem.ToString("X8"));
                }
            }

            return CheatCode;
        }
how do I use this?
 

Deleted member 369977

Felyne Hunter
Member
Joined
Aug 16, 2015
Messages
383
Trophies
0
XP
346
Country
Germany
Actually, I guess I made this after that change? Haha. I thought I saw something specific like that, but I went to grab it and just saw they were enumerated. But yeah, update that and that list will update. :D
I just pushed the change like an hour ago when I added the DIY recipe list. So lets hope nothing broke, but I'll try my best to keep the list updated,
 
  • Like
Reactions: Mopquill

Babybuds

Member
Newcomer
Joined
Apr 23, 2020
Messages
10
Trophies
0
Age
25
XP
59
Country
United States
Still don't think I've hit 5 but if someone wants to quote me - IMO the list is more useful this way for non-dev people who are just making cheat codes for edizon, .json is better for dev.

PasteBIN - VNYgeJ9n (All items + added DIY's)
PasteBIN - 3ZkpTbyD (Just DIY's)
 

Mopquill

Grumpy Developer
Developer
Joined
Oct 16, 2011
Messages
283
Trophies
0
XP
566
Country
United States
I just pushed the change like an hour ago when I added the DIY recipe list. So lets hope nothing broke, but I'll try my best to keep the list updated,
It should be fine. Worst case, I tweak some settings on my end, or use the version I downloaded. XD

ooh this is fantastic! only thing, if possible, to list colors for the clothes?
I can only output what is in the JSON, I can't tell how many variants something might have, or what they equate to.
 

Taishiro

Well-Known Member
Member
Joined
Apr 22, 2020
Messages
322
Trophies
0
Age
23
XP
854
Country
Chile
Tip for people that want to get the right furniture colouring variants in their cheat codes

If you use nookplaza to look at the furniture database, take a look at the image file.
Example, https://acnhcdn.com/acdb/housewares/FtrFittingroom_Remake_3_7.png for the the changing room in dark brown + blue

The way to get teh colouring variant in hexadecimal for the code generator is this:
Take "3_7".
Multiply the second colour (7) by 2, and transform it to hex -> 14 -> E
Append the first colour to the second one in hex.

So, "3_7" -> E3
E3 is what you should put in the "quantity/custom" if you want the changing room in that dark brown + blue combination.
 

RyDog

Lazy Animal Crossing hacks
Member
Joined
Apr 26, 2015
Messages
1,698
Trophies
1
Age
24
XP
2,850
Country
United States
Anyone try the text to item cheat on a non English switch? I know that was an issue with the older version of the code, but I was able to find a pointer to chat.
 

Mopquill

Grumpy Developer
Developer
Joined
Oct 16, 2011
Messages
283
Trophies
0
XP
566
Country
United States

Exegency

Well-Known Member
Member
Joined
Apr 23, 2020
Messages
143
Trophies
0
XP
615
Country
Australia

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • BakerMan @ BakerMan:
    ok, because here it's in september, right before the fuckin school year starts
  • Xdqwerty @ Xdqwerty:
    good night
  • BakerMan @ BakerMan:
    as to you
  • K3Nv2 @ K3Nv2:
    How do you know if the night will be good when you're asleep
  • BakerMan @ BakerMan:
    because i didn't say i was asleep
  • BakerMan @ BakerMan:
    i said i was sleeping...
  • BakerMan @ BakerMan:
    sleeping with uremum
  • K3Nv2 @ K3Nv2:
    Even my mum slept on that uremum
  • TwoSpikedHands @ TwoSpikedHands:
    yall im torn... ive been hacking away at tales of phantasia GBA (the USA version) and have so many documents of reverse engineering i've done
  • TwoSpikedHands @ TwoSpikedHands:
    I just found out that the EU version is better in literally every way, better sound quality, better lighting, and there's even a patch someone made to make the text look nicer
  • TwoSpikedHands @ TwoSpikedHands:
    Do I restart now using what i've learned on the EU version since it's a better overall experience? or do I continue with the US version since that is what ive been using, and if someone decides to play my hack, it would most likely be that version?
  • Sicklyboy @ Sicklyboy:
    @TwoSpikedHands, I'll preface this with the fact that I know nothing about the game, but, I think it depends on what your goals are. Are you trying to make a definitive version of the game? You may want to refocus your efforts on the EU version then. Or, are you trying to make a better US version? In which case, the only way to make a better US version is to keep on plugging away at that one ;)
  • Sicklyboy @ Sicklyboy:
    I'm not familiar with the technicalities of the differences between the two versions, but I'm wondering if at least some of those differences are things that you could port over to the US version in your patch without having to include copyrighted assets from the EU version
  • TwoSpikedHands @ TwoSpikedHands:
    @Sicklyboy I am wanting to fully change the game and bend it to my will lol. I would like to eventually have the ability to add more characters, enemies, even have a completely different story if i wanted. I already have the ability to change the tilemaps in the US version, so I can basically make my own map and warp to it in game - so I'm pretty far into it!
  • TwoSpikedHands @ TwoSpikedHands:
    I really would like to make a hack that I would enjoy playing, and maybe other people would too. swapping to the EU version would also mean my US friends could not legally play it
  • TwoSpikedHands @ TwoSpikedHands:
    I am definitely considering porting over some of the EU features without using the actual ROM itself, tbh that would probably be the best way to go about it... but i'm sad that the voice acting is so.... not good on the US version. May not be a way around that though
  • TwoSpikedHands @ TwoSpikedHands:
    I appreciate the insight!
  • The Real Jdbye @ The Real Jdbye:
    @TwoSpikedHands just switch, all the knowledge you learned still applies and most of the code and assets should be the same anyway
  • The Real Jdbye @ The Real Jdbye:
    and realistically they wouldn't

    be able to play it legally anyway since they need a ROM and they probably don't have the means to dump it themselves
  • The Real Jdbye @ The Real Jdbye:
    why the shit does the shitbox randomly insert newlines in my messages
  • Veho @ Veho:
    It does that when I edit a post.
  • Veho @ Veho:
    It inserts a newline in a random spot.
    Veho @ Veho: It inserts a newline in a random spot.