-
Posts
91 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Cougar133
-
i will try by deleting rudder assignments first :thumbup:
-
My F18 is not flying correctly . i don't touched to the controls from the beginning of the runway , all long ... :huh: Wtf ?
-
Please help with glass material setting..
Cougar133 replied to MrBiggs's topic in 3D Modeling for DCS World
-
Please help with glass material setting..
Cougar133 replied to MrBiggs's topic in 3D Modeling for DCS World
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 ? -
Please help with glass material setting..
Cougar133 replied to MrBiggs's topic in 3D Modeling for DCS World
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 ? -
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 ?
-
How / Where to extract some Data from F18 ?
Cougar133 replied to Cougar133's topic in How To Mod for DCS World
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 . -
How / Where to extract some Data from F18 ?
Cougar133 replied to Cougar133's topic in How To Mod for DCS World
i would like to build new flight instruments in Node JS or Java for my homebuilt cockpit . i will try your solution thanks . -
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 :)
-
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 ?!
-
what is your price to send to France ? including shipping
-
Hi ALL ; i'm looking for a] FSSBR1.R2 or FCC joystick :thumbup: 350 / 500 euros shipping included thanks
-
all exports are down since last update :( only VTB export view is ok ... any idea to fix it ?
-
A sneak peak of .. Leavu3
Cougar133 replied to RvEYoda's topic in Utility/Program Mods for DCS World
Yoda , do you think it is possible to add an ADI feature which was avalaible in older versions of LEAVU ... it was so great ! -
HawgTouch - Free Panels & Gauges for A-10C
Cougar133 replied to ClearDark's topic in PC Hardware and Related Software
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: -
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