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

# Are hotkeys enabled

> Gibt zurück, ob die Hotkeys aktuell aktiviert oder deaktiviert sind.

Gibt zurück, ob die Hotkeys aktuell aktiviert oder deaktiviert sind.

<CodeGroup>
  ```lua Export theme={null}
  exports['jaksam_inventory']:areHotkeysEnabled()
  ```

  ```lua Example theme={null}
  -- Prüfen, ob Hotkeys aktiviert sind
  local enabled = exports['jaksam_inventory']:areHotkeysEnabled()

  if enabled then
      print('Hotkeys are enabled')
  else
      print('Hotkeys are disabled')
  end

  -- Hotkeys umschalten
  local currentState = exports['jaksam_inventory']:areHotkeysEnabled()
  exports['jaksam_inventory']:setHotkeysEnabled(not currentState)
  ```
</CodeGroup>

### Parameter

Keine.

### Rückgabewert

| Name      | Datentyp | Beschreibung                                                |
| --------- | -------- | ----------------------------------------------------------- |
| `enabled` | boolean  | True, falls Hotkeys aktiviert sind, false falls deaktiviert |


## Related topics

- [Client](/de/jaksam-inventory/functions/client/index.md)
- [Set hotkeys enabled](/de/jaksam-inventory/functions/client/set-hotkeys-enabled.md)
- [Panik-Knopf manuell starten](/de/trackers-creator/client/manually-start-panic-button.md)
- [Set inventory disabled](/de/jaksam-inventory/functions/client/set-inventory-disabled.md)
