Creating an activity

From Valve Developer Community
Revision as of 12:58, 8 June 2006 by Ts2do (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The first step to creating an activity for your NPC is to create a name for it and add it to the enum. Here's an example name for a activity: ACT_COMBINE_BUGBAIT.

Once the activity is added to the enum, you must use the DECLARE_ACTIVITY macro in the AI_BEGIN_CUSTOM_NPC section.

Here's an example of the DECLARE_ACTIVITY code:

	DECLARE_ACTIVITY( ACT_COMBINE_BUGBAIT )
Note.pngNote:It is not necessary to declare shared activities.