ID:262108
 
"<small><b>\<[src]\></b> [Link_Filters(T)][Zi_Filter(T)]" )



It returns the text twice,instead of how I want it once.Any help on this?
That isn't enough code to solve your problem.
In response to Garthor (#1)
mob/verb
Say(T as text)
if(!T||Mute) return
if(filter(T,tags) == TRUE) //if the msg has html tags in it
src.html() //call the proc
return //stop it from sending
if(usr.AFK == 1)
usr << "<small><b><font color=#FF8C00>You must turn AFK off before talking.</font></b></small>"
return
else
usr.CRoom.who << s_smileys( "<small><b>\<[src]\></b> [Link_Filters(T)][Zi_Filter(T)]" )
src.Zi_Spam()


That is my whole say verb.Need anything else?
Dalga Productions wrote:
> "<small><b>\<[src]\></b> [Link_Filters(T)][Zi_Filter(T)]" )
>



It returns the text twice,instead of how I want it once.Any help on this?


Its probably since it is going through 2 filters.
In response to ElderKain (#3)
I know that but How do I make it go through both filters but only return one text.
In response to Dalga Productions (#4)
You need to take the result from one filter and pass that to the other filter.

Link_Filters(Zi_Filter(T))
In response to OneFishDown (#5)
Thanks OFD.