>>843
↓をコピーしてプラグインフォルダに突っ込みWeaponEffectControl.playSound(○○,204);を記述したら武器同士がぶつかる音が鳴る筈(0〜6は元のままで、7以上を指定するとランタイムの効果音ID:7〜の音が出る)

(function() {
var alias1 = WeaponEffectControl.playSound;
WeaponEffectControl.playSound= function(unit, type) {
if( type < 7 ){
alias1.call(this, unit, type);
}
else {
var soundHandle = root.createResourceHandle(true, type, 0, 0, 0);
if (soundHandle !== null) {
MediaControl.soundPlay(soundHandle);
}
}
}
})();