NPC:TargetOrder
Description
Cancels NPC:MoveOrder basically.
Only works on Citizens (npc_citizen) and is a part of the Half-Life 2 squad system.
The NPC must be in the player's squad for this to work.
Arguments
Example
A console command that once used cancels Move Orders and makes the NPCs return to the player.
concommand.Add( "targetnpcs", function( ply )
for id, npc in ipairs( ents.FindByClass( "npc_citizen" ) ) do
npc:TargetOrder( ply )
end
end )