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

[8.40] i search function

T O M E K

New Member
Joined
May 12, 2008
Messages
12
Reaction score
0
screen
orlanqk9.jpg

NPC writes without saluting
plese Example npc
 
-- what does he mean --
Just NPC yells some text that will attract some people to trade or something. Just like guys on marketplaces in old times were shouting for example "COME ON BRAND NEW PANTS 50% DISCOUNT FOR JEWS!"..

It is possible to do with the newest NPC system, newer than Jiddo. I think I will check this out now :)
 
Just use the function onThink():
Code:
function onThink()
 
 if (os.clock() - talk_start) > 20 then
  		if focus > 0 then
  			selfSay('HERE YOU TEXT')
  		end
  			focus = 0
  	end
 	if focus ~= 0 then
 		if getDistanceToCreature(focus) > 5 then
 			selfSay('HERE YOU TEXT')
 			focus = 0
 		end
 	end
end
 
Back
Top