Jump to content

Recommended Posts

Posted

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/

Posted

You know what values of the three pos switch DCS requires ?

(I don't have the Hornet module). It 's normaly found within clickabledata.lua of the module.

 

Post a copy of your ExportSupport.lua and your 'sioc.ssi' file in text format

- - - -

Posted

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

  • Recently Browsing   0 members

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