> ## 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.

# getMP

> Obtenir les Points de Mouvement actuels du personnage.

Obtenir les Points de Mouvement actuels du personnage.

#### 🎮 Méthode

```lua theme={null}
fightCharacter:getMP()
```

#### 💎 Valeur de retour

| Type  | Description                  |
| ----- | ---------------------------- |
| `int` | Points de Mouvement actuels. |

#### 💡 Exemple

```lua theme={null}
local path = fightAction:getShortestPath(myCell, enemyCell, false)
if #path <= fightCharacter:getMP() then
    fightAction:moveTowardCell(enemyCell)
end
```
