Class EntityAIClass

Class used to create new entity AI types.

Hierarchy (view full)

Implements

Constructors

Methods

  • Occurs when entity this instance is assigned to this AI type instance, if you override this method, be sure to assign entity to EntityAIClass.EntityAIPrototype.

    Parameters

    • entity: number

    Returns void

  • Changes own priority in parent's controller.

    Parameters

    • priority: number

    Returns void

  • Disables any AI by it's name in the controller.

    Parameters

    • name: string

      AI name to be disabled

    Returns void

  • Enables any AI by it's name in the controller.

    Parameters

    • name: string

      AI name to be enables

    • priority: number

      priority to be set to the enabled AI

    • extra: any

      some extra data passed to

    Returns void

  • Finishes AI execution and disables it in parent controller.

    Returns void

  • Gets any AI priority from the current controller by AI name.

    Parameters

    • name: string

      AI name

    Returns number

  • Resets execution timer so that AI is executed with no time limits.

    Returns void

  • Sets execution timer time in ticks. AI will be executed specified number of ticks.

    Parameters

    • timer: number

      execution time in ticks

    Returns void

  • Parameters

    • params: object

    Returns void

    AI type's default name.

  • Sets any AI priority by it's name in the controller.

    Parameters

    • name: string

      AI name to change priority

    • priority: number

      priority to be set to the AI

    Returns void

Properties

data: object

Object containing the state of the AI type.

entity?: number

Numeric unique entity idenifier that uses this AI type instance or null if it is the pattern.

isInstance: boolean

If set to true, it is an instance of AI type, else the pattern (pattern should not be modified directly, AI controller calls instantiate to create instances of AI type).

params: object

All the parameters of the AI instance.

parent?: CustomEntity

Instantiated custom entity that uses this AI type instance or null if it is the pattern.

Copyright © 2024 Nernar. Copyright © 2020 #mineprogramming. Built with ❤ and TypeDoc.