SetNPCFollowPlayer: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 13: Line 13:


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua">
AddCommand("follow", function(player)
  SetNPCFollowPlayer(npc, player)
end)
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
{{Template:NPCFunctions}}
{{Template:NPCFunctions}}

Latest revision as of 14:26, 26 June 2021

SetNPCFollowPlayer

Type: Function
Context: Server
Introduced: v1.0

Description

Set a NPC to follow the specified player.

Syntax

SetNPCFollowPlayer(npc, player [, speed])

Parameters

  • npc
    The NPC identifier.
  • player
    The player identifier.
  • speed (optional)
    The speed.

Return Value

  • This function returns nothing.

Example

AddCommand("follow", function(player)
  SetNPCFollowPlayer(npc, player)
end)

See also