Jump to content

Hollander

Members
  • Posts

    33
  • Joined

  • Last visited

About Hollander

  • Birthday January 29

Recent Profile Visitors

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

  1. Thank you mate. You're great! How have you found out that?
  2. Hi. I'm trying to add FPS-117 ERW to the list of blue side cargo. Who knows the name of Unit in game database?
  3. I found a 100% solution. Loss of settings are minimal. First step: In the saved games/dcs.XXX/config/input/F-14/joystick delete - Saitek Pro Flight Combat Rudder Pedals.diff.lua Second step: In the saved games/dcs.XXX/config/input/F-14/joystick Open the file Throttle - HOTAS Warthog .....(your numbers)..........diff.lua Find and delete all block ["axisDiffs"] = { } Save. After that, the conflict of the axis register disappears. You will need to re-set the axes of pedals and throttle. But all buttons settings on the throttle will be saved. This solution has already helped several people who use a set of Saitek devices. I hope it will help you.
  4. Hi. I met a problem:
  5. Where can I download a Tacview file with full information?
  6. Where can I download a Tacview file with full information?
  7. Hello. I represent the Russian virtual squadron. And I would like to invite everyone to take part in a friendly PvP match on our server. Our server on Open Beta and supports SRS and LOTATC. Mission include works for fighters, attack aircraft and helicopters. Mission are variable and we can change any type of aircraft you need. Map - Caucasus. Duration - 2 hours. We look forward to the participation of 15 players on each side. Game start time is Saturday 20/03 18:00 zulu time. These is friendly flight. No ratings and no aggression. We solve any questions, share information and enjoy the game. If you are interested, please write me PM I can send copy of the mission. Best regards https://discord.gg/AHHrmhGAKV ENGLISH CHANNEL REGISTRATION
  8. Добрый день. Проходит набор желающих на программу подготовки RIO для полетов в звене F-14. Требования для участия: - Возраст 20+ - Наличие модуля F-14 - Наличие карт Персидского залива и Сирии - Базовые знания позиции RIO: start up, режимы радара... (по видео с интернета) В программу обучения входит: - Полный объем необходимых знаний по роли RIO - Методика ведения ДВБ и БВБ на Ф14 в одиночном вылете и в паре - Разработка и планирование вылетов Всем желающим прошу оставлять заявки в личных сообщениях. Всего наилучшего.
  9. https://discord.gg/W6a5Zk93
  10. Hello. I represent the Russian community of virtual pilots. And I would like to invite another community and squadrons to take part in a friendly PvP match on our server. Our server on Open Beta and supports SRS and LOTATC. We have several different missions. Missions include works for fighters, attack aircraft and helicopters. Missions are variable and we can change any type of aircraft you need. We look forward to the participation of 15-25 players on each side. Our games time is Saturday. These are friendly flights. No ratings and no aggression. We solve any questions, share information and enjoy the game. If you are interested, please write me in PM or in Discord Krest#0679 Best regards
  11. Hello everybody. I have a problem. I put the file in a folder "Hooks". But the script doesn't work. Doesn't work either in the editor or as a server host. The demo mission does not work either. Both helicopters are open. My bad. Solved.
  12. Hello everyone. I am creating an online mission on two sides. Where there is a check for the destruction of each unit of ground vehicle. At first I wrote a script through the event dead. But this event does not work stably online. Now I want to do it through the table and check the life. local blueUnits = mist.makeUnitTable({'[blue][vehicle]'}) for i = 1, #blueUnits do if Unit.getByName(blueUnits) and Unit.getByName(blueUnits):getLife() == 0 then trigger.action.setUserFlag('2500', true) end end Can someone correct my script?
  13. I am using trigger, boundary condition. First create a group with delayed activation. The group should activate on your spawn command : mist.respawnGroup('NameOfYourGroup', true) After that, you create an boundary condition trigger: Lua predicate condition: if Group.getByName('NameOfYourGroup') == nil then return true else return false end or condition: Object speed below 2 knots If one of the conditions, you run scripts on respawn group. As a result, you get that the group is activated at the beginning by the command of respawn, but if it is destroyed or the plane lands on the airfield and stops, then the group is reactivated again.
  14. Hello everybody. I'm doing an online mission where I must count the death of each vehicle. I am writing a script. Part of the script was helped by Sir Grimes. But the script does not work yet. local blueUnits = mist.makeUnitTable({'[blue][vehicle]'}) for i = 1, #blueUnits do if (Unit.getByName(blueUnits) and Unit.getByName(blueUnits):getLife()) > 0 or not Unit.getByName(blueUnits) then trigger.action.setUserFlag('2500', true) end end Need help please. Where I'm wrong?
×
×
  • Create New...