Jump to content

F/A-18C with SIOC


coolhands

Recommended Posts

Hello I tried to run the BS export with the F18 but now I only have LEDs that work. Apparently the F18 is not coded as the A10 or BS for commands. If anyone knows the language lua and can look what's wrong would be nice. Here is my export: The export folder is put at the root of the game in the

config folder and the export file in users / saved games / dcs / scripts.

 

https://www.fichier-zip.com/2018/09/08/exportcoolhands/

Link to comment
Share on other sites

Good after with met Gilledrones I continued to search and I finally managed to make the controls and the lights work. For the moment it's the simple switchs that works if someone gets to run the ON-OFF-ON, I'm taker. In the meantime here is the EXPORT that works with the SIOC and the F18 DCS.

 

https://www.fichier-zip.com/2018/09/24/exportgaze/

Link to comment
Share on other sites

Ok i found the solution:

 

 

Var 1081, name Rej_switch     // REJ SWITCH

Var 0561, name Rej_norm_rej1, Link IOCARD_SW, Input 122     // REJ NORM/REJ1
{
 IF &Rej_norm_rej1 = 1
 {
   &Rej_switch = 3    
 }
 IF &Rej_norm_rej1 = 0
 {
   &Rej_switch = 2    
 }
}

Var 0562, name Rej_rej1_2, Link IOCARD_SW, Input 123     // REJ REJ1/REJ2
{
 IF &Rej_rej1_2 = 1
 {
   &Rej_switch = 1    
 }
 IF &Rej_rej1_2 = 0
 {
   &Rej_switch = 2    
 }
}

 

 

[1081] = {SimpleRotary, 34, 1},--NORM/REJ 1/REJ 2

 

 

function SimpleRotary(pValue, pDevice, pNumber)

GetDevice(pDevice):performClickableAction(pNumber + 3000,(pValue - 1)/10)

end

 

 

 

I found a another problem with FLAPS switch it was not functionnaly

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...