openmw/docs/source/reference/lua-scripting/index_aipackages.rst
2025-06-16 15:36:43 -07:00

25 lines
408 B
ReStructuredText

AI packages
============
.. include:: version.rst
.. toctree::
:hidden:
:glob:
ai/*
Starting an AI package
----------------------
There are two ways to start AI package:
.. code-block:: Lua
-- from local script add package to self
local AI = require('openmw.interfaces').AI
AI.startPackage(options)
-- via event to any actor
actor:sendEvent('StartAIPackage', options)