Jump to content

Cougar133

Members
  • Posts

    91
  • Joined

  • Last visited

Everything posted by Cougar133

  1. not sure that the Tomcat will fit on the deck with its large wings :D
  2. très bon boulot ! enfin le CDG de retour sur la 2.5 :thumbup:
  3. i will try by deleting rudder assignments first :thumbup:
  4. My F18 is not flying correctly . i don't touched to the controls from the beginning of the runway , all long ... :huh: Wtf ?
  5. what file do i have to use ?
  6. yes i Did . make cool export to edm i put the edm in world/shapes of my aircraft but it never show transparency , even in the model viewer . where do you find your own glass file ?
  7. hey , thank you for these informations . i'm stucked in another level . i have a glass.dds i want to put on my canopy to mùake trasnparency . it works on 3Dsmax , but not in the game . i tried to put the file in bazar/temptextures , and in the texture folder of the aircraft but not succesfully . do you have an idea ?
  8. Je suis en train de faire des modifications dans les scripts LUA pour ajouter des paramètres sur l'avion F18 Voici mon exemple de test : * Fichier devices.lua -- TEST devices["TEST"] = counter()--60 * Fichier devices_init.lua -- TEST creators[devices.TEST] = { "avLuaDevice", LockOn_Options.script_path.."test_device.lua", {} } * Fichier main_init.lua -- TEST TEST_PARAM_GAUGE = CreateGauge("parameter") TEST_PARAM_GAUGE.parameter_name = "TEST_PARAM" TEST_PARAM_GAUGE.arg_number = 600 TEST_PARAM_GAUGE.input = {0,100} TEST_PARAM_GAUGE.output = {0,1} * Fichier test_device.lua local my_param = get_param_handle("TEST_PARAM") -- obtain shared parameter (created if not exist ), i.e. databus my_param:set(0.1) -- set to 0.1 local update_time_step = 0.1 make_default_activity(update_time_step) --update will be called 10 times per second function post_initialize() print("post_initialize called") end function update() local v = my_param:get() my_param:set(10) end function SetCommand(command,value) -- if command == 3001 then -- print("user click") -- end end --need_to_be_closed = false -- close lua state after initialization * Fichier Export.lua -- test local a26 = MainPanel:get_argument_value(600) ==> Mon problème est que je ne récupére pas la valeur 10 dans ma variable ? ==> j'ai toujours la valeur 0 alors que pour les autres arguments standard , cela fonctionne. ==> j'ai ajouté le device en dernier (60) est le dernier device ==> j'ai vérifié que le arg_number 600 n'existait pas ==> Puuvez-vous m'aider ?
  9. i'm not used with DLL files :noexpression: it seems to be to complex for me and i don't have the knowledge about it . DCS bios seems to be more easier to handle .
  10. i would like to build new flight instruments in Node JS or Java for my homebuilt cockpit . i will try your solution thanks .
  11. Hello ! I'm a little bit Lost ...with F18 . I'm Trying to extract some data from scripts , but i dont know what file to check . simple export.lua included in my DCS Folder ? / Scripts/export.lua or what about this file ? i don't understand https://github.com/s-d-a/DCS-ExportScripts/blob/master/Scripts/DCS-ExportScript/ExportsModules/FA-18C_hornet.lua i want to extract some simple data like AOA , Speed , altitude , heading , mach number , roll , pitch .. thanks :)
  12. Hi all ! Got an issue with civilian aircraft mod . Mine is not working . I put the files on DCS / Mods / aircraft with caucasus Map on 2.5 . . . And nothing happens . Even in mission editor . I Never see the civilian planes :( . The mod dont appears un module manager .. Help ?!
  13. what is your price to send to France ? including shipping
  14. Hi ALL ; i'm looking for a] FSSBR1.R2 or FCC joystick :thumbup: 350 / 500 euros shipping included thanks
  15. SOLD ?
  16. all exports are down since last update :( only VTB export view is ok ... any idea to fix it ?
  17. Hello guys , since last update , all my exports are down . only the Radar is visible , but i had to fix the position who has changed ... is there some modifications to add to retrieve all my views ( RWR , COM , PCA , PPA ... ) new lines to add to .LUA ? thank you !
  18. Yoda , do you think it is possible to add an ADI feature which was avalaible in older versions of LEAVU ... it was so great !
  19. is Hawgtouch compatible with Razbam Mirage 2000 ? I'd like to add a nice looking ADI for my homebuild cockpit ... i'm actually using MFCD_FC3 ADI , but it is ugly :cry:
  20. This is my Own homebuild cockpit , i wanted a much more modern fighter cockpit , based on Razbam M2000 ., with much more views than 2000C , i can use MFD and add other views in the future , like Failure Panel .....
  21. Hi all do you think it is possible to export/use the Mirage 2000 HUD/VTH on another Plane ? i ' m wondering to fly my Rafale cockpit , with French HUD and not the russian one ..
  22. Yup !! _ = function(p) return p; end; name = _('m2000C'); Description = 'VTB Export' Viewports = { Center = { x = 0; y = 0; width = 1920; height = 1080; viewDx = 0; viewDy = 0; aspect = 1.77777; } } M2000_VTB = { x = 2000; y = 0; width = 800; height = 768; } M2000_RWR = { x = 590; y = 1550; width = 230; height = 230; } M2000_COM = { x = 1290; y = 1500; width = 65; height = 50; } M2000_PCA = { x = 50; y = 1500; width = 320; height = 35; } M2000_PCAUR = { x = 50; y = 1500; width = 320; height = 35; } M2000_FUEL = { x = 1320; y = 1210; width = 40; height = 35; } M2000_FLR = { x = 50; y = 1200; width = 40; height = 30; } M2000_CHF = { x = 50; y = 1240; width = 40; height = 30; } M2000_PCNBR = { x = 560; y = 1790; width = 280; height = 30; } M2000_PCNUR = { x = 560; y = 1815; width = 300; height = 30; } M2000_PPA = { x = 320; y = 1210; width = 60; height = 60; } UIMainView = Viewports.Center
  23. i'm working on exports views ... love it ! :p
×
×
  • Create New...