Skip to content

Instantly share code, notes, and snippets.

@Luzefiru
Created April 19, 2025 06:24
Show Gist options
  • Save Luzefiru/b7a59e992a4db9c44cacd9178c5bb673 to your computer and use it in GitHub Desktop.
Save Luzefiru/b7a59e992a4db9c44cacd9178c5bb673 to your computer and use it in GitHub Desktop.
Get Wuthering Waves Convene History URL on macOS

Wuthering Waves Convene History URL Script (macOS)

This script does not edit your files, it simply reads them and copies a substring to your clipboard for visualization purposes.

How to Use

  1. Launch Wuthering Waves and open your in-game Convene History.
  2. Open your Terminal.
  3. Run the script and your Convene History URL is now copied to your clipboard.

Visualizing your History in wuwatracker.com

Tip

Use a website like wuwatracker.com to import your Convene History.

Credits

  • allthetime for finding the Wuthering Waves Client.log path in macOS.
url=$(grep -oE 'https://aki-gm-resources(-oversea)?\.aki-game\.(net|com)[^"]*' ~/Library/Containers/com.kurogame.wutheringwaves.global/Data/Library/Logs/Client/Client.log | tail -n 1) && \
[ -n "$url" ] && echo "$url" | pbcopy && echo "Link copied to clipboard, paste it in wuwatracker.com and click the Import History button." || echo "Cannot find the convene history URL in your Client.log! Please try another import method."
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment