> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dotouch-emu.com/llms.txt
> Use this file to discover all available pages before exploring further.

# print

> Afficher un message dans le chat AnkaBot en texte vert.

Afficher un message dans le chat AnkaBot en texte vert.

#### 🎮 Méthode

```lua theme={null}
fightDebug:print(message)
```

#### 📝 Arguments

| Nom       | Type     | Description                       |
| --------- | -------- | --------------------------------- |
| `message` | `string` | Texte à afficher dans la console. |

#### 💎 Valeur de retour

| Type   | Description |
| ------ | ----------- |
| `void` | —           |

#### 💡 Exemple

```lua theme={null}
fightDebug:print("Tour " .. fightAction:getCurrentTurn()
    .. " | PA=" .. fightCharacter:getAP()
    .. " PM=" .. fightCharacter:getMP()
    .. " PV=" .. fightCharacter:getLifePointsP() .. "%")
```
