Jump to content

BuzyBee

ED Closed Beta Testers Team
  • Posts

    337
  • Joined

  • Last visited

Everything posted by BuzyBee

  1. Try setting ["tacviewFlightDataRecordingEnabled"] = false and ["tacviewRealTimeTelemetryEnabled"] = true ["tacviewRealTimeTelemetryPassword"] = "" There will be no recording on the server side, but clients can still record on their own side without 10-minute delay.
  2. Hi, with the 1.8.5 and above, the options have been completely overhauled, this is the correct syntax now: ["Tacview"] = { ["tacviewAutoDiscardFlights"] = 10, ["tacviewBookmarkShortcut"] = 0, ["tacviewDebugMode"] = 0, ["tacviewFlightDataRecordingEnabled"] = true, ["tacviewModuleEnabled"] = true, ["tacviewMultiplayerFlightsAsClient"] = 2, ["tacviewMultiplayerFlightsAsHost"] = 2, ["tacviewRealTimeTelemetryEnabled"] = true, ["tacviewRealTimeTelemetryPassword"] = "", ["tacviewRealTimeTelemetryPort"] = "42674", ["tacviewRemoteControlEnabled"] = false, ["tacviewRemoteControlPassword"] = "", ["tacviewRemoteControlPort"] = "42675", ["tacviewSinglePlayerFlights"] = 2, ["tacviewTerrainExport"] = 0, }, See the wiki page for explanations of how to set each option for a dedicated server: https://tacview.fandom.com/wiki/User_Guide_–_DCS_World#Configuration And how to set the delay option on a dedicated server: https://tacview.fandom.com/wiki/User_Guide_–_DCS_World#Real-Time_Telemetry_.26_the_10-minute_.22anti-cheat.22_delay
  3. Hi, You can export flight logs as CSV or XML by going to File -> Export Flight Log. I attached a couple of screenshots to show how to do this. Once you have your CSV or XML file you can use it to generate your own scorecards in whatever manner you prefer. To use PHPTacview you need to host a website which supports PHP. I just tried it out with the latest version of the flight logs and it doesn't seem to be working. I will try to fix it.
  4. Hi, Use the mouse wheel to scroll in and out. Right click is for adding objects. Left click should be moving the map. Play around with External View (F6), Satellite View (F7),and Free Camera (F8) options to find the one you like. Make sure the 3D view is in focus before using any keyboard commands - click in the 3D view to give it focus.
  5. Hi, Any IP address that the host enters as Host Address is ignored. The client needs to put the public IP address of the host. The host can find their public IP address to the left of the Host button and needs to let the client know to put that IP address.
  6. Most of the time this is a crash in the Intel graphics driver. If you send the crash dump file (in the location mentioned in the error message) I can confirm.
  7. Yes currently it's either 10 minute delay or no delay. This was done to simplify the UI. We are hoping in a future update to provide full ACMI files available 10 minutes after exiting the server (no 10 minutes missing from the end).
  8. This is available in Tacview 1.8.6 beta 7: https://tacview.net/download/beta as an option in the Display Selected Objects Vectors menu (one of the buttons along the bottom of the playback control bar)
  9. Hi, We will add a new menu to the Display Selected Objects Direction button.
  10. For the best results you should try to maintain speed and altitude during the turn, but the report is forgiving since it is in blocks of 3000 ft altitude and 0.05 mach. Even if you don't maintain speed an altitude you should get a good idea after a few flights.
  11. First activate the add-on by going to Add-Ons -> Enable Add-Ons -> Turn Rate Report Then go to Add-Ons -> Turn Rate to select whether you want to see sustained, instantaneous or both. Then load an ACMI file, make sure the object you're interested is selected from the drop-down in the top left, and a table of values should appear.
  12. Hi, In your C:\Users\Jingwe\Saved Games\DCS\Scripts\Export.lua file do you see the following line: local Tacviewlfs=require('lfs');dofile(Tacviewlfs.writedir()..'Scripts/TacviewGameExport.lua') if it's not there can you please try adding it. If you have a product key, I recommend updating to the latest beta, where we made improvements that have hopefully fixed this bug: https://tacview.net/download/beta/
  13. Hi, In Tacview 1.8.5 and later, in order to allow no delay on a server, the server has to have Tacview installed on it with real-time telemetry enabled with no password. That's the equivalent of the following in the options.lua: ["tacviewRealTimeTelemetryEnabled"] = true, ["tacviewRealTimeTelemetryPassword"] = "", If this doesn't help please share your log of the server
  14. Sorry, it's just that according to my interpretation of the server log you provided, the files are not in the right place. Thank for your patience. The missing piece of code you are thinking of is as follows: In the C:\Users\Sorta\Saved Games\DCS.openbeta_server\Scripts\Export.lua file, make sure the Tacview line is in there: local Tacviewlfs=require('lfs');dofile(Tacviewlfs.writedir()..'Scripts/TacviewGameExport.lua') Please check to see if these files\folders exist: C:\Users\Sorta\Saved Games\DCS.openbeta_server\Scripts\TacviewGameExport.lua C:\Users\Sorta\Saved Games\DCS.openbeta_server\Scripts\Hooks\TacviewGameGUI.lua C:\Users\Sorta\Saved Games\DCS.openbeta_server\Mods\tech\Tacview\ (non-empty) We had to put the LSO add-on on the back burner for now. We will definitely finish it in an upcoming release but I am not sure when.
  15. By looking closer at your logs I see that the server and the client are two separate computers. So make sure you are on the computer running the DCS server, logged in as the user Sorta, when you either re-run the installer or copy the files over. By the way, you do not need a license to install Tacview on the server.
  16. Make sure you are logged into Windows as "Sorta" and not as some other user on the same computer. I see another user "stron" in the client file. I don't know if that's two users on the same computer. It is the user "Sorta" who does not have Tacview installed.
  17. Hi, Looks like Tacview is not installed on the host. This would explain why you are getting the 10-minute delay no matter what you do - the delay applies on all servers where Tacview is not installed. To install it, re-run the Tacview installer while logged in as the user "Sorta". Alternatively, copy the contents of C:\Program Files (x86)\Tacview\DCS\ (Mods and Scripts folder) in your C:\Users\Sorta\Saved Games\DCS.openbeta_server\ folder. If you have other add-ons using the C:\Users\Sorta\Saved Games\DCS.openbeta_server\Scripts\Export.lua file, be careful not to overwrite it - just make sure the Tacview line is in there: local Tacviewlfs=require('lfs');dofile(Tacviewlfs.writedir()..'Scripts/TacviewGameExport.lua')
  18. Hi, For a dedicated server, if there are already Tacview options in the options.lua and they need to be changed to different options, as in the case of anyone updating their dedicated server from Tacview 1.8.4 to Tacview 1.8.5, the installer will not make the update. You need to update them manually or delete the Tacview entry entirely and re-run the installer. I plan to update the wiki entry on dedicated servers shortly. tacviewBookmarkShortcut will have no effect on a dedicated server and neither will tacviewRemoteControlEnabled. Actually, tacviewRemoteControlEnabled could possible be used on a dedicated server to trigger flags but I have not tried it: https://tacview.fandom.com/wiki/Remote_Control
  19. Hi, IAS comes from the cockpit so it will only be available for the piloted aircraft and then only if that value is available for that aircraft. If you are piloting the JF-17 or Hornet, check if it's available by looking at the Numeric Properties in the Raw Telemetry window. Here is a screenshot showing that it's available for the F-16 as you know. Or share your .acmi file with me and I will check for you. EDIT: I just checked myself and IAS is available for JF-17 and Hornet but, as always, only if it is the piloted aircraft.
  20. Thanks for sharing your log. Tacview does not seem to be installed on the server. In that case a 10-minute delay is the default. To install Tacview on the server, re-run the installer while you are logged in mpens, OR copy the contents C:\Program Files (x86)\Tacview\DCS\ (Mods and Scripts folder) into your %USERPROFILE%\Saved Games\DCS.openbeta_server\ folder. If you have other add-ons using the %USERPROFILE%\Saved Games\DCS.openbeta_server\Scripts\Export.lua file, make sure you do not overwrite that file but just ensure that the following line appears in the file: local Tacviewlfs=require('lfs');dofile(Tacviewlfs.writedir()..'Scripts/TacviewGameExport.lua'
  21. Can you please share the dcs log of the server?
  22. It is a known bug, which we have not been able to reproduce, that sometimes the first client to join the server does not get their own file. Other users have reported that as a workaround, they join their own server after launching it, then disconnect. Then all subsequent clients are recorded. We will take another careful look at this to see if we can't find a solution. We are not sure if this is a DCS bug or a Tacview bug. EDIT: Thank you for the log, it is very interesting because it clearly shows Viper joining the server but no ACMI file being generated. This will help our investigation.
  23. I just thought of something else - please make sure Tacview is installed on the host. If it's not, there will be a 10-minute delay regardless. There should be a Tacview folder at Saved Games\DCS.openbeta_server\Mods\tech\ and Tacview files at Saved Games\DCS.openbeta_server\Scripts\ and Saved Games\DCS.openbeta_server\Scripts\Hooks\. If they are not there try running the installer again or manually copy the contents of C:\Program Files (x86)\Tacview\DCS\ (Mods and Scripts folder) to Saved Games\DCS.openbeta_server\ . If you have other add-ons using the Saved Games\DCS.openbeta_server\Scripts\Export.lua file, be careful not to overwrite it - just make sure the Tacview line is in there: local Tacviewlfs=require('lfs');dofile(Tacviewlfs.writedir()..'Scripts/TacviewGameExport.lua') That's odd. Can you please share your dcs.log of the server?
  24. Good idea - it is in the Registry Key Computer\HKEY_CURRENT_USER\SOFTWARE\Raia Software Inc. - look for TacviewExportPath
  25. Set ["tacviewMultiplayerFlightsAsHost"] = 3, that's "Record one flight per client":
×
×
  • Create New...