Jump to content

Veteran66

Members
  • Posts

    435
  • Joined

  • Last visited

Everything posted by Veteran66

  1. Max 2021 do not have Standard Material, other Materials do not work after Make Cool and export as edm file, the shapes have only 1KB
  2. Historical Magnetic Declination: https://maps.ngdc.noaa.gov/viewers/historical_declination/
  3. yes i try all,"Make Cool for the edm export and Blend or Alpha Test in the Settings.
  4. i try all settings, no Alpha in DCS Game, you have a sample file for me
  5. in 3Ds Max it is transparent, in DCS Editor not see pictures
  6. Hi all i use 3DS Max 2016, my objects have no Alpha channel in DCS game. So how i must make it? Amy samples or Instructions here?
  7. in the Trigger Editor in Actions, load a dummy sound file and than after save the Mission your sound file. sometime the Missions scrips do not overwrite the "old" sondfile with the "new" one (same name)
  8. danke dir funktioniert jetzt es waren zwei 3D Modelle von mir in den Saved Games\DCS.openbeta Ordner
  9. Hallo ich wollte auf mich auf dem Storm of War server einlocken bekomme aber die Meldung "Client ist modifiziert" diese Meldung kommt auch nach bereinigen meines DCS open Beta Install. habe dazu .\DCS_updater.exe cleanup und .\DCS_updater.exe repair durchgeführt. meine Mods wurden erkantn und gelöscht, was muß ich noch machen?
  10. Hi, it work fine for "Player", how i can add "Groups with Name"?
  11. hi all i find this script, it work fine for "Player", how i can add "Groups with Name"? -- Advanced Tools for Mission Editor -- Generic Areas sound module local thisModule local moduleName = "SoundInAreas" -- Sound player of area, can be a blanck sound file (no noise, but here squelsh) -- if duration <= 0 just played once -- Necessary local outOfArea = { file = "squelsh.ogg", duration = -1, } -- List of sounds one per area, indexed by dcs zone name (in that mission Z1 and Z2) -- if duration <= 0 just played once local myAreas = { ["Z1"] = { file = "fifteen.ogg", duration = 2, }, ["Z2"] = { file = "thousand.ogg", duration = 2, }, } local function outOfAreaPlay(player) if outOfArea.duration > 0 then player:soundStart(outOfArea.file, outOfArea.duration) else player:soundStop() player:soundOnce(outOfArea.file) end end local function onTimer(events) for _id, _ in events:pairs() do if events:isCoreEvent(_id) == true then local typeEvent = events:getCoreEventType(_id) if typeEvent == "AREA_AIRCRAFT_ENTERS" then local datas = events:getCoreEventDatas(_id) if myAreas[datas.area:getName()].duration > 0 then datas.unit:soundStart(myAreas[datas.area:getName()].file, myAreas[datas.area:getName()].duration) else datas.unit:soundStop() datas.unit:soundOnce(myAreas[datas.area:getName()].file) end elseif typeEvent == "AREA_AIRCRAFT_LEAVES" then local datas = events:getCoreEventDatas(_id) outOfAreaPlay(datas.unit) end end end end local function onCreatePlayer(player) -- Add tracking to new player local found = false for _zoneName, _myArea in pairs(myAreas) do _myArea.area:setAircraftTracking(player) if player:isInArea(_myArea.area) == true then found = true end end if found == false then outOfAreaPlay(player) end end local function onStart(areUnitsAndPlayersInitialized) if areUnitsAndPlayersInitialized == false then for _zoneName, _myArea in pairs(myAreas) do if ATME.getDCSZone(_zoneName) ~= nil then _myArea.area = thisModule:createNamedArea(_zoneName) _myArea.area:add(_zoneName) end end end end -- MAIN do local newHandlers = { onCreatePlayerHandler = onCreatePlayer, onDeletePlayerHandler = nil, onUpdatePlayerHandler = nil, onTakeoffPlayerHandler = nil, onLandingPlayerHandler = nil, onStartEnginePlayerHandler = nil, onStopEnginePlayerHandler = nil, onCreateAIUnitHandler = nil, onDeleteAIUnitHandler = nil, onDisableAIUnitHandler = nil, onTakeoffAIUnitHandler = nil, onLandingAIUnitHandler = nil, onStartEngineAIUnitHandler = nil, onStopEngineAIUnitHandler = nil, onCreateGroupHandler = nil, onDeleteGroupHandler = nil, onDisableGroupHandler = nil, onCreateStaticObjectHandler = nil, onDeleteStaticObjectHandler = nil, onTimerHandler = onTimer, onModuleStartHandler = onStart, } thisModule = ATME.C_Module(moduleName, newHandlers, true) end Link:
  12. DCS need Level Bomber, Fighter Bomber we have enough. With Level Bomber we have more Strategic gameplay, i am Sure many Flightsimulations Fans will fly Bomber in DCS.
  13. Look what Planes we have and make Maps for it
  14. Hi i use the Gladiator nxt GNX Premium Joystick with Ministick https://flightsimcontrols.com/product/gladiator-nxt/ the Ministick work fine with Opentrack 2.3.11 Beta (other Opentrack Versions work not fine) so you can look arround with the Ministick
  15. Bf 109 G6 is must have Ju88 is will have
  16. look this Video, the Compass rotate like in game (cool engine sound)
  17. Hi all i need a "Unit in Zone Scripts" (no MIST or MOOSE) Zone1 + ZoneA + Flag1 = Flag100 after Flag100, Zone1 and ZoneA are active again. so i can make a Coordinate grid with the new quard Trigger Zones, after send a F10 Call (Flag1) and the player plane is in Zone1 and ZoneA it fire a position Radio message
  18. Hi all i use the \Mods\tech\CombinedArms\Cockpit\DriverCockpit how i can set the Camera View Angle in the lua script? and where i can find the Commander sight script see screenshot (B for binoculars and than F2) it is not in the \Mods\tech\CombinedArms\Cockpit folder.
  19. My Script ist OK, with 3ds Max it work now
  20. Hi all i use 3Ds Max 2021 with edm-plugins-180514.exe where i find the DCS Mod Tools, where show in the Video, in 3Ds Max 2021?
  21. Animation Argument for turret is 0 i have it the rotation animation work fine but not my mouse control for the gun
  22. Hi all i use Blender 2.9 and try to make a Panzer turret animation. i try all rotation and Key settings. The Panzer Turret in DCS Game turn like a wheel i can start the rotation with the mouse axis but the turret turn self no mouse direct control. what animations settings i need for mouse controled objects like Flystick, Turret, Gun..... in game?
  23. thx, yes and simple Object to DCS
  24. Hi all i switch from Blender 2.9 (some animations do not work in DCS) to 3Ds Max, any first step pdf tutorials here?
×
×
  • Create New...