Disruption Log Parser for Warframe.
Analyze the log file and extract disruption mission info including conduit results, lap time per round, and mission score.
- Unlock Door: From beginning of the mission to door unlock.
- 1st round: From door unlock to end of the round.
- 2nd - last round: From end of previous round to end of round (including interval).
- Extraction: From end of last round to extraction. This block is omitted if you leave mission in the middle of round.
- Mission Score: Your mission score to be displayed on the leaderboard.
- Average Time: Average time of rounds. This doesn't include
Unlock Door
section,Extraction
section, and incomplete round. - Total Time: Entire time of the mission including all of phases.
Download an executable (.exe) from releases and launch it.
If you want to run this tool from command line, read below steps.
PowerShell (Windows):
iwr https://deno.land/x/install/install.ps1 -useb | iex
Chocolatey
(Windows):
choco install deno
Scoop
(Windows):
scoop install deno
deno run --allow-read --allow-env=LOCALAPPDATA --allow-net=api.github.com ./src/main.ts [path/to/EE.log]
Default to read %LOCALAPPDATA%\Warframe\EE.log
- Windows
deno compile --allow-read --allow-env=LOCALAPPDATA --allow-net=api.github.com --output "DisruptionLogParser.exe" ./src/main.ts [path/to/EE.log]
- Cross compile (from other systems to Windows)
deno compile --allow-read --allow-env=LOCALAPPDATA --allow-net=api.github.com --output "DisruptionLogParser" --target x86_64-pc-windows-msvc ./src/main.ts [path/to/EE.log]
Default to read %LOCALAPPDATA%\Warframe\EE.log
- This tool reads your
EE.log
file located in%LOCALAPPDATA%\Warframe\
and parses it. - This tool can only analyze the mission when you were the host.