> For the complete documentation index, see [llms.txt](https://docs.allout.game/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.allout.game/using-cloud-build/cloud-build-tips.md).

# Cloud Build Tips

#### Creating a fishing game

{% hint style="warning" %}
**Bad prompt**

```
Make Fishermon but better
```

{% endhint %}

{% hint style="success" %}
**Better prompt**

```
Create a simple fishing game with a giant island surrounded by water.

You can see fish swimming around in the water outside the island. 

Add an aimed fishing ability and if it lands on a fish, add it to my inventory 
with an epic animation.

Add a shop NPC in the center of the island that I can sell my fish to. 

Add a rod NPC next to them where I can buy a better rod. The better rods make
the fish I catch more rare. 

Add lots of sound effects and simple animations to make the game tactile. 
```

{% endhint %}

#### Adding a gameplay feature

{% hint style="warning" %}
**Bad prompt**

```
make combat better
```

{% endhint %}

{% hint style="success" %}
**Better prompt**

```
Add a sword ability with a 0.5s cooldown. It does 20 damage to nearby players. 

Add a dash ability with a 4 second cooldown. 
Play a short trail effect as they dash and a cool sound effect.

They are invicible while dashing
```

{% endhint %}

**Pick the right model for your needs.**

Low quality models are cheap and fast, but they struggle with full game builds. Use stronger reasoning models for scripting and structured changes. Use visually strong models for map building and layout ideas. Experiment to find what works best for your use case!&#x20;

High quality models are pretty good at most things!


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.allout.game/using-cloud-build/cloud-build-tips.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
