Jump to content

blaueente

Members
  • Posts

    246
  • Joined

  • Last visited

Everything posted by blaueente

  1. Where are these thingies that kept me (not-)browsing the forum for hours ? Regards
  2. Did it. Had it anyways so just had to modify it. Very simple but effective enough : @echo off ren "C:\Users\...PATH...\dcs.log.old" "DCS LOG - %date:-=-% %time::=-%.log" d:\cmd.exe /C start /affinity 4 dcs.exe Greetings blueduck
  3. Machbar ist es definitiv. Allerdings würde ich mir einen überschaubareren Rahmen stecken und nicht direkt Vollgas mit einem Kampfjet oder Scalenachbau beginnen. Lieber etwas unkompliziertes an dem sich grundlegende Avionik anschaulich erklären lässt. Sprich Basics ala Motorsturz, Schwerpunkt, Achsen inkl. zugehörige Ruder, Flächenprofil etc. Hier kommen vor allem Nurflügler bzw Hochdecker ( zB Cessna) in Frage, auch was die Fliegbarkeit angeht. Alles in allem bieten sich für die grobe Richtungswahl allerdings primär RC Foren an. Dort sollte reichlich Wissen und Erfahrung zur Materie vorliegen ;) MfG Ente
  4. Mal ne ganz andere Frage : Läuft der Zauber dann auf Linux oder immer noch auf Windows? Im Newsletter steht ja irgendwas von einem Web-GUI .... mfg ente
  5. Is there any way to force DCS to not overwrite logfiles ? And even better... name them with some sort of timestamp ? Regards blueduck
  6. I think that's just a position / system of coordinates that's origin lies somewhere in the center of the map. has nothing to do with lat/long or mgrs. Cheers
  7. I increased that to 300 sec's ... Sometimes DCS needs very long on startup and ROC try's to start another instance.
  8. That's correct but as far as i know there is no ohter way to do it. Maybe if you write your own little json script so that dcs can talk with the os and vice versa. Never done this myself. Either we run one mission 24/7 or switch every 6 to 8 hours. In both scenarios timed triggers are the easiest way to achieve this. Cheers
  9. This can be achieved through Triggers in the Mission.Just set it up to send a message to all after a set time, just before the restart. Maybe plan ahaed and repeat in 5min intervals... Greetings
  10. Hi. I kill dcs.exe through planned Tasks every day and have it restarted by one of the little programs mentioned by ciribob. Works flawlessly for more than two years now. Dont forget to setup the delay properly, because dcs won't respond during the start process, ie is considered crashed. Exactly this lil' tool Cheers Ente
  11. Thanks Delta99 , now it's working properly. Maybe i dont understand the meaning of the word 'prefix' ;) Greetings
  12. 2018-06-17 15:42:30.082 INFO SCRIPTING: 10153( 10468)/E: DATABASE00003.AddGroup({[1]=Add GROUP:,[2]=IRA_CAP MiG-29A #2,}) 2018-06-17 15:42:30.082 INFO SCRIPTING: 10473( 9832)/E: DATABASE00003._RegisterGroupsAndUnits({[1]=Register Unit:,[2]=Pilot #018,}) 2018-06-17 15:42:30.082 INFO SCRIPTING: 10467( 9832)/E: DATABASE00003._RegisterGroupsAndUnits({[1]=Register Group:,[2]=IRA_CAP MiG-29A #1,}) 2018-06-17 15:42:30.082 INFO SCRIPTING: 10153( 10468)/E: DATABASE00003.AddGroup({[1]=Add GROUP:,[2]=IRA_CAP MiG-29A #1,}) A few lines later : 2018-06-17 15:42:30.126 ERROR DCS: Mission script error: : [string "C:\Users\BLAUEE~1\AppData\Local\Temp\DCS\/~mis0000361E"]:20532: SPAWN:New: There is no group declared in the mission editor with SpawnTemplatePrefix = 'IRA_CAP' What now ?!
  13. Bei mir verhält es sich so, dass es immer wieder nach unterschiedlicher Zeit abstürzt, wenn die Kamera über einen USB-Verteiler angeschlossen ist. Direkt am Mainboard (mit Verlängerung) keine Probleme.
  14. Nope. That's the name displayed in the spectators list. So the Host itself is represented as a Client in DCS, just name it something like 'Server Admin' or so... Greetins
  15. Hi I need some advice on getting A2ADispatcher working on PG Map. I simply edited the provided Demo Script to get used to it, but it's not spawning anything. Templates are set correctly as Late Activation. DetectionSetGroup = SET_GROUP:New() DetectionSetGroup:FilterPrefixes( { "IRA_SAM", "RUS_A-50" } ) DetectionSetGroup:FilterStart() Detection = DETECTION_AREAS:New( DetectionSetGroup, 60000 ) A2ADispatcher = AI_A2A_DISPATCHER:New( Detection ) A2ADispatcher:SetTacticalDisplay( true ) IRABorderZone = ZONE_POLYGON:New( "IRA_Border_Dummy", GROUP:FindByName( "IRA_Border_Dummy" ) ) A2ADispatcher:SetBorderZone( IRABorderZone ) A2ADispatcher:SetEngageRadius( 80000 ) A2ADispatcher:SetSquadron( "Qeshm", "Qeshm Island", { "IRA_CAP" }, 20 ) A2ADispatcher:SetSquadron( "Havad", "Havadarya", { "IRA_CAP" }, 20 ) A2ADispatcher:SetSquadron( "LarAB", "Lar Airbase", { "IRA_CAP" }, 20 ) A2ADispatcher:SetSquadronOverhead( "Qeshm", 1 ) A2ADispatcher:SetSquadronOverhead( "Havad", 1.5 ) A2ADispatcher:SetSquadronOverhead( "LarAB", 2 ) A2ADispatcher:SetSquadronGrouping( "Havad", 2 ) A2ADispatcher:SetSquadronGrouping( "Qeshm", 1 ) A2ADispatcher:SetSquadronGrouping( "LarAB", 2 ) A2ADispatcher:SetSquadronTakeoffFromRunway( "Qeshm" ) A2ADispatcher:SetSquadronTakeoffFromRunway( "Havad" ) A2ADispatcher:SetSquadronTakeoffFromRunway( "LarAB" ) A2ADispatcher:SetSquadronLandingAtRunway( "Qeshm" ) A2ADispatcher:SetSquadronLandingAtRunway( "Havad" ) A2ADispatcher:SetSquadronLandingAtRunway( "LarAB" ) CAPZoneMiddle = ZONE:New( "IRA_CAPZONE #1") A2ADispatcher:SetSquadronCap( "LarAB", CAPZoneMiddle, 4000, 8000, 600, 800, 800, 1200, "RADIO" ) A2ADispatcher:SetSquadronCapInterval( "LarAB", 2, 30, 120, 1 ) CAPZoneMiddle = ZONE:New( "IRA_CAPZONE #2") A2ADispatcher:SetSquadronCap( "Qeshm", CAPZoneMiddle, 4000, 8000, 600, 800, 800, 1200, "RADIO" ) A2ADispatcher:SetSquadronCapInterval( "Qeshm", 2, 30, 120, 1 ) CAPZoneMiddle = ZONE:New( "IRA_CAPZONE #3") A2ADispatcher:SetSquadronCap( "Havad", CAPZoneMiddle, 4000, 8000, 600, 800, 800, 1200, "RADIO" ) A2ADispatcher:SetSquadronCapInterval( "Havad", 2, 30, 120, 1 ) A2ADispatcher:SetSquadronGci( "Qeshm", 900, 1200 ) A2ADispatcher:SetSquadronGci( "Havad", 900, 2100 ) A2ADispatcher:SetSquadronGci( "LarAB", 900, 1200 ) --CleanUp = CLEANUP_AIRBASE:New( { Bandar Lengeh } ) Greetings Ente Edit : Or do I need to enter the whole Name of the Template, not just a prefix ?
  16. 4.0.0.8 ist der Status des A10 internen INS nach erfolgreichem Alignment. Die CBU103 und 105 haben ein internes, eigenständiges INS. Auf dieses bezog sich meine Aussage. Dass das nicht mit "Invalid Fuzing" in Verbindung steht ist mir durchaus bewusst. Jedoch kam ich nicht umhin aufgrund Sperrfeuers Vermutungen, seine hektischen Ausweichmanöver hätten das verursacht, darauf hinzuweisen dass ein paar G's da keine, beziehungsweise eher noch positive Auswirkungen haben ;) MfG Ente
  17. Indirekt Themenverwandt: Eher das Gegenteil ist der Fall... Bei zu langem Geradeausflug (Autopilot) bzw. fehlender Bewegung gerät das INS der CBU's in einen Zustand der Orientierungslosigkeit. Hier helfen ein paar Kurven oder anderweitige Manöver das Problem zu beseitigen. Fehlermeldung : "ALN UNS" MfG Ente
  18. You can also place the bigger aircrafts as 'Start from Runway' if there are no suitable parking slots available. Not ideal, maybe spawning directly in the air would be more useful. If you just want something to look at, simply set as a static object, that'll also save some ressources. Cheers
  19. Test it out. If it's not working/functioning simply repair/copy back. Greetings
  20. Not. Even a single player should be able to vote himself what he wants if he is no admin. Would be nice. Maybe also changeable through chat command if doable. Would be handy. According to how long the vote is planned to last. 30sek vote // 3sek timer top right corner. what one votes should only be displayed in chat Should be integrated in the timer in top right corner, just displaying these which already got votes too much. can banned ones even join the server ? two ways : either a fixed list extra for voting or a random list, generated from content of mission folder. for me personally not rly neccessary, always cleaning up the mission folder ;) Nope. BUT some clear indication in which theater the voted map is taking place. also...what to do with the folks who don't own the next map ?! not neccessary. maybe as an option. map rotation functions just fine in dcs with triggers. Greetings blue
  21. Try to don't let ur server run for so long (according to log ~48h). Kill dcs.exe every 24h and restart it for example with ciribob's script. Also there are problems with talking to the master server in the end, so the server isn't listed anymore. regards ente
  22. Jup. Auch stark abhängig von der Anzahl der Einheiten in der Mission die im MP naturgemäß deutlich erhöht gegenüber SP-Missionen ist. MfG Ente
  23. Um in die Achseinstellungen (Deadzone, Expo etc) zu kommen muss man zuallererst einmal eine Achse eines bestimmten Gerätes auswählen. Meine Frage wäre nun ob wirklich im Achsenmenü versucht wurde die Pedale zu belegen. Als Taste in der Schalterbelegungsliste lassen sich diese nämlich nicht binden. MfG Ente Edit : Die eigentliche Frage ist ja bereits von 2014 :D Immer diese Leichenfledderei ...
×
×
  • Create New...