Advertisement
dansalvato

Melee SFX Notes

Aug 11th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. 8038CFF4: Play sound effect
  2.  
  3. Code:
  4. 80578000: Set this to the SFX ID you want to play.
  5. 80578004: Stores the ID of the last played sound effect.
  6. If you hold D-pad right, the next played sound effect will be the specified ID instead of the usual sound. Then, the specified ID is incremented. Holding D-pad left will decrement the ID instead.
  7.  
  8. C238CFF4 0000000A
  9. 3DE08046 61EFB109
  10. 8A0F0000 3DE08057
  11. 61EF8000 822F0000
  12. 906F0004 2C100002
  13. 41820010 2C100001
  14. 41820014 48000018
  15. 7E238B78 3A310001
  16. 4800000C 7E238B78
  17. 3A31FFFF 922F0000
  18. 7C0802A6 00000000
  19.  
  20.  
  21. lis r15,0x8046
  22. ori r15,r15,0xb109
  23. lbz r16,0(r15)
  24. lis r15,0x8057
  25. ori r15,r15,0x8000
  26. lwz r17,0(r15)
  27. stw r3,4(r15)
  28. cmpwi r16,2
  29. beq PLUS
  30. cmpwi r16,1
  31. beq MINUS
  32. b END
  33.  
  34. PLUS:
  35. mr r3,r17
  36. addi r17,r17,1
  37. b END
  38.  
  39. MINUS:
  40. mr r3,r17
  41. subi r17,r17,1
  42.  
  43. END:
  44. stw r17,0(r15)
  45. mflr r0
  46.  
  47.  
  48. 0000 - 00A9: In-game sound effects
  49. 00AA: Trophy get
  50. 00AB: Award jingle
  51. 00AC: Menu back
  52. 00AD: Menu forward
  53. 00AE: Menu up/down
  54. 00AF: Menu access denied
  55. 00B0: Bubble damage sound
  56. 00B1: Pause sound
  57. 00B2: Star Fox intercom sound
  58. 00B3: Results screen left/right
  59. 00B4: Results screen coin get
  60. 00B5 - 00C1: Misc menu sounds
  61. 00DB - 013C: Item sounds
  62. 013D - 014B: Crowd sounds
  63. 014C - 020A: Walking sound effects (lots of repeats)
  64.  
  65. 4E20: Narrator game title shouts
  66. 7530: Narrator game modes
  67. 9C40: Narrator single-player phrases
  68. C350: Narrator versus phrases
  69. 7C830: Narrator character calls + Additional phrases
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement