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

make npc shout things

Code:
local shouts = {"Come see my wares!", "Best offers in town!"}

function thinkCallback(cid)
	local rand = math.random(250)
	if shouts[rand] then
		selfSay(shouts[rand])
	end
	return true
end

npcHandler:setCallback(CALLBACK_ONTHINK, thinkCallback)
 
Are you using infinite recursion and the random generator only hitting 2 out of 250 possible values as "shout delay/interval"

??? That seems really inefficient
 
Back
Top