Getting started

Cover image

Welcome to audioware book !

Audioware is a native plugin to play custom audios in Cyberpunk 2077, without REDmod.

It's built with emphasis on getting you going fast, providing sensible defaults and seamless integration with the game while not compromising on performances.

Here's the simplest way to test it out in under 5min.

⬇️ Install

📄 Define audios

Create a folder e.g. MyMod for your mod, located in either depot:

  • under mods\MyMod
  • or r6\audioware\MyMod but not both !

Create a manifest e.g. audios.yml.

In its simplest form, here's how it looks like:

  YAML
version: 1.0.0
sfx:
  my_custom_audio: some.mp3 # accepts most common formats like .wav / .ogg / .mp3 / .flac

♬⋆.˚ Use in-game

  Redscript
GameInstance.GetAudioSystem(game).Play(n"my_custom_audio");

If you want to dive in directly, head over to How to use? for more.