Greetings! I have tried to make the IFA3 Panzer VI - Tiger 1 Tank fire at buildings/bunkers/etc. with no luck... Here are some of the scripts I have used:
---------------------------------------------------
SAMPLE NO.1:
[invisible helipad: "TGT_1"]
---------------------------------------------------
_tank = TIGER_1
_tank doWatch (getPos TGT_1);
_tank doTarget (getPos TGT_1);
_tank fire ((weapons TIGER_1) select 0);
___________________________________________________
*****************************************************
------------------------------------------------------------------------------------------------------
SAMPLE NO.2:
[System marker: "cannon1"]
[Renamed tank gunner: "GUNNER_TIGER_1"]:
------------------------------------------------------------------------------------------------------
tank = TIGER_1
GUNNER_TIGER_1 doWatch markerpos"cannon1";
GUNNER_TIGER_1 doTarget markerpos "cannon1";
GUNNER_TIGER_1 fire ((weapons TIGER_1) select 0);
___________________________________________________
*****************************************************
------------------------------------------------------------------------------------------------------
SAMPLE NO.3:
------------------------------------------------------------------------------------------------------
_tank1 = tank1;
_tank1 lookAt markerPos "building1";
_tank1 fire ((weapons tank1) select 0);
------------------------------------------------------------------------------------------------------
....ei guys.............any advice with script to make it work? ....I have tried looking for the classnames of Tiger tank (main cannon) /weapons, but came out blank with it, can you guys help me cook up some script?