Jump to content

b0rnkilla

Members
  • Posts

    18
  • Joined

  • Last visited

About b0rnkilla

  • Birthday 11/05/1989

Personal Information

  • Flight Simulators
    DCS World
  • Location
    Germany
  • Interests
    DCS World in VR and Scripting
  • Occupation
    Dispatcher (Limousine Service)

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Wow, OK, I got it working with Blender 4.2 and EDM Exporter version 241504, but there's one thing I hadn't even considered: I can only export EDM files, not import them. Is there a way to import EDM files into Blender? My goal is to make some of the existing 3D vehicle models transportable as cargo.
  2. @tobi my apologizes,... I'd better put on my glasses before next time... @J-1775 would you be able to share version 247916 please? it's not listed in the given URL
  3. I tried to install the addon with Blender 2.8, but when I try to activate it, it gives me an error
  4. Okay, if I understand correctly, ED will soon be releasing its own exporter tool. But it's a shame that the OH-6 project is currently shut down. That was great work by Tobi and Eightball. But thank you anyways. with the files list postet by @tripod3 I'm able to give it a try Thanks Guys
  5. Hi Guys 'n Girls, can anyone of you share the current version of the EDM Exporter for Blender? All links are currently offline... I want to start creating own mods for DCS, with own 3D-Models... I would appreaciate your help very much!! best regards, Chris
  6. I've now been able to reduce the number of static objects in a FARPS from around 400 to 170, thus reducing the total number in my mission (with 8 FARPS) from around 3200 to 1360. Why all this effort and not just use the Desert FARP Mod? Because everyone who wants to join the server will need the mod, and I want to keep compatibility high and the number of mods as low as possible. Currently, I only require the Community A-4E in my mission, but that's common on many servers. I think the current middle ground is a good one, and the FARPs still look good, just not as detailed as before. FARP_TestMission_compact.miz
  7. Because it's still not optimized. It looks great, yes, but... 400 static objects for one single FARP is too much. My Mission currently has 8 of those FARPs... which is a total of 3200 static objects... Even my dedicated server with 64 GB RAM is not able to handle this,... The DCS-Engine just doesn't seem to be made for it. Anyways I've attached the mission file. Feel free to use it and modify it by your own. At the moment, I check alternative ways (decreasing amount of static objects and stuff like this). I'll try this tomorrow, hopefully this is the version I'm looking for (with desert 4-slot farp). If so, I could go back to one of my mission-backups and simply switch the ugly greenish 4-slot farps with the desert ones. FARP_TestMission.miz
  8. ...nevermind, I've build my own FARP-Template ^^
  9. ....nevermind... I've build my own FARP-Template ^^
  10. can someone please share a working version of the "Desert Farp (by Suntsag)" -Mod ? the fixed one, where the 4-slot farp is actually in desert colors
  11. @SUNTSAG would you pleeeease like to re-upload a working version of your FARP Desert Mod? The one, where the 4-Slot FARP is working. appreciate
  12. @SUNTSAG or @Rudel_chw kindly ask you to re-upload current version of the farp desert mod. the one, where the 4-slot-farp texture is fixed. pleeeease @Rudel_chw the version you uploaded on Oct.9th, 2022, the 4-slot-farp is still the ugly green version
  13. very sad to see that after about one year still nobody replied to my post... seems like no one knows how to help with this issue.
  14. very sad to see that after about one year still nobody replied to my post... seems like no one knows how to help with this issue.
  15. Hi @ all I could solve the Problem by my own and want to share the solution with you. So if you have multiple Server Instances running and you want to have access to the Witchcraft Luaconsole for each Server Instance you have to do following steps: 1. MissionScripting.lua Path: C:\Program Files\Eagle Dynamics\DCS World OpenBeta Server\Scripts Add the following code before the "function sanitizeModule" is defined: witchcraft = {} dofile(lfs.writedir()..[[scripts\witchcraft.lua]]) 2. Witchcraft.lua Path: C:\Users\your_name\Saved Games\your_DCS_instance\Scripts Find the Line inside the "function witchcraft_start(mission_env_)" witchcraft.conn:connect(witchcraft.host, witchcraft.port) and add "--" in front of it, so that it looks like this: --witchcraft.conn:connect(witchcraft.host, witchcraft.port) Add a new Line and add following code: witchcraft.conn:connect("localhost", 3001) Instead of "3001" you can write down any port you want that witchcraft is listen to. Then find the Line witchcraft.log = witchcraft_log and create a new line after it and add the following code: witchcraft.start(_G) It should finally looks like attached picture "Witchcraft-lua.jpg". 3. server.js Path: C:\Users\your_name\Saved Games\your_DCS_instance\Scripts\dcs-witchcraft-master\src\backend Find the Line var port = 3000; and change the port to whatever you want to open the luaconsole with. For exampe, you changed it to 3002, so you have to open the luaconsole in your browser via: "http://localhost:3002/" Scroll down in the server.js and find the Line }).listen(3001); and change the port to the same port as you have written down in the Witchcraft.lua Finally it has to look like the attached picture "server-js.jpg". 4. witchcraft.cmd Path: C:\Users\your_name\Saved Games\your_DCS_instance\Scripts\dcs-witchcraft-master\windows Start the "witchcraft.cmd" 5. Lua Console Open your Browser and call the Lua Console via: "http://localhost:yourport/" et voilà! Repeat above shown steps for each of your Instance-Folders (located in your Saved Games Folder. Please note, that you do not need to add "witchcraft.start(_G)" in a mission trigger anymore! I have three Server Instances running with Witchcraft and have access to each Luaconsole. For example, I've done it as follows: Instance0: Luaconsole Port: 3000 Port to listen to: 3001 Instance1: Luaconsole Port: 3002 Port to listen to: 3003 Instance2: Luaconsole Port: 3004 Port to listen to: 3005 Remember to start the "witchcraft.cmd" in each instance-folder for each instance! Greetings and happy flying
×
×
  • Create New...