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

h448

Well-Known Member
Member
Joined
Apr 4, 2014
Messages
310
Trophies
1
XP
1,156
Country
United States
Could you show me the list of villagers with the github ids? I'm looking and can't find
Honestly, I've just found it easier to find the villager I want in NHSE itself and it has the IDs you need once you find the picture. Species is alphabetical.
The github has a text list in there somewhere, but I can't be arsed to actually find it. I found the images at least which is better than nothing I guess.
 

Ultimos54

Well-Known Member
Member
Joined
Aug 27, 2018
Messages
1,270
Trophies
0
XP
3,480
Country
Australia
ooft would be awesome if someone could just creating the spawn on island codes for ALL of them.Also does using the code and having them join you give the right interior/exterior?
 

h448

Well-Known Member
Member
Joined
Apr 4, 2014
Messages
310
Trophies
1
XP
1,156
Country
United States
ooft would be awesome if someone could just creating the spawn on island codes for ALL of them.Also does using the code and having them join you give the right interior/exterior?
Here's just a compilation of all (?) the non-amiibo ones at least for now. And yes, they have the right interior and exterior once moved in.

[Thanks to Lionheartwolf, DestinyFeather and Etesy]
Code:
[Raymond on Mystery Island]
04100000 3F9DBBBC 00000004
04100000 3F9DBAAC 32746163
04100000 3F9DBAB0 00000033

[Dom on Mystery Island]
04100000 3F9DBBBC 00000031
04100000 3F9DBAAC 31706873
04100000 3F9DBAB0 00000035

[Audie on Mystery Island]
04100000 3F9DBBBC 00000022
04100000 3F9DBAAC 316C6F77
04100000 3F9DBAB0 00000032

[Judy on Mystery Island]
04100000 3F9DBBBC 00000005
04100000 3F9DBAAC 31726263
04100000 3F9DBAB0 00000039

[Reneigh on Mystery Island]
04100000 3F9DBBBC 00000012
04100000 3F9DBAAC 31737268
04100000 3F9DBAB0 00000036

[Megan on Mystery Island]
04100000 3F9DBBBC 00000001
04100000 3F9DBAAC 31616562
04100000 3F9DBAB0 00000035

[Sherb on Mystery Island]
04100000 3F9DBBBC 00000014
04100000 3F9DBAAC 30616F67
04100000 3F9DBAB0 00000039
 

lennurs

Well-Known Member
Member
Joined
Mar 20, 2020
Messages
168
Trophies
0
Age
34
XP
132
Country
United States
im a fucking idiot. when i updated to 1.1.3 from 1.1.2 i didnt change the cheat .txt and thats why it wasnt working for me. sorry yall
 

leanderson2006

Well-Known Member
Newcomer
Joined
Dec 19, 2012
Messages
90
Trophies
1
Location
Rio de Janeiro, Rio de Janeiro
XP
1,060
Country
Brazil
Honestly, I've just found it easier to find the villager I want in NHSE itself and it has the IDs you need once you find the picture. Species is alphabetical.
The github has a text list in there somewhere, but I can't be arsed to actually find it. I found the images at least which is better than nothing I guess.

thank you you helped me a lot
 

DestinyFeather

Well-Known Member
Member
Joined
Sep 14, 2009
Messages
428
Trophies
1
XP
1,121
Country
United States
https://raw.githubusercontent.com/C...ources/v1/Text/Villagers/VillagerNames_en.txt
https://pastebin.com/3rg0TZEb
https://www.rapidtables.com/convert/number/ascii-to-hex.html converts ascii to hex

For anyone still confused
upload_2020-4-6_21-19-2.png
 
Last edited by DestinyFeather,

Ningyoplug

Well-Known Member
Member
Joined
Mar 10, 2016
Messages
257
Trophies
0
Age
29
Location
Gayland
Website
ningyo.tumblr.com
XP
363
Country
Italy
I tried to simplify this as much as possible to make it easily understandable and so that everyone can try making their own.
I'm adding nothing new, just rephrasing info that has already been said so that it's easier to understand.

