1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-07-27 15:44:11 +00:00
openmw/docs/source/reference/lua-scripting/index_aipackages.rst
2025-06-16 15:36:43 -07:00

24 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)