• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[Bug] In Talk

president vankk

Web Developer & AuraOT Owner
Joined
Jul 10, 2009
Messages
5,719
Solutions
9
Reaction score
339
Hello i have one big problem when I speak "/" it appears that

imagem_wanees.bmp
 
i donno if i got you right but if you have a problem because your talkaction appear return true for the function onSay
 
If the function ends with "return true end" the text won't show up, but if you remove "return true" and leave only "end" then it will show up.

Example:

Text won't show up:

Code:
function onSay(cid, words, param)
	[B]return true[/B]
end

Text will show up:
Code:
function onSay(cid, words, param)
end
 
Back
Top