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
ID:266472
![]() Mar 17 2002, 2:49 pm (Edited on Mar 17 2002, 2:55 pm)
|
|
mob/verb/Say(T as text) The s_smiley works,but not the spam proctect,no errors,or warnings. PLEASE HELP ME! -Kappa the Imp |
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