Create a GL and make it fire at that.
_unit doFire GLName
You could create several GLÂ's too. One for each plane to simulate targetting them one by one. then make a script that looks like this:'
_unit = _this select 0
_GL1 = _this select 1
_GL2 = _this select 2
_GL3 = _this select 3
_unit doFire _GL1
~1
_unit doFire _GL2
~1
_unit doFire _GL3
~1
exit
then save it as ShilkaTarget.sqs.
Then in the shilkas init-field type: [this, GLName1, GLName2, GLName3] exec "ShilkaTarget.sqs".
- where GLName1-3 is the names of the GLÂ's u are using. u will want to add movement of the GLÂ's to follow the planes and a loop to keep it firing. If u need help with that, i might be able to do it for u and attach it. well, if i forgot something, iÂ'm in a hurry, then just point that out.