add this after Lute
Code: Select all
case 0x2805: // Bamboo Flute
if( wellPlayed )
soundID = 0x504;
else
soundID = 0x503;
break;find this
switch( toCheck.id )
{
case 0x0E9C:
case 0x0E9D:
case 0x0E9E:
case 0x0EB1:
case 0x0EB2:
case 0x0EB3:
case 0x0EB4:
add this line after the last case
Code: Select all
case 0x2805:Code: Select all
case 0x2805: // Bamboo Flute
if( wellPlayed )
soundID = 0x504;
else
soundID = 0x503;
break;find GetInstrument then find this line case 0x0EB4:
add this code after that line
Code: Select all
case 0x2805:
add this code
Code: Select all
case 0x2805: // Bamboo Flute
if( wellPlayed )
soundID = 0x504;
else
soundID = 0x503;
break;