Jump to content

GTFreeFlyer

Members
  • Posts

    454
  • Joined

  • Last visited

Everything posted by GTFreeFlyer

  1. Server has been down for a little while. It is off and on. If it's ever down when you want to try it out, shoot me a message. It's running today, and I'll try to be better about keeping it running during US Pacific awake hours. Cheers!
  2. After a long hiatus, the server is back! I will now be working from home for the next year+. so I'll try to keep it running as much as possible. Hop in and enjoy!
  3. It's back! I checked last night to make sure it was working with 2.7. Enjoy, and let me know if you experience any issues. Cheers!
  4. New Tacview replay from a flight today. It was quite fun flying with a bunch of good pilots and hitting our slots quickly. https://youtu.be/PE0la1VA1RM
  5. Happy TG and Black Friday. Earn 3x points today in the server!
  6. That must be it. Now that you mention it, I do see a one-liner about that in the manual that I missed. Thanks hornblower! Consider it fixed unless you hear any thing else from me.
  7. I like it. It works pretty well but still a little buggy. I can't get back to the ATO page after I leave it, and also can't figure out the voice commands for the AOCS, REF and NOTES tabs. I've read the manual and tried "show tasking order", "show notes", etc, but none of those work. VA is recognizing me perfectly. The log shows, "Unrecognized: 'show notes'", "Unrecognized: 'show tasking order'", etc. Any ideas? No issues with the AWACS, JTAC, ATC, Tanker and Flight tabs... they work great. Thanks.
  8. Hi, still having issues with this after trying all the suggestions. Can anyone share screenshots of their settings? I'm using the same PTT for SRS and ViaCom. If there is an AI on the frequency, I'm able to communicate with it just fine. If there is no AI on the freq. I hear the switch tone immediately when hitting the PTT and am able to talk to other humans just fine. The issue still exists where I have mixed AI and humans on same freq. I will hear the switch tone only after issuing a command to the AI. The desired behavior is to hit the PTT, immediately say "switch" then hear the tone and speak to a human without interacting with the AI. I can't get this working properly. Also, new issue that used to work for me but no longer does: When I say "options", the menu pops up as desired, but when I say "Take 5" or "Take 10", etc, no command is issued and I am not able to interact with the menu. Not sure why this suddenly stopped working. Thanks!
  9. I'm having issues with the "switch" command while also running SRS. For example, if human players are dialed into the same frequency as an airfield, how can I talk to the other humans? When I first hit the PTT, it listens for a command to the airfield, such as "Inbound", and after it recognizes it, it gives me a tone and then anything I say after that can be heard by the other humans. However, how can I talk directly to the humans on that channel without issuing a command to the AI airfield first? I thought it would be as simple as hitting the PTT, then saying "switch", but that does not work. TIA, -GT-
  10. Server is back up! I've had a long summer filled with lots of work travel which prevented me from keeping this server going. It is back and this weekend only earn 3x points and move up the ranks quicker! Moving forward, I'll have this up on the weekends only. The kids are home doing online schooling during this pandemic and require all the bandwidth during the week. Cheers!
  11. Can't find the Syria channel for bugs, so I'll post here... Just checked out Ramat David airport. There are some floating wooden crates inside the open hangars. I landed runway 09, taxied to the end and pulled off to the left. It was in those hangars there. Also, when pulling up to a runway and holding short, there is the runway sign that reads 09-27. This should mean that runway 09 end is on my left and 27 is on my right, but it was not the case. The sign should have read 27-09. I've noticed this is several airfields in DCS, not just in the Syria map. Minor, but it leads to a little confusion. Thanks.
  12. It was down last night. I just put it back up. Cheers.
  13. How do you ban a player if they are no longer in the server? I only have the option to ban them while they are connected. Is there a LUA file somewhere where I can add their name and/or UCID to a banned list?
  14. I have a new issue with SRS that I haven't had before. I'm getting "rapid clicking" of the mic switch. When I press and hold the mic switch, you hear the radio clicks rapidly firing off on all the radios. I've confirmed it isn't an issue with my actual HOTAS switch. Also, if I look at the in-game overlay, I see all channels rapidly flashing even when I'm not holding down any of the PTT's. My guess is that perhaps this happens when I have my dedicated server running on the same PC? I believe my DCS.openbeta and DCS.openbeta_server both have the hooks installed, and conflicting on same port? If so, how do I change the port for one of them? I don't have this issue all the time. Only sometimes and I can't quite nail down exactly how and when it occurs. The problem stays if I turn off all other apps such as VoiceAttack, etc. Any ideas? Much thanks in advance.
  15. Having problems getting my custom .obj to appear. I've followed the instructions on the website, placing it in the correct folder, and also creating the .xml in the proper folder. I have renamed "F-5" from the example to my custom name. All else remains the same. I have exported telemetry from my custom app and I can see the plane flying around, but it displays as the default "paper airplane looking thing". I can't get my .obj to display. It is 35MB, could that be why? Are the instructions on the website up-to-date? Thanks!
  16. New issue: I never had this before. When using live-view, I can only see the AI planes flying around. When a client connects to the server their aircraft does not show up in Tacview. No changes to the server settings (export is allowed, etc.). What happened and how do I fix it? The only difference is that it worked during the free trial period, then I let it expire, and now I have purchased an Advanced license and entered it in.
  17. I got the same message a few weeks ago and they actually got back to me in 3-4 days.
  18. Server is back up and running after the holiday weekend break. Cheers.
  19. For scripting purposes, I'd love to get an event handler for chaff or flare dispense.
  20. Why can't it be scripted? Try this... [font=Consolas]_myZone = 'town' --name of zone as defined in the mission editor[/font] [font=Consolas] local foundObjects = {} local sphere = trigger.misc.getZone(_myZone) local volS = { id = world.VolumeType.SPHERE, params = { point = sphere.point, radius = sphere.radius } } local ifFound = function(foundItem, val) foundItem:destroy()[/font] [font=Consolas] return true end [/font][font=Consolas] world.searchObjects(Object.Category.SCENERY, volS, ifFound)[/font] [font=Consolas] [/font] [font=Consolas] [/font]
  21. In my script, I'm using world.event.S_EVENT_KILL to detect when scenery objects are destroyed. As of now, I've tested on scenery objects and also on static objects. I use event.initiator:getPlayerName() to get the name of the player who killed the object. Everything works fine EXCEPT if the player dies before the object does. For instance, drop some bombs and then eject or fly straight into the ground before the object is dead and you get a script error: attempt to index field 'initiator' (a nil value) The player must continue to be alive at the time of the object's death. This is usually true, but there are times where it takes the burning building a few minutes to "die" and in that time you could get shot down or crash. If so, you get a pop-up and script error. Yes, I have set env.setErrorMessageBoxEnabled(false) to prevent this, but thought the dev team would like to know about this issue. Cheers.
  22. Are you willing to share how to? I don’t want deal with shipping back and forth. I’d rather do it myself and be flying tonight.
  23. Mine is dead. Who has a spare PCB they want to sell me? TM is saying they are taking 15 days to respond to emails due to Covid. I don’t understand why I can’t tell my boss the same thing :P Also, in regard to the repair service, it says a new PCB is not included. Does this means what I have is repairable? Or does it simply mean I need to pay for the board separately? If repairable, which component is bad? I’ve got some nice soldering equipment and the skills to go with it. Is there something on the board I can replace, or does the whole board have to be swapped out? I figured the microprocessor is bricked, but if it is a simple resistor or capacitor swap, I’m in for the repair. Any details? Cheers.
×
×
  • Create New...