> For the complete documentation index, see [llms.txt](https://wiki.redmodding.org/cyberpunk-2077-modding/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.redmodding.org/cyberpunk-2077-modding/modding-guides/quest/creating-custom-scenes.md).

# Creating custom scenes

## Summary

{% hint style="info" %}
**This page is a stub!**\
If you would like to [sign up](#user-content-fn-1)[^1] and edit it, we'd love your contribution!

* The [Editing guidelines](/cyberpunk-2077-modding/the-wiki/editing-guidelines.md) list the most frequent pitfalls for editors
* If you need help on navigating the wiki's UI, check out [The Wiki](/cyberpunk-2077-modding/the-wiki.md) -> [The Wiki](/cyberpunk-2077-modding/the-wiki.md#how-to-edit)
  {% endhint %}

One important thing from @mrbill61 on Discord: if you're building the scene from scratch, you must add `performerDebugSymbols` to the `debugSymbols` array. The rest of the elements in this array can remain empty. For actors, the debug symbol is calculated as `actorID * 256 + 1`, while for props, it is calculated as `propID * 256 + 2`. In most cases, the player actor has the highest `actorID`.

In Sections, actors are referenced by their `performerID`, but in `screenplayStore -> lines`, dialogues are linked to them using their `actorID`. Props, on the other hand, are typically referenced by `propID`, although they can be called by `performerID` for lookat events.

<figure><img src="/files/R9y0n8MUvaqjGoGCV09p" alt=""><figcaption></figcaption></figure>

[^1]: <https://app.gitbook.com/invite/-MP5ijqI11FeeX7c8-N8/IZreyNnVlImKaeMtoJLY>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.redmodding.org/cyberpunk-2077-modding/modding-guides/quest/creating-custom-scenes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
