Skip to content

Commit

Permalink
Merge pull request #98 from permaweb/twilson63/fix-bot-tut
Browse files Browse the repository at this point in the history
fix: bot tutorial
  • Loading branch information
twilson63 authored Feb 27, 2024
2 parents 05de6f2 + c846aee commit bee252d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tutorials/bots-and-games/ao-effect.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ This places you in the `Waiting` Lobby. A small fee is needed to confirm your sp
In order to confirm your spot you need some tokens. You can acquire them by sending the following message to the game:

```lua
Send({ Target = Game, Action = "RequestToken"})
Send({ Target = Game, Action = "RequestTokens"})
```

Once you receive the tokens, confirm your spot by paying the game's entry fee like this:

```lua
Send({ Target = Game, Action = "Transfer", Recipient = Game, Quantity = "1000000"})
Send({ Target = Game, Action = "Transfer", Recipient = Game, Quantity = "1000"})
```

Wait for a few seconds, and you'll see live updates in your terminal about player payments and statuses.
Expand Down

0 comments on commit bee252d

Please sign in to comment.