its really a detail question and i can live with any solution on it.
to get an idea on the difference:
for a general-only approach, to make 2 projectiles, first shot at 0.0 second one at 0.5 with each having a sound starting at 0.0 related to the time projectile got shot =>
(in the xmls attack skill)
<sound enabled="true" start-time="0.0">
<sound-file path="sounds/s1.wav"/>
</sound>
<sound enabled="true" start-time="0.5">
<sound-file path="sounds/s2.wav"/>
</sound>
(still in the attack skill, actually we are not sure if we want to repeat the whole <projectile> or only the <particle> inside yet but lets do it like this for demonstration)
<projectile value="true">
<particle value="true" path="particle_proj.xml" time-value="0.0"/>
</projectile>
<projectile value="true">
<particle value="true" path="particle_proj.xml" time-value="0.5"/>
</projectile>
with relative sounds:
(if theres no other sound to be played, outside only this:)
<sound enabled="false"/>
(and in the projectile area..)
<projectile value="true">
<particle value="true" path="particle_proj.xml" time-value="0.0"/>
<projectile-sound enabled="true" start-time="0.0">
<sound-file path="sounds/s1.wav">
</projectile-sound>
</projectile>
<projectile value="true">
<particle value="true" path="particle_proj.xml" time-value="0.5"/>
<projectile-sound enabled="true" start-time="0.0">
<sound-file path="sounds/s2.wav">
</projectile-sound>
</projectile>
having the nested sound tag optional so one could still do it with the outside sound if one wanted to..
cutting down the xmls we drafted a bit, i hope it represents your idea titi x)