Language…
15 users online: deported, Domokun007, eltiolavara9, GiraffeKiller, Golden Yoshi, gothic251, h.carrell, koffe190, Maw, OEO6, OrangeRock57, Raccoon Sam, Rykon-V73, SirGabe, The_Uber_Camper - Guests: 263 - Bots: 379
Users: 64,795 (2,375 active)
Latest user: mathew

AMM port conversion not working?

Hello, I've been trying to convert Dominator's old FF8 'Maybe I'm a Lion' port, and I thought using the #AMM sample group would cut it, but unfortunately not. I'd rather not use the #instruments table because I'm sure the #AMM sample group should work by default, and I didn't change that. Plus, using the #instruments table here would be a bit tedious.

Source: https://bin.smwcentral.net/u/14790/Dominator.rar

My conversion: https://cloud.smwcentral.net/s/GbARFd9mGiJam8j/download

Please tell me what else I should do so I can convert other AMM ports on my own next time. Thanks.
My Mode 0 guide.

My Discord server. It has a lot of archived ASM stuff, so check that out!

Code
#amm
#samples
{
#optimized
#amm

Two issues:

1. The second #amm is not uppercase. The first #amm is telling AddmusicK to use Addmusic compatiblity mode, and the second #AMM is used to padding sample ID, so these custom samples can start at $20.
2. The echo delay is too long, which make the song uninsertable after solved issue #1. Just comment these 2 lines:
Code
$EF $FF $30 $30;Echo vbits/volume
$F1 $0A $20 $01;Echo delay, feedback, filter
And the song now works properly.
Okay, got it! Thanks a lot tcdw!

Edit: all right, for some reason, some samples are detuned. While I can fix that problem myself by finding out the correct tunings from the original SPC and retuning the samples accordingly, I'd like to understand, why does this happen?
My Mode 0 guide.

My Discord server. It has a lot of archived ASM stuff, so check that out!

Because the precision of tuning values is not enough in the past. Thus, you can only make your sample sounds mostly non-detuned.
Okay, thanks again.
My Mode 0 guide.

My Discord server. It has a lot of archived ASM stuff, so check that out!