Welcome to Data Crystal's new home! Data Crystal is now part of the TCRF family (sort of).
The wiki has recently moved; please report any issues in Discord. Pardon the dust.

Wario Land 3/RAM map: Difference between revisions

From Data Crystal
Jump to navigation Jump to search
No edit summary
No edit summary
Line 25: Line 25:
  Example 3: You have all the keys. The binary value would be 00001111. In hex, this would be 0F.
  Example 3: You have all the keys. The binary value would be 00001111. In hex, this would be 0F.
* <tt>0xCA5C</tt> = Musical Coins
* <tt>0xCA5C</tt> = Musical Coins
* <tt>0xCEE3</tt> = Last collected treasure in current game.
* <tt>2xD00E</tt> = Next treasure to collect
{{Internal Data|game=Wario Land 3}}
{{Internal Data|game=Wario Land 3}}

Revision as of 10:09, 8 October 2021

Chip tiny.png The following article is a RAM map for Wario Land 3.

General

  • 0xCA04 = Coins (first digit)
  • 0xCA05 = Coins (last two digits)
    • Note: This value is stored as a decimal value; for example, when you have 99 coins, this is stored as 99 in hex, not 63 as you might expect.
  • 0xCA06 = Current Level
  • 0xCA39 = Number of treasures (first digit)
  • 0xCA3A = Number of treasures (last two digits)
    • Note: This value is stored as a decimal value; for example, when you have 99 treasures, this is stored as 99 in hex, not 63 as you might expect.
  • 0xCA3B = Day/Night (day when bit 0 = 0; night when bit 0 = 1)
  • 0xCA3C = Wario's power-ups (values 0A-0C do not affect Wario, but they do change the Action Help screen to the special screens for certain situations)
  • 0xCA46 = Language (Japanese when bit 0 = 0; English when bit 0 = 1)
  • 0xCA5B = Keys
This is a 4-bit binary value. The format is as follows:
xxxx.... - Unused
....x... - Blue Key
.....x.. - Green Key
......x. - Red Key
.......x - Gray Key
This value is then translated into hex.
Example 1: You have only a gray key. The binary value would be 00000001. In hex, this would be 01.
Example 2: You have both the blue and green keys. The binary value would be 00001100. In hex, this would be 0C.
Example 3: You have all the keys. The binary value would be 00001111. In hex, this would be 0F.
  • 0xCA5C = Musical Coins
  • 0xCEE3 = Last collected treasure in current game.
  • 2xD00E = Next treasure to collect