Advertisement
olystice

TMC - actor codes

Aug 14th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. THESE ARE RANDOM DISCOVERIES/THEORIES I CAME UP WITH WHEN MESSING WITH THE MINISH CAP US ROM
  2. SOME (OR MOST) OF IT IS LIKELY WORDED WRONG
  3. --------------------------------------------------------------------------------------------
  4.  
  5. The positioning of the actors is based on the hex codes located 5 bytes after the actor's address.
  6.  
  7. For example, in the first "event" room in the game (going downstairs in link's house and one screen to the right), there are 2 actors, Master Smith and Zelda.
  8.  
  9. Master Smith is standing to the right of Zelda. He's at a different X, but the same Y.
  10.  
  11. Master Smith's actor code is:
  12. 07 4F 22 00 00 00 00 00 80 00 50 00 78 9B 00 08
  13.  
  14. While Zelda's actor code is:
  15. 07 4F 28 00 00 00 00 00 60 00 50 00 68 9C 00 08
  16.  
  17. The [07 4f XX] here is the actor graphic itself. 22 is Smith, 28 is Zelda. Then there's a 5-byte blank space, followed by where the actor is located. [XX XX YY YY] The last section here is the direction the actor is facing.
  18.  
  19.  
  20. 9A - UP
  21. 9B - LEFT
  22. 9C - RIGHT
  23. 9D - DOWN
  24.  
  25.  
  26.  
  27. XX YY ZZ AA
  28.  
  29.  
  30.  
  31.  
  32. 06 0f 05 - Pot
  33. 06 0F 05 00 00 00 00 00 28 00 28 00 00 00 00 00 - first pot in room
  34. 06 0F 05 00 00 00 00 00 28 00 38 00 00 00 00 00 - second pot in room
  35.  
  36. 06 0f 4f - chest
  37.  
  38.  
  39.  
  40. LAYER 5?? - f2e60
  41.  
  42. f2b00 - maybe chest 4d
  43.  
  44.  
  45.  
  46.  
  47.  
  48. E5 E6 04 08 E9 E6 04 08 FF
  49.  
  50. AC 2D 0F 08 CC 2D 0F 08 4C 2E 0F 08 5C 2E 0F 08
  51. ^-- map header?????
  52.  
  53.  
  54. [AC 2D 0F 08] [CC 2D 0F 08] [4C 2E 0F 08] [5C 2E 0F 08]
  55. SECTION 1 SECTION 2 SECTION 3 SECTION 4
  56. Section 1 controls wich room it's going to load
  57.  
  58. Section 2 controls ?????????
  59.  
  60. Section 3 controls ?????????
  61.  
  62. Section 4 controls the type of room?? (dark, etc)
  63.  
  64.  
  65.  
  66.  
  67.  
  68. f2e64
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement