View Single Post
  #1  
Old 11-26-2024, 01:03 PM
t0neg0d
Sarnak
 
Join Date: Oct 2014
Posts: 31
Default npc:SetFollowID question/help

npc:SetFollowID(int id); <<< This makes an npc follow you, I assume? Can't seem to get it to work. I'm likely missing something important.

Code:
function event_say(e)
	if e.message:findi("hail") then
		-- stuff
	elseif e.message:findi("follow") then
		-- The important bit
		e.self:SetFollowID(e.other:GetID());
	end
end
Reply With Quote