Garry's Mod Wiki

Revision Difference

ENTITY:StartTask#553161

<function name="StartTask" parent="ENTITY" type="hook"> <ishook>yes</ishook>⤶ <description>Called once on starting task. <note>This hook only exists for `ai` type [SENTs](Scripted_Entities).</note> </description> <realm>Server</realm> <args> <arg name="task" type="Task">The task to start, created by <page>ai_task.New</page>.</arg> </args> </function> <example> <description>How it is defined:</description> <code> function ENT:StartTask( task ) task:Start( self.Entity ) end </code> </example>