# Placing New Items

The resource includes a coordinate finder tool to help you place collectables.

## Enable the Tool

In `config/shared.lua`, make sure the raycast command is enabled:

```lua
debug = {
    raycastCommand = true,
},
```

***

## Using the Coordinate Finder

1. Run the command in-game:

   ```
   /col_coords
   ```
2. A red marker appears where you're looking
3. Walk around and aim at surfaces to see where items would be placed
4. Press **E** to copy the current coordinates to your clipboard
5. Paste the coordinates into your set configuration:

   ```lua
   items = {
       { coords = vec3(123.45, 678.90, 12.34) },
   },
   ```

***

## Tips

* The marker snaps to surfaces, so you can see exactly where the object will appear
* Use this to test placement before adding coordinates to your config
* Coordinates are copied into your clipboard as `vec3(x, y, z)` format, ready to paste


---

# Agent Instructions: 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://madcap.gitbook.io/docs/premium-resources/mad_collectables/placing-new-items.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.