How to make any villager appear on Mystery Island
(so that you can invite them to your island)

This is the code you need to use:
Lionheartwolf said:
04100000 3F9DBBBC 000000XX
04100000 3F9DBAAC YYYYYYYY
04100000 3F9DBAB0 000000ZZ

The parts in bold are the ones you want to change, the rest remains the same.
This code has 3 parts.: the first one is the villager's species, while the second and third are the villager's ID (it's divided in 2 parts because it's too long).

1) Find the villager you want on this list.

Example: Merengue
(rhn07)

2) First part of the code: Species.
Check this list for the all the species IDs, then replace XX with the species ID of your villager.

Species IDs list (posted by SirVillager)
00 - Anteater
01 - Bear
02 - Bird
03 - Bull
04 - Cat
05 - Cub
06 - Chicken
07 - Cow
08 - Alligator
09 - Deer
0A - Dog
0B - Duck
0C - Elephant
0D - Frog
0E - Goat
0F - Gorilla
10 - Hamster
11 - Hippo
12 - Horse
13 - Koala
14 - Kangaroo
15 - Lion
16 - Monkey
17 - Mouse
18 - Octopus
19 - Ostrich
1A - Hawk
1B - Penguin
1C - Pig
1D - Rabbit
1E - Rhino
1F - Sheep
20 - Squirrel
21 - Tiger
22 - Wolf
Example: Merengue is a Rhino, so i will use this one: 1E

3) Now we need to convert the villager's ID (example: "rhn07" for Merengue) into hex.
  • divide it into two parts: the first 4 characters are the first part (e.g."rhn0"), the last number is the second part (e.g."7")
  • Write the first part backwards. (Example: 0nhr)
  • Use this website to convert that into hex. Replace YYYYYYYY with the result.
    Example: "0nhr" converted into hex is 30 6e 68 72. Just delete the spaces and it's 306E6872.
  • Now convert the last number into hex using the same website. Replace ZZ with the result.
    Example: "7" converted becomes "37"

4) Your code is ready!

Here's what it looks like for Merengue:
04100000 3F9DBBBC 0000001E
04100000 3F9DBAAC 306E6872
04100000 3F9DBAB0 00000037

Important: The villager on the Mystery Island won't LOOK like the villager you want, but if you talk to them you will notice they have the name and personality of the villager you want. Go ahead and invite them, you'll get the correct villager once they move into your island.
 
Last edited by Ningyoplug,
D

Deleted User

Guest
Anyone have this problem with NHSE? All I'm trying to do is open main.dat
 

Attachments

  • 1.png
    1.png
    15.8 KB · Views: 187

Bobyg55

Well-Known Member
Newcomer
Joined
Oct 17, 2019
Messages
95
Trophies
0
Age
33
XP
656
Country
Indonesia
Guys,Is it possible to make a random item generator codes in bag slot 1?
Maybe different codes for each type of item like diy recipe, tools,fish, bug, fossil, etc.
 

Al3need44

Active Member
Newcomer
Joined
Dec 14, 2019
Messages
30
Trophies
0
Age
33
XP
196
Country
United Arab Emirates
Thank you so much for this! I had been trying to see which items have variations and what they look like. This save me a lot of time.
i try in some villagers like Dom megan and raymond , its not working

--------------------- MERGED ---------------------------

Hi, checking the thread I saw that adding DIY recipe cards to the inventory with NHSE is possible but fall under (item #001), (item #002), etc values. If there a way to determine which value is which recipe? Is it in the pastebin somewhere or would someone have to upload their save to NHSE after editing their hashes for it to tell which is which?
i try in some villagers like Dom megan and raymond (kick them out) , its not working
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
    Psionic Roshambo @ Psionic Roshambo: https://www.youtube.com/watch?v=HlxH_Th3-LI