• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved npc standing back/with his back to player with walkinterval="0"

Womos

Member
Joined
Dec 20, 2015
Messages
45
Reaction score
5
I have problem like in title that npc standing back/with his back to player with walkinterval="0"
only when I say hi then he turns
can I change npc position to looking south north west east?
 
walkinterval="0" = paralyzed..
walkinterval="1000" = take a step every 1 second.
walkinterval="3000" = take a step every 3 seconds.
walkinterval="9000" = take a step every 9 seconds.
 
Thanks but i didn't mean that
He is paralyzed like I want walkinterval="0" but is directed to the north with his back to player and I need his face directed normal on the south
 
Ok solved
Just need to add change in script this:
function onThink() npcHandler:eek:nThink() end
to this:
function onThink() if #npcHandler.focuses == 0 then selfTurn(SOUTH) end npcHandler:eek:nThink() end
 
Back
Top