Two problems...
1. I've changed the Neutron Flare weapon for the Crosair so that it would fire longbolt missiles. Well, I want to achieve the effect of missiles raining down on a target (like about 6 missiles being fired from each shot), but I have yet to accomplish it. I've only managed to fire up to two missiles at once (had to change the Factor to 2 in the weapons tab).
I've read that you need multiple attack commands for it to fire multiple missiles.
CODE
CorsairAirAttkInit:
wait 1
nobrkcodestart
attack26
wait 1
attack26
wait 1
attack26
wait 1
attack26
wait 1
nobrkcodeend
gotorepeatattk
goto CorsairGndAttkToIdle
Is this code right, or is something else missing?
2. I am trying to change the Valkyrie's ground firing rate so that it is the same as its firing rate for air targets. I merely copied the ValkyrieAirAttkInit and created a code for ValkyrieGndAttkInit.
CODE
ValkyrieGndAttkInit:
wait 1
nobrkcodestart
attack25 2
wait 10
attack25 2
wait 10
attack25 2
wait 10
attack25 2
wait 10
nobrkcodeend
gotorepeatattk
goto ValkyrieGndAttkToIdle
Shouldn't the above code change the firing rate?