#roaming trader npc

1 messages · Page 1 of 1 (latest)

waxen trench
#

so right now it only talks when you get close to it whats the best way to make it roam and stop roaming after it starts the interaction?

#

not roam actually more like go from waypoint to waypoint

quick pendant
#

I.e.
local isRoaming = true
roamfunction()

if isRoaming == true then

end

startInteraction()

isRoaming = false
… do interaction
end
endInteraction()

startRoaming = true

end

#

Not actual code but it should help you get an image of it

waxen trench
#

im really new but it does help a little