ID:266472
 
mob/verb/Say(T as text)
world <<"[usr]: [spamprotect(T) && [s_smileys(T)]"


The s_smiley works,but not the spam proctect,no errors,or warnings.

PLEASE HELP ME!

-Kappa the Imp
Try something like this:

Make a new proc:

mob/proc/parse_message(var/T as text)
var/T1 = spamprotect(T)
var/T2 = s_smileys(T1)
return T2

Then just use parse_message in your say verb.

~X
In response to Xooxer
THANKS!!!!!!
In response to Kappa the Imp
Pop Quiz!

Do you know why your first method failed and this code succeded?

~X (Understanding your mistakes is the first step towards eliminating them.)