|
发表于 2020-5-18 05:11:53
|
显示全部楼层
我在GBATEMP找到了1.2.0版的。麻烦更新一下主楼。我已经在我自己的破解机上测试了,1.2.0版OK,没有问题。
他的金手指使用了热键开启,可以不使用,只用一行代码。格式如我所说,前缀换成08100000是正确的。
另外他还有多一行物种代码的地址,16进制的物种代码,不知道是做什么用的。如果可能,请测试一下物种代码哪一行代码的作用。
I updated the mystery island villager cheats.
I tested and it works for me on 1.2.0.
Examples:
Spoiler
[Press L to turn mystery island villager into Audie]
80000040
08100000 3F292AC4 00000032 316C6F77
04100000 3F292BD4 00000022
20000000
[Press L to turn mystery island villager into Raymond]
80000040
08100000 3F292AC4 00000033 32746163
04100000 3F292BD4 00000004
20000000
The format for arbitrary villager is:
Spoiler
[Press L to turn mystery island villager into ?]
80000040
08100000 3F292AC4 000000XX XXXXXXXX
04100000 3F292BD4 000000YY
20000000
XX = Villager identifier. This can be found in NHSE, for example raymond is "cat23".
cat23 is ascii string 63 61 74 32 33, but the cheat stores the value backwards (due to endianness), so the XX becomes
00000033 32746163.
The YY is the species value, also visible in NHSE. Cat is species 4, so YY is 04. |
|