Jump to content

vctpil

Members
  • Posts

    702
  • Joined

  • Last visited

Everything posted by vctpil

  1. Yes, I read the manual. That is my question : what are those circumstances of engagement ? I can use the CCIP normal mode for, like you said, shotgun approach, assault rifle and or sniper rifle. I can understand the purpose of the CR mode. If I need precision, I will prefer the CCRP mode, but it is not the subject of the thread. Thanks. PS : I have just saw a video of Matt, and it's better to use CCRP for TOSS attack.
  2. Sorry, but it is not clear at all. I'm going to try the same question in an other way. What I'm doing in 3/9 or 5 mil, I can also do it in CCIP normaml mode (unless TOSS attack). What are the particular situations we have to use the 3/9 and/or the 5 mil mode because the normal mode is not working (or not so efficient) ? Thanks.
  3. Hi guys, I have already lots of research on the forum or internet and covers the manual, but I cannot answer to that question : what is the difference between 3/9 and 5 MIL ? Or in which situation is best to use one instead of the other ? I tried all CCIP mode at different speeds and altitudes, but it is definitely not clear at all. Any table to describe the differences somwhere ? Thanks, Vincent
  4. Hi all, Because we always need a SPI to slave the sensors, I just need to use the china hat forward long (Slave sensors to SPI). Even the next steerpoint will become automatically a SPI. So, what is the function of the china hat aft long (slave sensors to steer point) ? Or which condition(s) lead to use the china hat aft long ? Thanks,
  5. Hi all, I have this bug also. I create a training missions, and the problem appears. It appears sometimes anyway. I just launched a quick start mission, and the problem didn't appears. Back to my training mission, and could be able to see the markpoint. This problem seems to appear without any logic. It could be very difficult to solve by the team. By the way, is someone knows how to erase a markpoint ? Thanks.
  6. Thanks a lot for the quick reply. Cheers
  7. Hi, I tried to follow your procedure, but my problem is the same. On a combine Wartog and Saitek rudder, the axis JOY RZ are configured for the both rudder and the left thrust lever. Any idea to solve the problem ? Notice that I don't have this problem with FSX. Thanks
  8. Hi all, I have just bought the Warthog and a Saitek Pro Flight Rudder Control, and I am trying to configure FC2. I don't understand how it works. By programming each flight controls in the option menu, the rudder is always associated with the left thrust lever on the same command : JOY RZ. How is it possible to dissociate the 2 controls ? Notice that the combine Warthog and Saitek works perfectly with FSX. Thanks, Vincent
  9. That doesn't work for me. I have had a look at define.tmh. I notice that the "Warthog throttle interface" are active (white) and the "Hotas Cougar interface" is preceded by // (green). As I an using the Cougar, do I have to change this configuration ? Thanks
  10. Hi, I tried to define my Cougar axis with TARGET and I wrote this script : MapAxis(&HCougar, JOYX, DX_X_AXIS); // Roll axis definition MapAxis(&HCougar, JOYY, DX_Y_AXIS); // Pitch axis definition MapAxis(&HCougar, RUDDER, DX_ZROT_AXIS); // Rudder axis definition MapAxis(&HCougar, THROTTLE, DX_Z_AXIS); // Throttle axis definition MapAxis(&HCougar, MAN_RNG, DX_SLIDER_AXIS); // MAN RNG/UNCAGE axis definition MapAxis(&HCougar, ANT_ELEV, DX_THROTTLE_AXIS); I still have to write the microstick script. The line concerning the ANT ELEV does not works. Anybody have an idea to solve the problem ? Thanks.
  11. Hi everyone, I started to study the TARGET manual, and I tried some code line. I have a problem with the first example : MapKey(&Joystick, TG1, 'a'); In the tester, I suppose to have 'a' in the event column. But I have 01 !?! How is it possible ? This is the complete prog (new prog wrote manually) : include "target.tmh" int main() { if(Init(&EventHandle)) return 1; MapKey(&Joystick, TG1, 'a'); } int EventHandle(int type, alias o, int x) { DefaultMapping(&o, x); } Thanks.
  12. Really more understandable like that. And complicated for me anyway. Thanks a lot.
  13. Hi again, This prog works, but very obscur for me. BTN S1 KD(X1) DLY(1000) KU(X1) DEF X2 DELAY(100) S1 NOT X1 DEF X3 X1 NOT S1 BTN X2 h BTN X3 a Give : a if press-release h if press-hold-release after 1 second BUT : Because BTN S1 KD(X1) DLY(1000) KU(X1) is associated with DEF X3 X1 NOT S1 (taking account the delay I suppose) and BTN X3 a so, the "h" appear (not the "a" !?!). What is the logic ? Thanks
  14. Hi, That works perfectly, thanks very much for the prog. There is only a syntax error concerning the delay function. Here is the correction : BTN S1 KD(X1) DLY(1000) KU(X1) DEF X2 DELAY(100) S1 NOT X1 DEF X3 X1 NOT S1 BTN X2 h BTN X3 a Thanks again.
  15. Hi everyone, Because what is logic for me and not logic for the cougar (!), here is a little prog : DEF X1 DELAY(1000) S1 DEF X2 S1 AND NOT X1 DEF X3 S1 AND X1 BTN X2 h BTN X3 a When I push, the "h" is displayed. When I release after 1 second, the "a" is displayed. I would like to avoid the "h" if I hold the button. This language is absolutely obscur for me. How can I work this function ? Thanks.
×
×
  • Create New...