Hi I have problem with my WD T-80U since they fire missile and gun at once...
Can someone teach me how to make them fired in interspersed fashion ?
I means, real T-80 standard munition are 2 missile and 4 'sabot' or (more often) 1 missile and 5 'sabot' on autoloader So I want it to fire missile first, then gun for 5 turn and then missle again and done 5 gun again, with same interval between them....
how to do this ?
interspersing munition
Moderator: Moderators
Code: Select all
static-var shot, ready;
AimWeapon1()
{
[aiming stuff]
if (shot < 3 && ready)
{
ready=0;
return 1;
}
else return 0;
}
FireWeapon1()
{
[shooting stuff]
sleep RELOAD_TIME;
++shot;
ready=1;
}