Jump to content

Marsy

Members
  • Posts

    66
  • Joined

  • Last visited

Everything posted by Marsy

  1. Sounds very good. Looking forward to the new tool! Can you please add the feature to add lines to exisiting files? This would be a needed feautre for liveries that uses the textures folder. You need to add a line to the autoexec.cfg file in Saved Games\DCS\Config for each zip file you have in Saved Games\DCS\Textures so DCS imports the textures at the start of the game. Of course I could add a mod that changes only this file - but if you want to install additional skins/liveries from other authors/repositorys/etc that file would not have the correct content. That's why I suggest to let a mod add a line to a existing file. Keep up the good work! Marsy
  2. My final Version of my fictional German Marineflieger Camo (inspired by MFG-1 Tornado Norm 76) for my Virtual Wing (vJaBog32)
  3. Thanks for the great Decals!
  4. Will check that out, thanks for pointing me to that thread :)
  5. @59th_Ravens! w00t, you are really fast. Thank you very much. Anybody got the "stock" decals (like jet engine warning, ejections seat, panel numbers, etc) for me?
  6. Thanks a lot! Does anybody knows which file i need to edit to change the colour of the front nozzel? @59th_RAVENS Is that possible that you provide a template for that aswell?
  7. I know that there isn't one, thats why I'm asking to release the missing parts too. @Timghetta / RAZBAM Can you please release the missing parts (Pylons, Nozzels, Pilot, etc) too? I think that would be appreciated a lot by all those talented people that showed us some very nice liveries. Here's the current version of my fictional German Marineflieger Camo (inspired by MFG-1 Tornado Norm 76) for my Virtual Wing (vJaBog32)
  8. Working on a fictional German Marineflieger Camo (inspired by MFG-1 Tornado Norm 76) for my Virtual Wing (vJaBog32). Decals are missing, will be added in the next few days. @Timghetta / RAZBAM I'm missing the Paintkit for the Pylons - Can you please release that and the other missing parts (Nozzels, Pilot, etc) too? That would be awesome! Thanks, Marsy
  9. Also looking for the Paintkit. The weekend would be great to create some cool new liveries :)
  10. Marsy

    Paint Kit

    I second that, would be very nice to have a paint kit ready. Would take the masters (like Heatblur did with the Viggen) files aswell, if no kit is available.
  11. Same here with the CV1 Rift with i7-6700k@4.5ghz and a Gigabyte G1 Gaming 980Ti. FPS are way lower in the Viggen as in the other A/Cs
  12. Thanks for the clarification :)
  13. Any Chance that we might see an AGM-88 and/or AGM-84 on this beauty?
  14. Dear LNS, if its possible I would really appreciate that you change the name of RB24, RB24J, RB74 and RB05A. What i mean is the name that identifys the weapon in script usage - They all report as "ROBOT". So at the moment it's not possible to distinguish between the 4 weapons mentioned above. We would really like to have different names, so we can use that in our scripts. For expample we are using a script that tracks the amount of weapons used, and that we use to implement some "economic simulation". Thanks for the great work with the Viggen!
  15. Would really like to start working on a livery for my squadron, but sadly there's no PSD template yet :( Any news on that Cobra?
  16. When joining in a CA Vehicle, like a Tunguska, moving your head around feels very unnatural, as you don't look around (like in a aircraft). Can we get this fixed, so you can look around like in a aircraft? At the moment its nearly unusable for me, and i need to start DCS in non VR mode when i want to use CA Vehicles. Thanks, Marsy //EDIT: I'm using the Rift CV1
  17. Hi DArt, thanks for your reply. We were using 1.0.0 We willl check out rc4 :) Thanks again!
  18. Is there a Guide or something that i can follow? We only have this problem from time to time, and basically using the same .miz as a template. So Radar Units should have been available.
  19. Yesterday we tried to do some ATC Training with LotAtc. After restarting the server, we where not able to see any Aircraft in LotAtc (using realistic settings). The missions has some radar station for our side and we also had an AWACS in the air, but still no contacts in LotAtc. Any suggestions?
  20. Hi Ian, dein Codebeispiel klappt. Wenn ich dich jetzt richtig verstehe ist die SevenSeg Libary aber eigentlich ungeignet, weil zu lahm. Was sind denn die alternativen die man nutzen kann? Die beiden Displays die ich jetzt befeuere sind eigentlich nur der Anfang. Ich hatte insgesamt n paar mehr Anzeigen zu betreiben (6-9 Stück). Das wird dann ja vermutlich mit der bestehenden Bibliothek nicht klappen, oder? Gruß und vielen Dank für deine Hilfe, Marsy
  21. Funktioniert nur wenn ich den ganzen SevenSeg Kram nicht im Sketch habe. Danke für dein Einsatz und deine Hilfe!
  22. Hab probiert es zu entfernen, ging bei der alten DCS-BIOS Version von mir nicht. Hab deshalb auf 0.5.0 und Lib 0.2.3. gewechselt. Leider zeigt das Dispaly immer noch nichts an :( Hier mein Code (ich nutze ein Uno): #include <SevenSeg.h> /* Tell DCS-BIOS to use a serial connection and use interrupt-driven communication. The main program will be interrupted to prioritize processing incoming data. This should work on any Arduino that has an ATMega328 controller (Uno, Pro Mini, many others). */ #define DCSBIOS_IRQ_SERIAL #include "DcsBios.h" /* paste code snippets from the reference documentation here */ SevenSeg disp(11, 10, 9, 8, 7, 6, 5); const int numOfDigits = 2; int digitPins[numOfDigits] = {4, 3}; void onUhfPresetChange(char* newValue) { disp.write(newValue); } DcsBios::StringBuffer<2> uhfPresetBuffer(0x1188, onUhfPresetChange); void setup() { DcsBios::setup(); disp.setDigitPins(numOfDigits, digitPins); disp.setCommonCathode(); disp.setTimer(2); disp.startTimer(); } void loop() { DcsBios::loop(); } ISR(TIMER2_COMPA_vect){ disp.interruptAction(); }
  23. Hi Ian, ich bekomm es mit DCS und der SevenSeg Libary nicht hin. Die libary ohne DCS-BIOS läuft super, aber mit DCS-BIOS habe ich Probleme. Ich habe mal beide Sketches angehängt: sevseg ist der Sketch ohne DCS-BIOS der bei mir funktioniert. DCS-7Segements ist der Sketch mit DCS-BIOS der nicht klappt :( Ich bin mit meinem sehr bescheiden Arduino Latein echt am Ende und hoffe das du oder jemand anderes mir hier weiterhelfen könnt. Danke! sevseg.rar DCS-7Segements.rar
  24. Leider muss ich jetzt einen Doppelpost machen: Ich habe das Beispiel mit der LED wunderbar umsetzten können, danke nochmal! Mein Ziel war es aber 7 Segement Dispalys einzusetzen um bspw das UHF Preset anzuzeigen. Ich habe dazu zwei 7 Segement Displays verwendet und per Multiplexing an den Ardunino angeschlossen (nach diesem Tutorial). Mein Problem ist jetzt folgendes: Das erste Segement zeigt die Ziffer (z.B. 1 bei preset 19) nur ganz kurz an und verschwindet danach wieder. Die zweite Ziffer wird dauerhaft angezeigt. Das liegt soweit ich es verstehe an der Anschlussart Multipelxing, da sich die beiden Displays ja die Pins zur Ansteuerung der LEDs teilen und nur jeweils der Common Pin einzeln angebunden ist (hoffe das war verständlich, sonst im Tutorial zu sehen). Wenn jetzt das Preset gewechselt wird, bleibt nur der Common Pin des letztens Dispalys auf High so das er eine Zahl anzeigt. Damit beide Dispalys die Zahlen anzeigen müsste der Codeabschnitt für die Anzeige der Zahl regelmäßig ausgeführt werden. Da habe ich leider keine Idee wie ich das bewerkstellige... Bin ich mit meinem Gedankengang auf dem Holzweg? Lässt sich das so überhaupt Lösen, oder ist der Anschluss per Mulitplexing eine doofe idee? Vorteil für mich ist, dass Multiplexing vom Anschluss und Code bisher recht einfach war. Wäre super wenn ihr mir weiterhelfen könnt! Danke und schönes Wochenende, Marsy
×
×
  • Create New...