Schedule: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (minoro) |
||
Line 1: | Line 1: | ||
A '''schedule''' is a list of [[task]]s the NPC is to perform, a schedule could be to go to a specific location, such as <code>SCHED_FORCED_GO</code> or a schedule to create an attack plan <code>SCHED_PLAN_ATTACK</code>. The NPC's schedule selection is governed by its current [[state]] and [[condition]]s. | A '''schedule''' is a list of [[task]]s the NPC is to perform, a schedule could be to go to a specific location, such as <code>SCHED_FORCED_GO</code> or a schedule to create an attack plan <code>SCHED_PLAN_ATTACK</code>. The NPC's schedule selection is governed by its current [[state]] and [[condition]]s. | ||
==See | |||
== See also == | |||
* [[Creating a schedule]] | * [[Creating a schedule]] | ||
* [[Shared schedules]] | * [[Shared schedules]] | ||
[[Category:AI Programming]] |
Revision as of 06:04, 20 November 2007
A schedule is a list of tasks the NPC is to perform, a schedule could be to go to a specific location, such as SCHED_FORCED_GO
or a schedule to create an attack plan SCHED_PLAN_ATTACK
. The NPC's schedule selection is governed by its current state and conditions.