• 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!

NPC Dont talk

Try
Code:
function thinkCallback(cid)
	local i, p = t[os.date('%A')], getCreaturePosition(getNpcCid())
	if p.x > i.x+2 or p.x < i.x-2 or p.y > i.y+2 or p.y < i.y-2 then
		doCreateNpc("Rashid", i)
		doRemoveCreature(getNpcCid())
	end[B][COLOR="red"]
	return true[/COLOR][/B]
end
 
Back
Top