vpw2 demo matches there are apparently two locations where this data is found in a Z64 format ROM: 0xDC280 (the real one) and 0x838CC (???) /*----------------------------------------------------------------------------*/ # seg2:80170FC0: [b] Demo match values (Z64 0xDC280) # https://www.tapatalk.com/groups/vpw2dojo/demo-matches-t472.html # First four values in each set are wrestler ID2s. # fifth value determines arena and match type/rules: # 76543210 # |__||__| # | | # | +--- Match Type/Rules (0=single, 1=tag, 2-5=MMA rules variations) # +-------- Arena (0-4) tbl2_DemoMatchSettings: .byte 0x01, 0x05, 0x00, 0x00, 0x00 .byte 0x01, 0x03, 0x00, 0x00, 0x00 .byte 0x01, 0x0F, 0x00, 0x00, 0x10 .byte 0x06, 0x19, 0x00, 0x00, 0x00 .byte 0x0B, 0x0E, 0x00, 0x00, 0x20 .byte 0x07, 0x04, 0x00, 0x00, 0x00 .byte 0x05, 0x3F, 0x00, 0x00, 0x00 .byte 0x0C, 0x03, 0x00, 0x00, 0x00 .byte 0x2F, 0x31, 0x00, 0x00, 0x10 .byte 0x1F, 0x1D, 0x00, 0x00, 0x10 .byte 0x2A, 0x22, 0x00, 0x00, 0x10 .byte 0x24, 0x1B, 0x00, 0x00, 0x10 .byte 0x44, 0x51, 0x00, 0x00, 0x20 .byte 0x41, 0x1D, 0x00, 0x00, 0x10 .byte 0x5C, 0x1F, 0x00, 0x00, 0x30 .byte 0x0F, 0x0E, 0x05, 0x06, 0x01 .byte 0x01, 0x02, 0x05, 0x06, 0x21 .byte 0x19, 0x09, 0x03, 0x04, 0x01 .byte 0x39, 0x3E, 0x3A, 0x3D, 0x31 .byte 0x28, 0x27, 0x29, 0x2B, 0x21 .byte 0x20, 0x1C, 0x1E, 0x23, 0x21 .byte 0x32, 0x33, 0x34, 0x53, 0x11 .byte 0x37, 0x40, 0x38, 0x47, 0x21 .byte 0x0B, 0x0C, 0x42, 0x0D, 0x01 .byte 0x44, 0x51, 0x50, 0x43, 0x21 .byte 0x56, 0x5D, 0x00, 0x00, 0x22 .byte 0x49, 0x5E, 0x00, 0x00, 0x23 .byte 0x5C, 0x51, 0x00, 0x00, 0x23 .byte 0x55, 0x4B, 0x00, 0x00, 0x23 .byte 0x4E, 0x4F, 0x00, 0x00, 0x04 .byte 0x4A, 0x4C, 0x00, 0x00, 0x04 .byte 0x57, 0x5B, 0x00, 0x00, 0x22 .byte 0x56, 0x58, 0x00, 0x00, 0x02 .byte 0x5F, 0x5C, 0x00, 0x00, 0x13 .byte 0x4E, 0x5C, 0x00, 0x00, 0x05 .byte 0x4E, 0x56, 0x00, 0x00, 0x05 .byte 0x56, 0x5A, 0x00, 0x00, 0x22 .byte 0x4E, 0x4D, 0x00, 0x00, 0x04 .byte 0x01, 0x05, 0x00, 0x00, 0x00 .byte 0 /*----------------------------------------------------------------------------*/ # (somewhere in seg1) # Z64 ROM address 0x838CC # this data is a lot like the demo match data (tbl2_DemoMatchSettings)... is it ever used? # unlike the above, the last byte is... # 76543210 # |__||__| # | | # | +-- arena (0-4, though only 0-3 are ever used by default) # +------- ruleset (0-5) # singles matches .byte 0x01, 0x05, 0x00, 0x00, 0x00 .byte 0x01, 0x03, 0x00, 0x00, 0x00 .byte 0x01, 0x0F, 0x00, 0x00, 0x01 .byte 0x06, 0x19, 0x00, 0x00, 0x00 .byte 0x0B, 0x0E, 0x00, 0x00, 0x02 .byte 0x07, 0x04, 0x00, 0x00, 0x00 .byte 0x05, 0x3F, 0x00, 0x00, 0x00 .byte 0x0C, 0x03, 0x00, 0x00, 0x00 .byte 0x2F, 0x31, 0x00, 0x00, 0x01 .byte 0x1F, 0x1D, 0x00, 0x00, 0x01 .byte 0x2A, 0x22, 0x00, 0x00, 0x01 .byte 0x24, 0x1B, 0x00, 0x00, 0x01 .byte 0x44, 0x51, 0x00, 0x00, 0x02 .byte 0x41, 0x1D, 0x00, 0x00, 0x01 .byte 0x5C, 0x1F, 0x00, 0x00, 0x03 .byte 0x00 # tag matches .byte 0x0F, 0x0E, 0x05, 0x06, 0x10 .byte 0x01, 0x02, 0x05, 0x06, 0x12 .byte 0x19, 0x09, 0x03, 0x04, 0x10 .byte 0x39, 0x3E, 0x3A, 0x3D, 0x13 .byte 0x28, 0x27, 0x29, 0x2B, 0x12 .byte 0x20, 0x1C, 0x1E, 0x23, 0x12 .byte 0x32, 0x33, 0x34, 0x53, 0x11 .byte 0x37, 0x40, 0x38, 0x47, 0x12 .byte 0x0B, 0x0C, 0x42, 0x0D, 0x10 .byte 0x44, 0x51, 0x50, 0x43, 0x12 .byte 0x00, 0x00 # mma rules matches .byte 0x56, 0x5D, 0x00, 0x00, 0x22 .byte 0x49, 0x5E, 0x00, 0x00, 0x32 .byte 0x5C, 0x51, 0x00, 0x00, 0x32 .byte 0x55, 0x4B, 0x00, 0x00, 0x32 .byte 0x4E, 0x4F, 0x00, 0x00, 0x40 .byte 0x4A, 0x4C, 0x00, 0x00, 0x40 .byte 0x57, 0x5B, 0x00, 0x00, 0x22 .byte 0x56, 0x58, 0x00, 0x00, 0x20 .byte 0x5F, 0x5C, 0x00, 0x00, 0x31 .byte 0x4E, 0x5C, 0x00, 0x00, 0x50 .byte 0x4E, 0x56, 0x00, 0x00, 0x50 .byte 0x56, 0x5A, 0x00, 0x00, 0x22 .byte 0x4E, 0x4D, 0x00, 0x00, 0x40 .byte 0x00