eventMacro orphans: различия между версиями

Материал из Руководство по OpenKore
Перейти к навигации Перейти к поиску
Новая страница: «; eventMacro_orphans [ terminate | reregister | reregister_safe | terminate_last_call ] : В этом параметре конфига определяется…»
 
Нет описания правки
 
Строка 1: Строка 1:
; eventMacro_orphans [ terminate | reregister | reregister_safe | terminate_last_call ]
; eventMacro_orphans [ terminate | reregister | reregister_safe | terminate_last_call ]


: В этом параметре конфига определяется поведение OpenKore с "одиночными" (или "осиротевшими") макросами, т.е. с теми макросами которые были удалены из очереди ИИ (AI queue).
: В этом параметре конфига определяется поведение OpenKore с "одиночными" (или "осиротевшими") макросами, т.е. с теми макросами которые были удалены из очереди ИИ (AI queue). Этот параметр не обязательный. Значение по умолчанию "terminate".


:* '''terminate''' - terminates the macro (equivalent to eventMacro stop)
:* '''terminate''' - terminates the macro (equivalent to eventMacro stop)

Текущая версия от 12:40, 2 июля 2019

eventMacro_orphans [ terminate | reregister | reregister_safe | terminate_last_call ]
В этом параметре конфига определяется поведение OpenKore с "одиночными" (или "осиротевшими") макросами, т.е. с теми макросами которые были удалены из очереди ИИ (AI queue). Этот параметр не обязательный. Значение по умолчанию "terminate".
  • terminate - terminates the macro (equivalent to eventMacro stop)
  • terminate_last_call - terminates only the last call of the queue, this means that if macro 'mac1' called 'mac2' which called 'mac3', who got orphaned, only 'mac3' gets terminated, and queue returns to 'mac2'.
  • reregister - re-registers to AI queue, overriding other entries. This means to force the continuation of the macro.
  • reregister_safe - re-registers to AI queue when AI gets idle. This means the macro will continue when all other tasks are done.